From ceabc4ed7fd3f128654898490296663137025e2c Mon Sep 17 00:00:00 2001 From: Omar Valdez Date: Fri, 26 Jul 2024 22:01:31 -0700 Subject: [PATCH] feat(grammar): Expose wildcard imports as named nodes Parse "." and "*" for wildcard imports as separate nodes, allowing them to be more precisely highlighted. Create a new named node `wildcard_import`. --- grammar.js | 13 +- src/grammar.json | 48 +- src/node-types.json | 12 +- src/parser.c | 912202 ++++++++++++++++---------------- src/tree_sitter/array.h | 9 +- src/tree_sitter/parser.h | 51 +- test/corpus/source-files.txt | 6 + 7 files changed, 454568 insertions(+), 457773 deletions(-) diff --git a/grammar.js b/grammar.js index 541f035..5b1cbae 100644 --- a/grammar.js +++ b/grammar.js @@ -167,11 +167,13 @@ module.exports = grammar({ import_header: $ => seq( "import", - $.identifier, - optional(choice(seq(".*"), $.import_alias)), + alias($._import_identifier, $.identifier), + optional(choice(seq(".", $.wildcard_import), $.import_alias)), $._semi ), + wildcard_import: _ => token.immediate("*"), + import_alias: $ => seq("as", alias($.simple_identifier, $.type_identifier)), top_level_object: $ => seq($._declaration, optional($._semi)), @@ -1099,6 +1101,13 @@ module.exports = grammar({ identifier: $ => sep1($.simple_identifier, "."), + // Adapted from tree-sitter-java, helps to avoid a conflic with + // wildcard_import node while being compatible with identifier + _import_identifier: $ => choice( + $.simple_identifier, + seq($._import_identifier, ".", $.simple_identifier), + ), + // ==================== // Lexical grammar // ==================== diff --git a/src/grammar.json b/src/grammar.json index 78bdb17..4812360 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -165,8 +165,13 @@ "value": "import" }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_import_identifier" + }, + "named": true, + "value": "identifier" }, { "type": "CHOICE", @@ -179,7 +184,11 @@ "members": [ { "type": "STRING", - "value": ".*" + "value": "." + }, + { + "type": "SYMBOL", + "name": "wildcard_import" } ] }, @@ -200,6 +209,13 @@ } ] }, + "wildcard_import": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "*" + } + }, "import_alias": { "type": "SEQ", "members": [ @@ -5463,6 +5479,32 @@ } ] }, + "_import_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_import_identifier" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "simple_identifier" + } + ] + } + ] + }, "line_comment": { "type": "TOKEN", "content": { diff --git a/src/node-types.json b/src/node-types.json index 8daf281..589fd2d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4230,6 +4230,10 @@ { "type": "import_alias", "named": true + }, + { + "type": "wildcard_import", + "named": true } ] } @@ -9164,10 +9168,6 @@ "type": ".", "named": false }, - { - "type": ".*", - "named": false - }, { "type": "..", "named": false @@ -9592,6 +9592,10 @@ "type": "while", "named": false }, + { + "type": "wildcard_import", + "named": true + }, { "type": "{", "named": false diff --git a/src/parser.c b/src/parser.c index 22adb45..83823e8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 10154 +#define STATE_COUNT 10159 #define LARGE_STATE_COUNT 4533 -#define SYMBOL_COUNT 355 +#define SYMBOL_COUNT 356 #define ALIAS_COUNT 3 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 9 +#define PRODUCTION_ID_COUNT 10 enum ts_symbol_identifiers { sym__alpha_identifier = 1, @@ -34,30 +34,30 @@ enum ts_symbol_identifiers { anon_sym_RBRACK = 8, anon_sym_package = 9, anon_sym_import = 10, - anon_sym_DOT_STAR = 11, - anon_sym_as = 12, - anon_sym_typealias = 13, - anon_sym_EQ = 14, - anon_sym_class = 15, - 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_DOT = 11, + sym_wildcard_import = 12, + anon_sym_as = 13, + anon_sym_typealias = 14, + anon_sym_EQ = 15, + anon_sym_class = 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_fun = 34, anon_sym_SEMI = 35, anon_sym_get = 36, anon_sym_set = 37, @@ -333,54 +333,55 @@ enum ts_symbol_identifiers { sym__unescaped_annotation = 307, sym_simple_identifier = 308, sym_identifier = 309, - sym__return_at = 310, - sym__continue_at = 311, - sym__break_at = 312, - sym__this_at = 313, - sym__super_at = 314, - sym_unsigned_literal = 315, - sym_long_literal = 316, - sym_boolean_literal = 317, - sym_character_literal = 318, - sym_character_escape_seq = 319, - sym__lexical_identifier = 320, - sym__uni_character_literal = 321, - aux_sym_source_file_repeat1 = 322, - aux_sym_source_file_repeat2 = 323, - aux_sym_source_file_repeat3 = 324, - aux_sym_file_annotation_repeat1 = 325, - aux_sym_import_list_repeat1 = 326, - aux_sym__class_parameters_repeat1 = 327, - aux_sym__delegation_specifiers_repeat1 = 328, - aux_sym__annotated_delegation_specifier_repeat1 = 329, - aux_sym_type_parameters_repeat1 = 330, - aux_sym_type_constraints_repeat1 = 331, - aux_sym_function_value_parameters_repeat1 = 332, - aux_sym__enum_entries_repeat1 = 333, - aux_sym_nullable_type_repeat1 = 334, - aux_sym_user_type_repeat1 = 335, - aux_sym_type_projection_modifiers_repeat1 = 336, - aux_sym_function_type_parameters_repeat1 = 337, - aux_sym_statements_repeat1 = 338, - aux_sym__statement_repeat1 = 339, - aux_sym_indexing_suffix_repeat1 = 340, - aux_sym_type_arguments_repeat1 = 341, - aux_sym_value_arguments_repeat1 = 342, - aux_sym_string_literal_repeat1 = 343, - aux_sym_multi_variable_declaration_repeat1 = 344, - aux_sym_lambda_parameters_repeat1 = 345, - aux_sym_when_expression_repeat1 = 346, - aux_sym_when_entry_repeat1 = 347, - aux_sym_try_expression_repeat1 = 348, - aux_sym__postfix_unary_expression_repeat1 = 349, - aux_sym_modifiers_repeat1 = 350, - aux_sym_parameter_modifiers_repeat1 = 351, - aux_sym_type_modifiers_repeat1 = 352, - aux_sym_type_parameter_modifiers_repeat1 = 353, - aux_sym_identifier_repeat1 = 354, - alias_sym_interpolated_expression = 355, - alias_sym_interpolated_identifier = 356, - alias_sym_type_identifier = 357, + sym__import_identifier = 310, + sym__return_at = 311, + sym__continue_at = 312, + sym__break_at = 313, + sym__this_at = 314, + sym__super_at = 315, + sym_unsigned_literal = 316, + sym_long_literal = 317, + sym_boolean_literal = 318, + sym_character_literal = 319, + sym_character_escape_seq = 320, + sym__lexical_identifier = 321, + sym__uni_character_literal = 322, + aux_sym_source_file_repeat1 = 323, + aux_sym_source_file_repeat2 = 324, + aux_sym_source_file_repeat3 = 325, + aux_sym_file_annotation_repeat1 = 326, + aux_sym_import_list_repeat1 = 327, + aux_sym__class_parameters_repeat1 = 328, + aux_sym__delegation_specifiers_repeat1 = 329, + aux_sym__annotated_delegation_specifier_repeat1 = 330, + aux_sym_type_parameters_repeat1 = 331, + aux_sym_type_constraints_repeat1 = 332, + aux_sym_function_value_parameters_repeat1 = 333, + aux_sym__enum_entries_repeat1 = 334, + aux_sym_nullable_type_repeat1 = 335, + aux_sym_user_type_repeat1 = 336, + aux_sym_type_projection_modifiers_repeat1 = 337, + aux_sym_function_type_parameters_repeat1 = 338, + aux_sym_statements_repeat1 = 339, + aux_sym__statement_repeat1 = 340, + aux_sym_indexing_suffix_repeat1 = 341, + aux_sym_type_arguments_repeat1 = 342, + aux_sym_value_arguments_repeat1 = 343, + aux_sym_string_literal_repeat1 = 344, + aux_sym_multi_variable_declaration_repeat1 = 345, + aux_sym_lambda_parameters_repeat1 = 346, + aux_sym_when_expression_repeat1 = 347, + aux_sym_when_entry_repeat1 = 348, + aux_sym_try_expression_repeat1 = 349, + aux_sym__postfix_unary_expression_repeat1 = 350, + aux_sym_modifiers_repeat1 = 351, + aux_sym_parameter_modifiers_repeat1 = 352, + aux_sym_type_modifiers_repeat1 = 353, + aux_sym_type_parameter_modifiers_repeat1 = 354, + aux_sym_identifier_repeat1 = 355, + alias_sym_interpolated_expression = 356, + alias_sym_interpolated_identifier = 357, + alias_sym_type_identifier = 358, }; static const char * const ts_symbol_names[] = { @@ -395,7 +396,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACK] = "]", [anon_sym_package] = "package", [anon_sym_import] = "import", - [anon_sym_DOT_STAR] = ".*", + [anon_sym_DOT] = ".", + [sym_wildcard_import] = "wildcard_import", [anon_sym_as] = "as", [anon_sym_typealias] = "typealias", [anon_sym_EQ] = "=", @@ -418,7 +420,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_companion] = "companion", [anon_sym_object] = "object", [anon_sym_fun] = "fun", - [anon_sym_DOT] = ".", [anon_sym_SEMI] = ";", [anon_sym_get] = "get", [anon_sym_set] = "set", @@ -694,6 +695,7 @@ static const char * const ts_symbol_names[] = { [sym__unescaped_annotation] = "_unescaped_annotation", [sym_simple_identifier] = "simple_identifier", [sym_identifier] = "identifier", + [sym__import_identifier] = "_import_identifier", [sym__return_at] = "_return_at", [sym__continue_at] = "_continue_at", [sym__break_at] = "_break_at", @@ -756,7 +758,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_package] = anon_sym_package, [anon_sym_import] = anon_sym_import, - [anon_sym_DOT_STAR] = anon_sym_DOT_STAR, + [anon_sym_DOT] = anon_sym_DOT, + [sym_wildcard_import] = sym_wildcard_import, [anon_sym_as] = anon_sym_as, [anon_sym_typealias] = anon_sym_typealias, [anon_sym_EQ] = anon_sym_EQ, @@ -779,7 +782,6 @@ static const TSSymbol ts_symbol_map[] = { [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, [anon_sym_set] = anon_sym_set, @@ -1055,6 +1057,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__unescaped_annotation] = sym__unescaped_annotation, [sym_simple_identifier] = sym_simple_identifier, [sym_identifier] = sym_identifier, + [sym__import_identifier] = sym__import_identifier, [sym__return_at] = sym__return_at, [sym__continue_at] = sym__continue_at, [sym__break_at] = sym__break_at, @@ -1150,10 +1153,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT_STAR] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, + [sym_wildcard_import] = { + .visible = true, + .named = true, + }, [anon_sym_as] = { .visible = true, .named = false, @@ -1242,10 +1249,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -2346,6 +2349,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__import_identifier] = { + .visible = false, + .named = true, + }, [sym__return_at] = { .visible = false, .named = true, @@ -2555,15 +2562,18 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_interpolated_identifier, }, [5] = { - [2] = alias_sym_type_identifier, + [1] = sym_identifier, }, [6] = { - [1] = alias_sym_interpolated_expression, + [2] = alias_sym_type_identifier, }, [7] = { - [3] = alias_sym_type_identifier, + [1] = alias_sym_interpolated_expression, }, [8] = { + [3] = alias_sym_type_identifier, + }, + [9] = { [5] = alias_sym_type_identifier, }, }; @@ -2576,6 +2586,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_simple_identifier, alias_sym_interpolated_identifier, alias_sym_type_identifier, + sym__import_identifier, 2, + sym__import_identifier, + sym_identifier, sym__lexical_identifier, 3, sym__lexical_identifier, alias_sym_type_identifier, @@ -2588,89 +2601,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 3, - [6] = 6, - [7] = 2, + [4] = 3, + [5] = 5, + [6] = 2, + [7] = 3, [8] = 2, - [9] = 3, - [10] = 2, - [11] = 3, + [9] = 2, + [10] = 3, + [11] = 5, [12] = 2, [13] = 3, - [14] = 6, + [14] = 2, [15] = 3, - [16] = 3, + [16] = 2, [17] = 3, - [18] = 2, - [19] = 3, - [20] = 3, + [18] = 3, + [19] = 2, + [20] = 2, [21] = 2, [22] = 3, - [23] = 2, + [23] = 3, [24] = 2, - [25] = 2, + [25] = 3, [26] = 3, [27] = 2, - [28] = 2, - [29] = 3, - [30] = 3, - [31] = 2, - [32] = 2, + [28] = 3, + [29] = 2, + [30] = 2, + [31] = 3, + [32] = 3, [33] = 3, [34] = 2, - [35] = 2, + [35] = 3, [36] = 3, - [37] = 3, - [38] = 3, + [37] = 2, + [38] = 2, [39] = 2, [40] = 3, [41] = 2, - [42] = 3, - [43] = 2, - [44] = 2, + [42] = 2, + [43] = 3, + [44] = 3, [45] = 2, [46] = 3, - [47] = 3, + [47] = 2, [48] = 2, - [49] = 2, - [50] = 3, + [49] = 3, + [50] = 2, [51] = 3, [52] = 52, [53] = 53, [54] = 54, - [55] = 6, + [55] = 5, [56] = 2, [57] = 3, [58] = 58, [59] = 59, [60] = 60, - [61] = 60, - [62] = 60, - [63] = 60, - [64] = 60, - [65] = 60, + [61] = 61, + [62] = 61, + [63] = 58, + [64] = 64, + [65] = 61, [66] = 66, - [67] = 67, - [68] = 60, - [69] = 69, + [67] = 58, + [68] = 68, + [69] = 58, [70] = 70, - [71] = 60, - [72] = 59, - [73] = 59, - [74] = 74, - [75] = 75, - [76] = 59, - [77] = 60, - [78] = 59, - [79] = 60, - [80] = 60, - [81] = 60, - [82] = 59, - [83] = 60, - [84] = 60, - [85] = 60, - [86] = 6, + [71] = 71, + [72] = 61, + [73] = 58, + [74] = 58, + [75] = 58, + [76] = 58, + [77] = 58, + [78] = 58, + [79] = 58, + [80] = 61, + [81] = 61, + [82] = 58, + [83] = 58, + [84] = 58, + [85] = 58, + [86] = 5, [87] = 87, [88] = 87, [89] = 87, @@ -2683,7 +2696,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [96] = 87, [97] = 87, [98] = 87, - [99] = 87, + [99] = 3, [100] = 87, [101] = 87, [102] = 87, @@ -2693,229 +2706,229 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [106] = 2, [107] = 87, [108] = 87, - [109] = 3, + [109] = 87, [110] = 87, [111] = 87, [112] = 87, [113] = 113, [114] = 114, [115] = 115, - [116] = 114, - [117] = 114, + [116] = 115, + [117] = 115, [118] = 118, - [119] = 113, - [120] = 114, + [119] = 114, + [120] = 113, [121] = 118, - [122] = 113, - [123] = 118, + [122] = 114, + [123] = 115, [124] = 115, - [125] = 113, - [126] = 115, - [127] = 114, - [128] = 114, - [129] = 118, - [130] = 113, - [131] = 115, - [132] = 114, + [125] = 115, + [126] = 114, + [127] = 113, + [128] = 115, + [129] = 113, + [130] = 114, + [131] = 118, + [132] = 115, [133] = 118, - [134] = 113, + [134] = 115, [135] = 115, - [136] = 114, + [136] = 115, [137] = 118, - [138] = 113, - [139] = 115, - [140] = 115, + [138] = 118, + [139] = 114, + [140] = 113, [141] = 115, - [142] = 115, - [143] = 118, - [144] = 114, + [142] = 118, + [143] = 114, + [144] = 113, [145] = 118, - [146] = 113, - [147] = 118, + [146] = 114, + [147] = 113, [148] = 115, - [149] = 115, + [149] = 113, [150] = 113, - [151] = 113, - [152] = 115, - [153] = 118, + [151] = 118, + [152] = 118, + [153] = 115, [154] = 115, - [155] = 115, - [156] = 115, - [157] = 114, - [158] = 115, - [159] = 113, + [155] = 118, + [156] = 118, + [157] = 115, + [158] = 114, + [159] = 114, [160] = 114, - [161] = 118, - [162] = 113, + [161] = 113, + [162] = 115, [163] = 115, - [164] = 114, + [164] = 118, [165] = 114, - [166] = 118, + [166] = 113, [167] = 113, [168] = 115, - [169] = 113, - [170] = 118, - [171] = 114, + [169] = 118, + [170] = 114, + [171] = 118, [172] = 114, - [173] = 115, + [173] = 118, [174] = 113, - [175] = 118, - [176] = 113, - [177] = 114, - [178] = 114, - [179] = 118, - [180] = 6, - [181] = 118, - [182] = 114, - [183] = 118, - [184] = 114, - [185] = 113, - [186] = 115, - [187] = 113, - [188] = 115, - [189] = 114, - [190] = 118, - [191] = 113, - [192] = 118, - [193] = 115, - [194] = 113, - [195] = 115, - [196] = 115, - [197] = 118, - [198] = 113, - [199] = 114, - [200] = 118, + [175] = 114, + [176] = 118, + [177] = 115, + [178] = 118, + [179] = 113, + [180] = 114, + [181] = 114, + [182] = 115, + [183] = 113, + [184] = 118, + [185] = 115, + [186] = 118, + [187] = 118, + [188] = 114, + [189] = 113, + [190] = 115, + [191] = 114, + [192] = 113, + [193] = 113, + [194] = 114, + [195] = 113, + [196] = 5, + [197] = 113, + [198] = 114, + [199] = 115, + [200] = 115, [201] = 115, - [202] = 113, - [203] = 118, - [204] = 114, - [205] = 115, - [206] = 115, - [207] = 113, - [208] = 118, - [209] = 114, - [210] = 114, - [211] = 113, - [212] = 118, + [202] = 115, + [203] = 114, + [204] = 118, + [205] = 118, + [206] = 114, + [207] = 118, + [208] = 113, + [209] = 113, + [210] = 113, + [211] = 114, + [212] = 113, [213] = 213, [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 214, + [215] = 213, + [216] = 213, + [217] = 214, + [218] = 213, + [219] = 219, [220] = 220, - [221] = 220, - [222] = 213, - [223] = 213, + [221] = 221, + [222] = 3, + [223] = 223, [224] = 214, - [225] = 225, - [226] = 226, - [227] = 3, - [228] = 228, + [225] = 223, + [226] = 220, + [227] = 223, + [228] = 214, [229] = 214, - [230] = 214, - [231] = 213, - [232] = 214, - [233] = 213, + [230] = 230, + [231] = 231, + [232] = 220, + [233] = 2, [234] = 213, - [235] = 2, + [235] = 220, [236] = 213, - [237] = 213, - [238] = 220, + [237] = 220, + [238] = 213, [239] = 214, - [240] = 217, + [240] = 213, [241] = 241, - [242] = 220, - [243] = 217, - [244] = 213, - [245] = 214, + [242] = 213, + [243] = 214, + [244] = 214, + [245] = 245, [246] = 220, - [247] = 214, - [248] = 214, - [249] = 217, - [250] = 217, - [251] = 251, + [247] = 223, + [248] = 248, + [249] = 249, + [250] = 223, + [251] = 214, [252] = 252, - [253] = 220, - [254] = 214, - [255] = 217, + [253] = 214, + [254] = 223, + [255] = 214, [256] = 214, [257] = 257, [258] = 258, [259] = 259, - [260] = 225, - [261] = 225, - [262] = 225, - [263] = 225, - [264] = 225, - [265] = 225, - [266] = 225, - [267] = 225, - [268] = 225, - [269] = 225, - [270] = 225, + [260] = 248, + [261] = 248, + [262] = 248, + [263] = 248, + [264] = 248, + [265] = 248, + [266] = 248, + [267] = 248, + [268] = 248, + [269] = 248, + [270] = 248, [271] = 271, [272] = 272, - [273] = 273, + [273] = 272, [274] = 274, [275] = 275, [276] = 276, - [277] = 273, - [278] = 272, - [279] = 274, - [280] = 271, + [277] = 271, + [278] = 278, + [279] = 278, + [280] = 274, [281] = 275, [282] = 276, - [283] = 225, - [284] = 273, - [285] = 276, - [286] = 275, - [287] = 271, - [288] = 274, - [289] = 272, - [290] = 272, - [291] = 274, - [292] = 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, + [283] = 248, + [284] = 272, + [285] = 274, + [286] = 274, + [287] = 275, + [288] = 275, + [289] = 276, + [290] = 276, + [291] = 278, + [292] = 278, + [293] = 271, + [294] = 271, + [295] = 272, + [296] = 248, + [297] = 248, + [298] = 248, + [299] = 248, + [300] = 272, + [301] = 274, + [302] = 275, + [303] = 272, + [304] = 274, + [305] = 275, + [306] = 271, + [307] = 248, + [308] = 278, + [309] = 276, [310] = 271, - [311] = 271, - [312] = 275, - [313] = 225, - [314] = 276, - [315] = 276, - [316] = 273, - [317] = 272, - [318] = 271, - [319] = 271, - [320] = 273, - [321] = 275, - [322] = 274, - [323] = 273, + [311] = 276, + [312] = 278, + [313] = 248, + [314] = 274, + [315] = 278, + [316] = 278, + [317] = 274, + [318] = 275, + [319] = 275, + [320] = 271, + [321] = 278, + [322] = 271, + [323] = 272, [324] = 272, - [325] = 274, + [325] = 276, [326] = 275, - [327] = 275, - [328] = 274, - [329] = 271, - [330] = 272, - [331] = 276, + [327] = 276, + [328] = 276, + [329] = 272, + [330] = 271, + [331] = 274, [332] = 332, [333] = 332, [334] = 332, @@ -2940,462 +2953,462 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 332, [354] = 332, [355] = 332, - [356] = 225, - [357] = 225, - [358] = 225, + [356] = 248, + [357] = 248, + [358] = 248, [359] = 359, [360] = 360, [361] = 361, - [362] = 225, + [362] = 362, [363] = 363, [364] = 364, [365] = 365, - [366] = 366, + [366] = 248, [367] = 367, [368] = 368, [369] = 369, [370] = 370, - [371] = 225, + [371] = 371, [372] = 372, [373] = 373, [374] = 374, [375] = 375, - [376] = 376, + [376] = 248, [377] = 377, [378] = 378, [379] = 379, - [380] = 379, - [381] = 359, - [382] = 364, - [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] = 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] = 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, + [380] = 371, + [381] = 381, + [382] = 363, + [383] = 375, + [384] = 369, + [385] = 385, + [386] = 374, + [387] = 368, + [388] = 370, + [389] = 389, + [390] = 362, + [391] = 391, + [392] = 391, + [393] = 379, + [394] = 359, + [395] = 377, + [396] = 389, + [397] = 381, + [398] = 378, + [399] = 365, + [400] = 360, + [401] = 361, + [402] = 385, + [403] = 364, + [404] = 372, + [405] = 373, + [406] = 406, + [407] = 391, + [408] = 408, + [409] = 389, + [410] = 381, + [411] = 385, + [412] = 406, + [413] = 391, + [414] = 414, + [415] = 415, + [416] = 408, + [417] = 415, + [418] = 385, + [419] = 389, + [420] = 381, + [421] = 414, + [422] = 415, + [423] = 408, [424] = 424, - [425] = 424, - [426] = 410, - [427] = 411, - [428] = 411, - [429] = 407, - [430] = 430, - [431] = 431, - [432] = 409, - [433] = 433, - [434] = 433, - [435] = 435, - [436] = 435, - [437] = 431, - [438] = 430, - [439] = 410, - [440] = 440, - [441] = 435, + [425] = 425, + [426] = 425, + [427] = 427, + [428] = 428, + [429] = 408, + [430] = 414, + [431] = 406, + [432] = 428, + [433] = 427, + [434] = 406, + [435] = 424, + [436] = 414, + [437] = 415, + [438] = 438, + [439] = 438, + [440] = 428, + [441] = 424, [442] = 442, - [443] = 431, - [444] = 435, - [445] = 440, - [446] = 446, - [447] = 430, - [448] = 448, - [449] = 448, - [450] = 433, - [451] = 431, + [443] = 443, + [444] = 444, + [445] = 425, + [446] = 425, + [447] = 444, + [448] = 427, + [449] = 449, + [450] = 450, + [451] = 438, [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, + [453] = 428, + [454] = 442, + [455] = 449, + [456] = 438, + [457] = 427, + [458] = 450, + [459] = 443, + [460] = 360, + [461] = 374, + [462] = 371, + [463] = 363, + [464] = 370, + [465] = 372, + [466] = 377, + [467] = 373, + [468] = 369, + [469] = 375, + [470] = 364, + [471] = 379, + [472] = 361, + [473] = 368, + [474] = 367, [475] = 378, - [476] = 368, - [477] = 359, + [476] = 359, + [477] = 362, [478] = 365, - [479] = 453, + [479] = 479, [480] = 480, [481] = 481, [482] = 482, [483] = 483, [484] = 484, - [485] = 483, - [486] = 484, - [487] = 487, + [485] = 449, + [486] = 481, + [487] = 442, [488] = 488, - [489] = 489, - [490] = 490, - [491] = 442, - [492] = 492, - [493] = 446, - [494] = 448, - [495] = 446, - [496] = 440, - [497] = 492, - [498] = 498, - [499] = 490, - [500] = 440, - [501] = 448, - [502] = 502, + [489] = 450, + [490] = 443, + [491] = 449, + [492] = 488, + [493] = 442, + [494] = 494, + [495] = 450, + [496] = 444, + [497] = 497, + [498] = 482, + [499] = 443, + [500] = 483, + [501] = 501, + [502] = 479, [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, + [504] = 444, + [505] = 503, + [506] = 506, + [507] = 484, + [508] = 508, + [509] = 501, + [510] = 494, + [511] = 506, + [512] = 512, + [513] = 497, + [514] = 508, + [515] = 512, + [516] = 480, + [517] = 372, + [518] = 361, + [519] = 374, + [520] = 385, + [521] = 362, + [522] = 381, + [523] = 360, + [524] = 389, + [525] = 379, + [526] = 363, + [527] = 377, + [528] = 370, [529] = 378, - [530] = 367, - [531] = 376, - [532] = 359, - [533] = 374, - [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, + [530] = 368, + [531] = 389, + [532] = 369, + [533] = 381, + [534] = 375, + [535] = 385, + [536] = 391, + [537] = 364, + [538] = 365, + [539] = 373, + [540] = 391, + [541] = 371, + [542] = 359, + [543] = 381, + [544] = 501, + [545] = 424, + [546] = 427, + [547] = 415, + [548] = 406, + [549] = 389, + [550] = 425, + [551] = 488, + [552] = 508, + [553] = 512, + [554] = 385, + [555] = 480, + [556] = 479, + [557] = 494, + [558] = 484, + [559] = 506, [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] = 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, + [561] = 508, + [562] = 512, + [563] = 481, + [564] = 414, + [565] = 408, + [566] = 483, + [567] = 427, + [568] = 428, + [569] = 482, + [570] = 480, + [571] = 488, + [572] = 479, + [573] = 497, + [574] = 494, + [575] = 484, + [576] = 406, + [577] = 438, + [578] = 415, + [579] = 414, + [580] = 391, + [581] = 438, + [582] = 428, + [583] = 424, + [584] = 385, + [585] = 425, + [586] = 408, + [587] = 391, + [588] = 506, + [589] = 503, + [590] = 481, + [591] = 389, + [592] = 501, + [593] = 483, + [594] = 482, + [595] = 497, + [596] = 381, + [597] = 406, + [598] = 428, + [599] = 414, + [600] = 408, + [601] = 450, + [602] = 415, + [603] = 428, + [604] = 443, + [605] = 444, + [606] = 406, + [607] = 442, + [608] = 450, + [609] = 444, + [610] = 442, + [611] = 449, + [612] = 415, + [613] = 427, + [614] = 425, + [615] = 438, + [616] = 414, + [617] = 424, + [618] = 408, + [619] = 424, + [620] = 449, + [621] = 425, + [622] = 443, + [623] = 427, + [624] = 438, + [625] = 275, + [626] = 272, + [627] = 274, + [628] = 274, + [629] = 276, + [630] = 276, [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, + [632] = 272, + [633] = 271, + [634] = 278, + [635] = 271, + [636] = 278, + [637] = 442, + [638] = 449, + [639] = 444, + [640] = 443, + [641] = 450, + [642] = 442, + [643] = 449, + [644] = 450, + [645] = 444, + [646] = 443, + [647] = 481, + [648] = 503, + [649] = 508, + [650] = 501, [651] = 488, - [652] = 492, - [653] = 482, - [654] = 503, - [655] = 481, - [656] = 481, - [657] = 480, - [658] = 490, - [659] = 483, + [652] = 506, + [653] = 488, + [654] = 484, + [655] = 494, + [656] = 479, + [657] = 497, + [658] = 512, + [659] = 481, [660] = 480, - [661] = 484, - [662] = 489, - [663] = 488, - [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, + [661] = 479, + [662] = 494, + [663] = 501, + [664] = 482, + [665] = 503, + [666] = 483, + [667] = 483, + [668] = 482, + [669] = 497, + [670] = 484, + [671] = 508, + [672] = 512, + [673] = 506, + [674] = 480, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 677, + [679] = 676, [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] = 681, - [693] = 681, - [694] = 694, - [695] = 678, - [696] = 680, - [697] = 679, - [698] = 678, - [699] = 680, - [700] = 681, + [681] = 676, + [682] = 682, + [683] = 680, + [684] = 676, + [685] = 680, + [686] = 278, + [687] = 682, + [688] = 676, + [689] = 677, + [690] = 271, + [691] = 682, + [692] = 278, + [693] = 680, + [694] = 676, + [695] = 677, + [696] = 677, + [697] = 677, + [698] = 680, + [699] = 682, + [700] = 276, [701] = 680, - [702] = 679, - [703] = 678, - [704] = 273, - [705] = 678, + [702] = 271, + [703] = 276, + [704] = 275, + [705] = 275, [706] = 274, - [707] = 275, - [708] = 276, - [709] = 681, - [710] = 680, - [711] = 679, - [712] = 275, - [713] = 484, - [714] = 274, - [715] = 275, - [716] = 272, - [717] = 273, - [718] = 513, - [719] = 502, - [720] = 503, + [707] = 682, + [708] = 274, + [709] = 272, + [710] = 682, + [711] = 272, + [712] = 494, + [713] = 503, + [714] = 488, + [715] = 482, + [716] = 479, + [717] = 508, + [718] = 488, + [719] = 503, + [720] = 512, [721] = 271, - [722] = 481, - [723] = 480, - [724] = 490, - [725] = 276, - [726] = 276, + [722] = 480, + [723] = 481, + [724] = 479, + [725] = 278, + [726] = 494, [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] = 487, - [742] = 489, - [743] = 498, - [744] = 492, - [745] = 482, - [746] = 482, - [747] = 487, - [748] = 488, - [749] = 503, - [750] = 483, - [751] = 489, - [752] = 273, + [728] = 278, + [729] = 506, + [730] = 512, + [731] = 276, + [732] = 481, + [733] = 497, + [734] = 501, + [735] = 483, + [736] = 482, + [737] = 497, + [738] = 508, + [739] = 501, + [740] = 480, + [741] = 271, + [742] = 276, + [743] = 275, + [744] = 274, + [745] = 272, + [746] = 272, + [747] = 483, + [748] = 274, + [749] = 275, + [750] = 484, + [751] = 506, + [752] = 278, [753] = 753, - [754] = 753, + [754] = 275, [755] = 753, - [756] = 276, - [757] = 275, + [756] = 753, + [757] = 757, [758] = 271, [759] = 274, - [760] = 272, - [761] = 273, - [762] = 753, - [763] = 753, - [764] = 764, + [760] = 278, + [761] = 753, + [762] = 274, + [763] = 276, + [764] = 753, [765] = 753, [766] = 753, [767] = 753, [768] = 753, - [769] = 753, - [770] = 272, + [769] = 271, + [770] = 770, [771] = 753, - [772] = 274, + [772] = 276, [773] = 773, - [774] = 774, - [775] = 276, - [776] = 774, + [774] = 770, + [775] = 775, + [776] = 753, [777] = 777, - [778] = 777, - [779] = 753, - [780] = 753, + [778] = 753, + [779] = 272, + [780] = 275, [781] = 753, [782] = 753, - [783] = 275, - [784] = 753, - [785] = 785, + [783] = 777, + [784] = 775, + [785] = 753, [786] = 753, [787] = 753, [788] = 753, [789] = 753, [790] = 753, [791] = 753, - [792] = 753, + [792] = 272, [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, + [797] = 753, + [798] = 753, + [799] = 275, + [800] = 274, + [801] = 276, + [802] = 275, + [803] = 278, + [804] = 271, + [805] = 274, + [806] = 272, + [807] = 807, + [808] = 272, [809] = 276, - [810] = 275, - [811] = 273, + [810] = 278, + [811] = 271, [812] = 812, [813] = 813, [814] = 814, @@ -3410,28 +3423,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [823] = 823, [824] = 824, [825] = 825, - [826] = 815, + [826] = 826, [827] = 827, [828] = 828, - [829] = 829, - [830] = 830, + [829] = 821, + [830] = 824, [831] = 831, [832] = 832, [833] = 833, - [834] = 821, + [834] = 823, [835] = 835, - [836] = 820, + [836] = 836, [837] = 837, - [838] = 814, + [838] = 838, [839] = 839, [840] = 840, - [841] = 818, + [841] = 841, [842] = 842, - [843] = 822, + [843] = 843, [844] = 844, [845] = 845, [846] = 846, - [847] = 847, + [847] = 813, [848] = 848, [849] = 849, [850] = 850, @@ -3444,169 +3457,169 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [857] = 857, [858] = 858, [859] = 859, - [860] = 860, - [861] = 861, - [862] = 850, - [863] = 821, + [860] = 817, + [861] = 819, + [862] = 278, + [863] = 863, [864] = 864, [865] = 865, - [866] = 866, + [866] = 859, [867] = 867, [868] = 868, - [869] = 869, - [870] = 276, + [869] = 854, + [870] = 870, [871] = 871, - [872] = 275, - [873] = 273, - [874] = 272, - [875] = 271, - [876] = 274, - [877] = 823, - [878] = 271, - [879] = 275, - [880] = 276, - [881] = 274, - [882] = 272, - [883] = 273, + [872] = 872, + [873] = 823, + [874] = 828, + [875] = 857, + [876] = 876, + [877] = 272, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 825, + [882] = 882, + [883] = 883, [884] = 884, [885] = 885, - [886] = 886, - [887] = 887, - [888] = 857, - [889] = 849, - [890] = 855, - [891] = 891, - [892] = 848, - [893] = 829, + [886] = 837, + [887] = 839, + [888] = 851, + [889] = 889, + [890] = 890, + [891] = 275, + [892] = 843, + [893] = 846, [894] = 894, - [895] = 845, + [895] = 895, [896] = 896, - [897] = 844, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 837, + [897] = 841, + [898] = 274, + [899] = 831, + [900] = 276, + [901] = 835, + [902] = 902, [903] = 903, - [904] = 904, + [904] = 271, [905] = 905, [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, - [911] = 911, - [912] = 912, - [913] = 832, - [914] = 914, - [915] = 915, - [916] = 835, + [911] = 271, + [912] = 276, + [913] = 274, + [914] = 272, + [915] = 275, + [916] = 278, [917] = 917, [918] = 918, [919] = 919, [920] = 920, [921] = 921, - [922] = 853, - [923] = 859, + [922] = 922, + [923] = 923, [924] = 924, - [925] = 925, - [926] = 271, + [925] = 845, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 930, + [930] = 858, [931] = 931, [932] = 932, [933] = 933, - [934] = 934, + [934] = 365, [935] = 935, [936] = 936, [937] = 937, [938] = 938, [939] = 939, - [940] = 852, + [940] = 940, [941] = 941, [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, + [943] = 278, + [944] = 271, + [945] = 379, [946] = 946, [947] = 947, - [948] = 372, - [949] = 361, - [950] = 367, - [951] = 374, + [948] = 276, + [949] = 275, + [950] = 274, + [951] = 951, [952] = 952, - [953] = 273, - [954] = 846, - [955] = 955, - [956] = 956, - [957] = 359, - [958] = 363, - [959] = 272, - [960] = 960, - [961] = 377, - [962] = 274, - [963] = 963, - [964] = 275, - [965] = 276, - [966] = 966, - [967] = 967, + [953] = 360, + [954] = 954, + [955] = 378, + [956] = 374, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 272, + [961] = 961, + [962] = 373, + [963] = 368, + [964] = 964, + [965] = 965, + [966] = 372, + [967] = 362, [968] = 968, [969] = 969, - [970] = 273, + [970] = 970, [971] = 971, - [972] = 972, + [972] = 367, [973] = 973, [974] = 974, [975] = 975, - [976] = 272, - [977] = 274, - [978] = 831, - [979] = 979, - [980] = 271, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 370, + [980] = 980, [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 275, - [987] = 987, - [988] = 988, - [989] = 276, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, + [982] = 359, + [983] = 361, + [984] = 977, + [985] = 278, + [986] = 271, + [987] = 276, + [988] = 364, + [989] = 275, + [990] = 375, + [991] = 274, + [992] = 272, + [993] = 363, [994] = 994, [995] = 995, - [996] = 365, + [996] = 996, [997] = 997, - [998] = 994, + [998] = 998, [999] = 999, [1000] = 1000, [1001] = 1001, - [1002] = 373, - [1003] = 370, + [1002] = 1002, + [1003] = 1003, [1004] = 1004, - [1005] = 369, - [1006] = 368, - [1007] = 364, - [1008] = 366, - [1009] = 360, - [1010] = 376, - [1011] = 378, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 840, + [1009] = 377, + [1010] = 832, + [1011] = 369, [1012] = 1012, - [1013] = 379, + [1013] = 1013, [1014] = 1014, - [1015] = 867, - [1016] = 847, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 840, + [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, @@ -3616,12 +3629,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1029] = 1029, [1030] = 1030, [1031] = 1031, - [1032] = 842, + [1032] = 274, [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 842, + [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, @@ -3629,8 +3642,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 842, - [1046] = 847, + [1045] = 1045, + [1046] = 1046, [1047] = 1047, [1048] = 1048, [1049] = 1049, @@ -3641,84 +3654,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1054] = 1054, [1055] = 1055, [1056] = 1056, - [1057] = 1057, + [1057] = 1054, [1058] = 1058, - [1059] = 1059, - [1060] = 1054, + [1059] = 275, + [1060] = 1055, [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1066, + [1066] = 276, [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 1070, + [1070] = 826, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, + [1074] = 271, [1075] = 1075, [1076] = 1076, - [1077] = 1077, + [1077] = 278, [1078] = 1078, [1079] = 1079, - [1080] = 842, + [1080] = 1080, [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 847, + [1084] = 1084, [1085] = 1085, - [1086] = 276, - [1087] = 275, - [1088] = 271, - [1089] = 274, - [1090] = 272, - [1091] = 273, - [1092] = 1092, - [1093] = 896, + [1086] = 894, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 890, + [1093] = 1093, [1094] = 1094, - [1095] = 898, - [1096] = 899, + [1095] = 1095, + [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, - [1100] = 903, + [1100] = 1100, [1101] = 1101, - [1102] = 905, + [1102] = 1102, [1103] = 1103, - [1104] = 1104, - [1105] = 909, + [1104] = 272, + [1105] = 1105, [1106] = 1106, - [1107] = 911, + [1107] = 848, [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 901, + [1111] = 850, [1112] = 1112, - [1113] = 900, + [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 1118, - [1119] = 887, + [1118] = 872, + [1119] = 1119, [1120] = 1120, - [1121] = 847, + [1121] = 848, [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 914, - [1127] = 921, + [1126] = 1126, + [1127] = 1127, [1128] = 1128, - [1129] = 1129, - [1130] = 1130, + [1129] = 879, + [1130] = 850, [1131] = 1131, [1132] = 1132, [1133] = 1133, - [1134] = 904, + [1134] = 1134, [1135] = 1135, [1136] = 1136, [1137] = 1137, @@ -3726,4753 +3739,4753 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 276, + [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 275, + [1146] = 1146, [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 271, + [1152] = 1152, [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 274, + [1156] = 1156, [1157] = 1157, [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, + [1159] = 278, + [1160] = 271, + [1161] = 276, [1162] = 1162, [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, + [1164] = 910, + [1165] = 850, + [1166] = 848, + [1167] = 275, + [1168] = 871, + [1169] = 876, [1170] = 1170, - [1171] = 1171, - [1172] = 1172, + [1171] = 274, + [1172] = 272, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 273, - [1179] = 1057, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 272, + [1176] = 870, + [1177] = 919, + [1178] = 1178, + [1179] = 918, + [1180] = 850, + [1181] = 848, + [1182] = 908, + [1183] = 878, + [1184] = 903, [1185] = 1185, - [1186] = 1186, + [1186] = 895, [1187] = 1187, - [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, + [1188] = 365, + [1189] = 370, + [1190] = 373, + [1191] = 373, + [1192] = 363, + [1193] = 360, + [1194] = 360, + [1195] = 371, + [1196] = 813, + [1197] = 379, + [1198] = 378, + [1199] = 275, + [1200] = 369, + [1201] = 819, + [1202] = 374, + [1203] = 824, + [1204] = 368, + [1205] = 362, + [1206] = 359, + [1207] = 361, + [1208] = 365, + [1209] = 364, + [1210] = 817, + [1211] = 375, [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] = 372, - [1225] = 847, - [1226] = 377, - [1227] = 822, - [1228] = 274, - [1229] = 360, - [1230] = 367, - [1231] = 363, - [1232] = 818, - [1233] = 359, - [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, + [1213] = 848, + [1214] = 821, + [1215] = 850, + [1216] = 377, + [1217] = 272, + [1218] = 363, + [1219] = 369, + [1220] = 377, + [1221] = 370, + [1222] = 372, + [1223] = 372, + [1224] = 271, + [1225] = 379, + [1226] = 278, + [1227] = 367, + [1228] = 364, + [1229] = 378, + [1230] = 375, + [1231] = 374, + [1232] = 368, + [1233] = 362, + [1234] = 274, + [1235] = 359, + [1236] = 361, + [1237] = 1237, + [1238] = 1237, + [1239] = 858, + [1240] = 840, + [1241] = 813, + [1242] = 1237, + [1243] = 832, + [1244] = 1237, + [1245] = 1237, + [1246] = 1237, + [1247] = 278, + [1248] = 1237, + [1249] = 271, + [1250] = 1237, + [1251] = 1237, + [1252] = 1237, + [1253] = 1237, + [1254] = 1237, + [1255] = 850, + [1256] = 848, + [1257] = 1237, + [1258] = 817, + [1259] = 1237, + [1260] = 1237, + [1261] = 1237, + [1262] = 1237, + [1263] = 819, + [1264] = 850, + [1265] = 848, + [1266] = 1237, + [1267] = 839, + [1268] = 824, + [1269] = 272, + [1270] = 1237, + [1271] = 821, + [1272] = 275, + [1273] = 276, + [1274] = 274, + [1275] = 851, + [1276] = 1103, + [1277] = 1113, + [1278] = 1015, + [1279] = 1143, + [1280] = 843, + [1281] = 846, + [1282] = 1237, + [1283] = 850, + [1284] = 1073, + [1285] = 1072, + [1286] = 848, + [1287] = 1237, + [1288] = 1237, + [1289] = 845, + [1290] = 850, + [1291] = 1237, + [1292] = 1237, + [1293] = 848, + [1294] = 385, + [1295] = 1295, + [1296] = 1295, + [1297] = 1297, + [1298] = 1297, + [1299] = 854, + [1300] = 1300, + [1301] = 1295, + [1302] = 385, + [1303] = 381, + [1304] = 1295, + [1305] = 389, + [1306] = 1300, + [1307] = 391, + [1308] = 1297, + [1309] = 828, + [1310] = 1300, + [1311] = 1295, + [1312] = 1300, + [1313] = 859, + [1314] = 837, + [1315] = 841, + [1316] = 831, + [1317] = 1300, + [1318] = 1297, + [1319] = 1295, + [1320] = 1300, + [1321] = 1297, + [1322] = 1295, + [1323] = 835, + [1324] = 1300, + [1325] = 1297, + [1326] = 1295, + [1327] = 1300, + [1328] = 1297, + [1329] = 1295, + [1330] = 1300, + [1331] = 1297, + [1332] = 1295, + [1333] = 1300, + [1334] = 1297, + [1335] = 1297, + [1336] = 1295, + [1337] = 1297, + [1338] = 1300, + [1339] = 1297, + [1340] = 1295, + [1341] = 1300, + [1342] = 1297, + [1343] = 1300, + [1344] = 1295, + [1345] = 1295, + [1346] = 857, + [1347] = 1297, + [1348] = 1300, + [1349] = 1297, + [1350] = 1295, + [1351] = 870, + [1352] = 1297, + [1353] = 845, + [1354] = 878, + [1355] = 895, + [1356] = 1300, + [1357] = 1297, + [1358] = 1295, + [1359] = 1300, + [1360] = 1297, + [1361] = 1295, + [1362] = 1300, + [1363] = 910, + [1364] = 1364, + [1365] = 1300, + [1366] = 839, + [1367] = 903, + [1368] = 391, + [1369] = 850, + [1370] = 871, + [1371] = 908, + [1372] = 876, + [1373] = 389, + [1374] = 381, + [1375] = 1300, + [1376] = 1295, + [1377] = 1295, + [1378] = 843, + [1379] = 919, + [1380] = 851, + [1381] = 918, + [1382] = 846, + [1383] = 848, + [1384] = 835, + [1385] = 408, + [1386] = 414, + [1387] = 415, + [1388] = 406, + [1389] = 831, + [1390] = 841, + [1391] = 840, + [1392] = 375, + [1393] = 364, + [1394] = 365, + [1395] = 361, + [1396] = 359, + [1397] = 837, + [1398] = 859, + [1399] = 857, + [1400] = 854, + [1401] = 905, + [1402] = 362, + [1403] = 368, + [1404] = 828, + [1405] = 374, + [1406] = 378, + [1407] = 379, + [1408] = 360, + [1409] = 1409, + [1410] = 363, + [1411] = 369, [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, + [1413] = 894, + [1414] = 890, + [1415] = 406, + [1416] = 371, + [1417] = 415, + [1418] = 414, + [1419] = 377, + [1420] = 370, + [1421] = 858, + [1422] = 408, + [1423] = 373, + [1424] = 1424, + [1425] = 367, + [1426] = 372, + [1427] = 832, [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1428, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, - [1437] = 372, - [1438] = 1438, - [1439] = 1439, + [1436] = 1428, + [1437] = 1437, + [1438] = 1430, + [1439] = 1433, [1440] = 1440, - [1441] = 1441, + [1441] = 1437, [1442] = 1442, [1443] = 1443, - [1444] = 1444, + [1444] = 1440, [1445] = 1445, - [1446] = 1446, + [1446] = 876, [1447] = 1447, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 887, - [1452] = 1446, + [1451] = 1451, + [1452] = 1447, [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, + [1455] = 1455, + [1456] = 1442, + [1457] = 1448, + [1458] = 1458, + [1459] = 1449, + [1460] = 1445, + [1461] = 1443, + [1462] = 1428, + [1463] = 1434, + [1464] = 1464, + [1465] = 1432, + [1466] = 1429, + [1467] = 1445, + [1468] = 1443, + [1469] = 1450, + [1470] = 1428, + [1471] = 1451, + [1472] = 1455, + [1473] = 1454, [1474] = 1434, - [1475] = 1475, - [1476] = 1435, - [1477] = 1454, - [1478] = 1442, - [1479] = 1441, - [1480] = 1453, - [1481] = 1454, - [1482] = 1449, - [1483] = 1456, - [1484] = 1484, - [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] = 1456, - [1500] = 1433, - [1501] = 1428, - [1502] = 1438, - [1503] = 1447, - [1504] = 1431, - [1505] = 1430, - [1506] = 1453, - [1507] = 1507, - [1508] = 1508, - [1509] = 1454, - [1510] = 1510, - [1511] = 1429, - [1512] = 1449, - [1513] = 1496, - [1514] = 1456, - [1515] = 1515, - [1516] = 1484, - [1517] = 1434, - [1518] = 1518, - [1519] = 1459, - [1520] = 1520, - [1521] = 1521, - [1522] = 1430, - [1523] = 1431, + [1475] = 1432, + [1476] = 1429, + [1477] = 1445, + [1478] = 1453, + [1479] = 1443, + [1480] = 910, + [1481] = 1428, + [1482] = 1434, + [1483] = 1451, + [1484] = 1450, + [1485] = 1432, + [1486] = 1429, + [1487] = 1445, + [1488] = 1443, + [1489] = 1428, + [1490] = 1434, + [1491] = 1432, + [1492] = 1429, + [1493] = 1445, + [1494] = 1443, + [1495] = 1464, + [1496] = 1449, + [1497] = 1428, + [1498] = 1434, + [1499] = 1432, + [1500] = 1429, + [1501] = 1454, + [1502] = 1445, + [1503] = 1503, + [1504] = 1504, + [1505] = 1429, + [1506] = 1458, + [1507] = 1443, + [1508] = 1429, + [1509] = 1448, + [1510] = 1503, + [1511] = 1447, + [1512] = 1440, + [1513] = 1432, + [1514] = 1514, + [1515] = 1433, + [1516] = 1430, + [1517] = 1437, + [1518] = 1434, + [1519] = 1503, + [1520] = 1453, + [1521] = 1428, + [1522] = 1443, + [1523] = 1454, [1524] = 1428, - [1525] = 1433, - [1526] = 1440, - [1527] = 1441, - [1528] = 1442, - [1529] = 1443, - [1530] = 1530, - [1531] = 1444, - [1532] = 1484, - [1533] = 1459, - [1534] = 1498, - [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, + [1525] = 1455, + [1526] = 1442, + [1527] = 1434, + [1528] = 1445, + [1529] = 1432, + [1530] = 1429, + [1531] = 1447, + [1532] = 1429, + [1533] = 1514, + [1534] = 1464, + [1535] = 1432, + [1536] = 1503, + [1537] = 1514, + [1538] = 1454, + [1539] = 1454, + [1540] = 1434, + [1541] = 1453, + [1542] = 1428, + [1543] = 1451, + [1544] = 1437, + [1545] = 1430, + [1546] = 1443, + [1547] = 1445, + [1548] = 1450, + [1549] = 1433, + [1550] = 1440, + [1551] = 1449, + [1552] = 1448, + [1553] = 1448, + [1554] = 1447, + [1555] = 1440, [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, + [1557] = 1430, + [1558] = 1449, + [1559] = 1429, + [1560] = 1437, + [1561] = 1450, + [1562] = 1432, + [1563] = 1503, + [1564] = 1458, + [1565] = 1503, + [1566] = 1455, + [1567] = 1442, + [1568] = 1514, + [1569] = 1464, + [1570] = 1458, + [1571] = 1454, + [1572] = 1455, + [1573] = 1451, + [1574] = 1464, + [1575] = 1458, + [1576] = 1442, + [1577] = 1442, + [1578] = 1453, + [1579] = 1579, + [1580] = 1454, + [1581] = 1453, + [1582] = 1582, + [1583] = 1451, + [1584] = 1450, + [1585] = 1449, + [1586] = 1454, + [1587] = 1464, + [1588] = 1448, [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, + [1590] = 1453, + [1591] = 1447, + [1592] = 1464, + [1593] = 1451, + [1594] = 1450, + [1595] = 1449, + [1596] = 1448, + [1597] = 1455, + [1598] = 1598, + [1599] = 1455, + [1600] = 1442, + [1601] = 1434, + [1602] = 1440, + [1603] = 1447, + [1604] = 1440, + [1605] = 1437, + [1606] = 1430, + [1607] = 1433, + [1608] = 1430, + [1609] = 1433, + [1610] = 360, + [1611] = 1430, + [1612] = 1503, + [1613] = 1437, + [1614] = 1433, + [1615] = 1440, + [1616] = 1447, + [1617] = 1448, + [1618] = 1582, + [1619] = 1437, + [1620] = 1503, + [1621] = 1621, + [1622] = 1449, + [1623] = 1450, + [1624] = 1451, + [1625] = 1455, + [1626] = 367, + [1627] = 1428, + [1628] = 1443, + [1629] = 1582, + [1630] = 1453, + [1631] = 1445, + [1632] = 1454, + [1633] = 1503, + [1634] = 1429, + [1635] = 1432, + [1636] = 1437, + [1637] = 1430, + [1638] = 1434, + [1639] = 1440, + [1640] = 1445, + [1641] = 1428, + [1642] = 1455, + [1643] = 1443, + [1644] = 1644, + [1645] = 1645, + [1646] = 1579, + [1647] = 1445, + [1648] = 1454, + [1649] = 1649, + [1650] = 1453, + [1651] = 1442, + [1652] = 1451, + [1653] = 1450, + [1654] = 1449, + [1655] = 1448, + [1656] = 1447, + [1657] = 1445, + [1658] = 1443, + [1659] = 1428, + [1660] = 425, + [1661] = 1434, + [1662] = 1432, + [1663] = 1442, + [1664] = 1429, + [1665] = 1440, + [1666] = 1433, + [1667] = 1455, + [1668] = 1430, + [1669] = 1437, + [1670] = 1445, + [1671] = 1443, + [1672] = 424, + [1673] = 1503, + [1674] = 1428, + [1675] = 1464, + [1676] = 1434, + [1677] = 1432, + [1678] = 1429, + [1679] = 1437, + [1680] = 1445, + [1681] = 1644, + [1682] = 1429, + [1683] = 1430, + [1684] = 1433, + [1685] = 1440, + [1686] = 1458, + [1687] = 1443, + [1688] = 427, + [1689] = 1428, + [1690] = 1434, + [1691] = 1447, + [1692] = 1432, + [1693] = 1448, + [1694] = 1645, + [1695] = 1449, + [1696] = 1450, + [1697] = 1451, + [1698] = 1453, + [1699] = 1454, + [1700] = 1464, + [1701] = 1429, + [1702] = 1445, + [1703] = 1443, + [1704] = 1433, + [1705] = 1440, + [1706] = 1447, + [1707] = 1448, + [1708] = 1464, + [1709] = 1449, + [1710] = 1442, + [1711] = 1453, + [1712] = 1451, + [1713] = 1450, + [1714] = 1449, + [1715] = 1448, + [1716] = 1447, + [1717] = 1455, [1718] = 1440, - [1719] = 1433, - [1720] = 1428, - [1721] = 1431, + [1719] = 1450, + [1720] = 1579, + [1721] = 1433, [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, + [1723] = 1437, + [1724] = 1503, + [1725] = 1451, + [1726] = 1503, + [1727] = 1503, + [1728] = 1455, + [1729] = 1437, + [1730] = 981, + [1731] = 1430, + [1732] = 1442, + [1733] = 1644, + [1734] = 1434, + [1735] = 1645, + [1736] = 1579, + [1737] = 1432, + [1738] = 1445, + [1739] = 377, + [1740] = 379, + [1741] = 378, + [1742] = 374, + [1743] = 368, + [1744] = 362, + [1745] = 359, + [1746] = 1644, + [1747] = 361, + [1748] = 1433, + [1749] = 365, + [1750] = 364, + [1751] = 375, + [1752] = 1455, + [1753] = 1464, + [1754] = 1442, + [1755] = 369, + [1756] = 1453, + [1757] = 1451, + [1758] = 1450, + [1759] = 1453, + [1760] = 1449, + [1761] = 1448, + [1762] = 1447, + [1763] = 1440, + [1764] = 1454, + [1765] = 1433, + [1766] = 1430, + [1767] = 1464, + [1768] = 1437, + [1769] = 1503, + [1770] = 1770, + [1771] = 363, + [1772] = 1447, + [1773] = 1455, + [1774] = 1645, + [1775] = 1442, + [1776] = 1442, + [1777] = 1443, + [1778] = 1455, + [1779] = 1429, + [1780] = 425, + [1781] = 360, + [1782] = 1464, + [1783] = 1503, + [1784] = 1442, + [1785] = 1448, + [1786] = 1455, + [1787] = 1449, + [1788] = 1437, + [1789] = 1430, + [1790] = 1433, + [1791] = 379, + [1792] = 1440, + [1793] = 1447, + [1794] = 378, + [1795] = 1448, + [1796] = 1449, + [1797] = 424, + [1798] = 1503, + [1799] = 1450, + [1800] = 374, + [1801] = 1450, + [1802] = 919, + [1803] = 368, + [1804] = 1451, + [1805] = 1451, + [1806] = 362, + [1807] = 359, + [1808] = 361, + [1809] = 365, + [1810] = 364, + [1811] = 1428, + [1812] = 1453, + [1813] = 1431, + [1814] = 1579, + [1815] = 1435, + [1816] = 1579, + [1817] = 375, + [1818] = 1582, + [1819] = 1644, + [1820] = 1464, + [1821] = 1464, + [1822] = 1445, + [1823] = 1598, + [1824] = 1453, + [1825] = 1429, + [1826] = 1826, + [1827] = 1432, + [1828] = 1645, + [1829] = 1829, + [1830] = 427, + [1831] = 1437, + [1832] = 1430, + [1833] = 1433, + [1834] = 1440, + [1835] = 1434, + [1836] = 1644, + [1837] = 1443, + [1838] = 1645, + [1839] = 428, + [1840] = 1428, + [1841] = 1447, + [1842] = 1448, + [1843] = 1449, + [1844] = 1450, + [1845] = 1451, + [1846] = 1826, + [1847] = 1453, + [1848] = 1454, + [1849] = 1428, + [1850] = 1454, + [1851] = 1453, + [1852] = 1434, + [1853] = 1443, + [1854] = 1451, + [1855] = 1450, + [1856] = 1449, + [1857] = 1448, + [1858] = 1445, + [1859] = 1447, + [1860] = 1440, + [1861] = 1433, + [1862] = 1432, + [1863] = 1430, + [1864] = 1429, + [1865] = 438, + [1866] = 1434, + [1867] = 1437, + [1868] = 1454, + [1869] = 1503, + [1870] = 1445, + [1871] = 1443, + [1872] = 1464, + [1873] = 1442, + [1874] = 1455, + [1875] = 1875, + [1876] = 1428, + [1877] = 1455, + [1878] = 1442, + [1879] = 1434, + [1880] = 1432, + [1881] = 1503, + [1882] = 1437, + [1883] = 1430, + [1884] = 1433, + [1885] = 1440, + [1886] = 1447, + [1887] = 1448, + [1888] = 1464, + [1889] = 1449, [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, + [1891] = 1451, + [1892] = 1453, + [1893] = 1429, + [1894] = 1464, + [1895] = 1454, + [1896] = 1514, + [1897] = 428, + [1898] = 438, + [1899] = 1454, + [1900] = 1458, + [1901] = 1514, + [1902] = 1443, + [1903] = 970, + [1904] = 1458, + [1905] = 918, + [1906] = 1906, + [1907] = 1579, + [1908] = 1582, + [1909] = 1909, + [1910] = 1910, + [1911] = 1514, + [1912] = 1644, + [1913] = 1428, + [1914] = 1914, + [1915] = 1432, + [1916] = 908, + [1917] = 1645, + [1918] = 903, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1464, + [1923] = 1454, + [1924] = 1442, + [1925] = 1453, + [1926] = 1451, + [1927] = 1450, + [1928] = 1449, + [1929] = 1929, + [1930] = 1448, + [1931] = 1447, + [1932] = 1440, + [1933] = 1433, + [1934] = 1644, + [1935] = 1430, + [1936] = 1437, + [1937] = 1937, + [1938] = 1503, + [1939] = 1437, + [1940] = 1440, + [1941] = 1503, + [1942] = 895, + [1943] = 1455, + [1944] = 1458, + [1945] = 1430, + [1946] = 1449, + [1947] = 1433, + [1948] = 1440, + [1949] = 1429, + [1950] = 1442, + [1951] = 1447, + [1952] = 1448, + [1953] = 1450, + [1954] = 1451, + [1955] = 1434, + [1956] = 878, + [1957] = 1453, + [1958] = 1454, + [1959] = 870, + [1960] = 1582, + [1961] = 1579, + [1962] = 1644, + [1963] = 1645, + [1964] = 1582, + [1965] = 1431, [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, + [1967] = 1442, + [1968] = 1579, + [1969] = 1579, + [1970] = 1582, + [1971] = 1598, + [1972] = 1644, + [1973] = 1645, + [1974] = 1582, + [1975] = 1464, + [1976] = 1429, + [1977] = 1826, + [1978] = 1454, + [1979] = 1579, + [1980] = 1453, + [1981] = 1644, + [1982] = 1451, + [1983] = 1450, + [1984] = 1449, + [1985] = 1448, + [1986] = 1447, + [1987] = 1440, + [1988] = 1433, + [1989] = 1432, + [1990] = 1430, + [1991] = 1437, + [1992] = 1455, + [1993] = 1503, + [1994] = 1503, + [1995] = 1455, + [1996] = 1437, + [1997] = 1645, + [1998] = 1829, + [1999] = 1442, + [2000] = 1464, + [2001] = 1458, + [2002] = 1430, + [2003] = 1434, + [2004] = 1645, + [2005] = 1582, + [2006] = 1579, + [2007] = 1582, + [2008] = 1455, + [2009] = 1433, + [2010] = 1445, + [2011] = 1644, + [2012] = 1443, + [2013] = 1428, + [2014] = 1434, + [2015] = 1432, [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, + [2017] = 1644, + [2018] = 1428, + [2019] = 1645, + [2020] = 1582, + [2021] = 1442, + [2022] = 1579, + [2023] = 1451, + [2024] = 1582, + [2025] = 1443, + [2026] = 1445, + [2027] = 1431, + [2028] = 1435, + [2029] = 1582, + [2030] = 371, + [2031] = 363, + [2032] = 1582, + [2033] = 1445, + [2034] = 1443, + [2035] = 1428, + [2036] = 369, + [2037] = 1434, + [2038] = 1432, + [2039] = 1429, + [2040] = 1447, + [2041] = 1445, + [2042] = 1443, + [2043] = 1428, + [2044] = 1579, + [2045] = 1582, + [2046] = 1598, + [2047] = 1434, + [2048] = 1432, + [2049] = 1429, + [2050] = 1448, + [2051] = 1445, + [2052] = 1443, + [2053] = 1428, + [2054] = 1434, + [2055] = 1432, + [2056] = 1429, + [2057] = 377, + [2058] = 976, + [2059] = 977, + [2060] = 1449, + [2061] = 1445, + [2062] = 1443, + [2063] = 1428, + [2064] = 1434, + [2065] = 1514, + [2066] = 370, + [2067] = 1826, + [2068] = 1432, + [2069] = 1429, + [2070] = 1645, + [2071] = 1450, + [2072] = 1829, + [2073] = 1453, + [2074] = 1644, + [2075] = 1445, + [2076] = 1443, + [2077] = 1428, + [2078] = 1434, + [2079] = 1514, + [2080] = 1432, + [2081] = 871, + [2082] = 1464, + [2083] = 372, + [2084] = 1431, + [2085] = 1435, + [2086] = 1579, + [2087] = 1582, + [2088] = 1598, + [2089] = 1826, + [2090] = 1454, + [2091] = 1442, + [2092] = 1455, + [2093] = 1503, + [2094] = 1437, + [2095] = 1430, + [2096] = 1433, + [2097] = 1440, + [2098] = 373, + [2099] = 370, + [2100] = 1447, + [2101] = 1448, + [2102] = 1449, + [2103] = 1645, + [2104] = 372, + [2105] = 1450, + [2106] = 1451, + [2107] = 1453, + [2108] = 1829, + [2109] = 373, + [2110] = 1464, + [2111] = 1644, + [2112] = 1431, + [2113] = 1514, + [2114] = 1435, + [2115] = 2115, + [2116] = 1458, + [2117] = 2117, + [2118] = 1464, + [2119] = 1829, + [2120] = 1645, + [2121] = 1579, + [2122] = 1582, + [2123] = 2123, + [2124] = 1582, + [2125] = 1644, + [2126] = 1645, + [2127] = 1598, + [2128] = 1579, + [2129] = 1645, + [2130] = 1644, + [2131] = 1829, + [2132] = 1644, + [2133] = 1645, + [2134] = 1579, + [2135] = 1644, + [2136] = 1645, + [2137] = 1579, + [2138] = 1644, + [2139] = 1454, + [2140] = 1645, + [2141] = 1579, + [2142] = 977, + [2143] = 1579, + [2144] = 1582, + [2145] = 1453, + [2146] = 1644, + [2147] = 1451, + [2148] = 1645, + [2149] = 1829, + [2150] = 1450, + [2151] = 1449, + [2152] = 1448, + [2153] = 1447, + [2154] = 1644, + [2155] = 1579, + [2156] = 1645, + [2157] = 1579, + [2158] = 1582, + [2159] = 1442, + [2160] = 1455, + [2161] = 1644, + [2162] = 1645, + [2163] = 1432, + [2164] = 1645, + [2165] = 1579, + [2166] = 1644, + [2167] = 1440, + [2168] = 1433, + [2169] = 1430, + [2170] = 1829, + [2171] = 1503, + [2172] = 1644, + [2173] = 1437, + [2174] = 1645, + [2175] = 1582, + [2176] = 1579, + [2177] = 1644, + [2178] = 1645, + [2179] = 1514, + [2180] = 1579, + [2181] = 1458, + [2182] = 1514, + [2183] = 1582, + [2184] = 1582, + [2185] = 1579, + [2186] = 1645, + [2187] = 1644, + [2188] = 1829, + [2189] = 375, + [2190] = 371, + [2191] = 391, + [2192] = 385, + [2193] = 360, + [2194] = 389, + [2195] = 391, + [2196] = 850, [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, + [2198] = 450, + [2199] = 373, + [2200] = 381, + [2201] = 1103, + [2202] = 449, + [2203] = 385, + [2204] = 381, + [2205] = 1113, + [2206] = 1015, + [2207] = 391, + [2208] = 1143, + [2209] = 372, + [2210] = 443, + [2211] = 848, + [2212] = 850, + [2213] = 370, + [2214] = 377, + [2215] = 379, + [2216] = 848, + [2217] = 444, + [2218] = 1073, + [2219] = 1072, + [2220] = 385, + [2221] = 389, + [2222] = 391, + [2223] = 378, + [2224] = 385, + [2225] = 381, + [2226] = 374, + [2227] = 363, + [2228] = 389, + [2229] = 389, + [2230] = 381, + [2231] = 385, + [2232] = 391, + [2233] = 890, + [2234] = 444, + [2235] = 381, + [2236] = 368, + [2237] = 443, + [2238] = 369, + [2239] = 362, + [2240] = 894, + [2241] = 359, + [2242] = 361, + [2243] = 365, + [2244] = 449, + [2245] = 364, + [2246] = 389, + [2247] = 450, + [2248] = 442, + [2249] = 368, + [2250] = 362, + [2251] = 369, + [2252] = 371, + [2253] = 370, + [2254] = 375, + [2255] = 364, + [2256] = 406, + [2257] = 365, + [2258] = 381, + [2259] = 408, + [2260] = 408, + [2261] = 367, + [2262] = 361, + [2263] = 415, + [2264] = 414, + [2265] = 359, + [2266] = 373, + [2267] = 414, + [2268] = 415, + [2269] = 375, + [2270] = 364, + [2271] = 365, + [2272] = 361, + [2273] = 408, + [2274] = 377, + [2275] = 359, + [2276] = 362, + [2277] = 368, + [2278] = 389, + [2279] = 374, + [2280] = 378, + [2281] = 406, + [2282] = 414, + [2283] = 379, + [2284] = 385, + [2285] = 391, + [2286] = 425, + [2287] = 415, + [2288] = 414, + [2289] = 385, + [2290] = 374, + [2291] = 378, + [2292] = 379, + [2293] = 427, + [2294] = 363, + [2295] = 373, [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, + [2297] = 391, + [2298] = 381, + [2299] = 363, + [2300] = 360, + [2301] = 377, + [2302] = 428, + [2303] = 406, + [2304] = 372, + [2305] = 370, + [2306] = 389, + [2307] = 408, + [2308] = 848, + [2309] = 850, + [2310] = 369, + [2311] = 424, + [2312] = 415, + [2313] = 438, + [2314] = 406, + [2315] = 372, + [2316] = 415, + [2317] = 501, + [2318] = 415, + [2319] = 427, + [2320] = 488, + [2321] = 414, + [2322] = 480, + [2323] = 428, + [2324] = 479, + [2325] = 508, + [2326] = 512, + [2327] = 438, + [2328] = 1073, + [2329] = 438, + [2330] = 494, + [2331] = 424, + [2332] = 484, + [2333] = 408, + [2334] = 406, + [2335] = 1072, + [2336] = 850, + [2337] = 428, + [2338] = 506, + [2339] = 425, + [2340] = 503, + [2341] = 481, [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] = 372, + [2343] = 848, + [2344] = 501, + [2345] = 425, + [2346] = 427, + [2347] = 848, + [2348] = 850, + [2349] = 408, + [2350] = 424, + [2351] = 424, + [2352] = 483, + [2353] = 482, + [2354] = 497, + [2355] = 1143, + [2356] = 406, + [2357] = 414, + [2358] = 1015, + [2359] = 415, + [2360] = 425, + [2361] = 508, + [2362] = 414, + [2363] = 428, + [2364] = 512, + [2365] = 438, + [2366] = 438, + [2367] = 425, + [2368] = 428, + [2369] = 480, + [2370] = 479, + [2371] = 494, + [2372] = 484, + [2373] = 427, + [2374] = 427, + [2375] = 488, + [2376] = 408, + [2377] = 506, + [2378] = 424, + [2379] = 481, + [2380] = 503, + [2381] = 1103, + [2382] = 1113, + [2383] = 497, + [2384] = 406, + [2385] = 483, + [2386] = 425, + [2387] = 450, + [2388] = 385, + [2389] = 424, + [2390] = 450, + [2391] = 427, + [2392] = 428, + [2393] = 424, + [2394] = 449, + [2395] = 427, + [2396] = 391, + [2397] = 444, + [2398] = 444, + [2399] = 389, + [2400] = 381, + [2401] = 449, + [2402] = 438, + [2403] = 389, + [2404] = 385, + [2405] = 449, + [2406] = 425, + [2407] = 391, + [2408] = 444, + [2409] = 443, + [2410] = 442, + [2411] = 442, + [2412] = 438, + [2413] = 428, + [2414] = 450, + [2415] = 443, + [2416] = 442, + [2417] = 443, + [2418] = 381, + [2419] = 444, + [2420] = 414, + [2421] = 374, + [2422] = 427, + [2423] = 378, + [2424] = 428, + [2425] = 379, + [2426] = 360, + [2427] = 408, + [2428] = 450, + [2429] = 362, + [2430] = 359, + [2431] = 438, + [2432] = 427, + [2433] = 375, + [2434] = 415, + [2435] = 361, + [2436] = 425, + [2437] = 449, + [2438] = 442, + [2439] = 408, + [2440] = 364, + [2441] = 406, + [2442] = 368, + [2443] = 415, + [2444] = 443, + [2445] = 425, [2446] = 424, - [2447] = 433, - [2448] = 365, - [2449] = 377, - [2450] = 363, - [2451] = 410, - [2452] = 446, - [2453] = 440, - [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] = 386, - [2564] = 393, - [2565] = 377, - [2566] = 361, - [2567] = 482, - [2568] = 489, - [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] = 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] = 440, - [2692] = 489, - [2693] = 498, - [2694] = 490, - [2695] = 433, - [2696] = 482, + [2447] = 424, + [2448] = 450, + [2449] = 363, + [2450] = 365, + [2451] = 406, + [2452] = 414, + [2453] = 377, + [2454] = 369, + [2455] = 373, + [2456] = 372, + [2457] = 370, + [2458] = 371, + [2459] = 444, + [2460] = 449, + [2461] = 442, + [2462] = 443, + [2463] = 367, + [2464] = 428, + [2465] = 438, + [2466] = 372, + [2467] = 482, + [2468] = 450, + [2469] = 508, + [2470] = 449, + [2471] = 373, + [2472] = 512, + [2473] = 450, + [2474] = 450, + [2475] = 488, + [2476] = 444, + [2477] = 442, + [2478] = 363, + [2479] = 480, + [2480] = 379, + [2481] = 450, + [2482] = 479, + [2483] = 443, + [2484] = 369, + [2485] = 484, + [2486] = 506, + [2487] = 503, + [2488] = 481, + [2489] = 501, + [2490] = 443, + [2491] = 449, + [2492] = 378, + [2493] = 374, + [2494] = 494, + [2495] = 368, + [2496] = 362, + [2497] = 359, + [2498] = 483, + [2499] = 361, + [2500] = 365, + [2501] = 364, + [2502] = 497, + [2503] = 442, + [2504] = 449, + [2505] = 444, + [2506] = 375, + [2507] = 488, + [2508] = 371, + [2509] = 444, + [2510] = 443, + [2511] = 360, + [2512] = 497, + [2513] = 443, + [2514] = 482, + [2515] = 442, + [2516] = 483, + [2517] = 501, + [2518] = 481, + [2519] = 503, + [2520] = 442, + [2521] = 449, + [2522] = 444, + [2523] = 508, + [2524] = 512, + [2525] = 480, + [2526] = 370, + [2527] = 479, + [2528] = 377, + [2529] = 494, + [2530] = 506, + [2531] = 484, + [2532] = 391, + [2533] = 370, + [2534] = 372, + [2535] = 481, + [2536] = 506, + [2537] = 481, + [2538] = 379, + [2539] = 378, + [2540] = 374, + [2541] = 368, + [2542] = 508, + [2543] = 362, + [2544] = 359, + [2545] = 361, + [2546] = 385, + [2547] = 501, + [2548] = 483, + [2549] = 482, + [2550] = 497, + [2551] = 381, + [2552] = 365, + [2553] = 360, + [2554] = 389, + [2555] = 480, + [2556] = 364, + [2557] = 375, + [2558] = 503, + [2559] = 389, + [2560] = 488, + [2561] = 381, + [2562] = 508, + [2563] = 512, + [2564] = 480, + [2565] = 479, + [2566] = 389, + [2567] = 385, + [2568] = 508, + [2569] = 391, + [2570] = 494, + [2571] = 484, + [2572] = 506, + [2573] = 503, + [2574] = 481, + [2575] = 501, + [2576] = 385, + [2577] = 483, + [2578] = 482, + [2579] = 381, + [2580] = 497, + [2581] = 389, + [2582] = 373, + [2583] = 483, + [2584] = 391, + [2585] = 506, + [2586] = 484, + [2587] = 494, + [2588] = 479, + [2589] = 371, + [2590] = 488, + [2591] = 363, + [2592] = 480, + [2593] = 369, + [2594] = 512, + [2595] = 494, + [2596] = 377, + [2597] = 385, + [2598] = 391, + [2599] = 381, + [2600] = 481, + [2601] = 503, + [2602] = 408, + [2603] = 428, + [2604] = 427, + [2605] = 414, + [2606] = 415, + [2607] = 424, + [2608] = 497, + [2609] = 406, + [2610] = 479, + [2611] = 381, + [2612] = 428, + [2613] = 494, + [2614] = 497, + [2615] = 424, + [2616] = 381, + [2617] = 406, + [2618] = 488, + [2619] = 406, + [2620] = 415, + [2621] = 414, + [2622] = 428, + [2623] = 438, + [2624] = 408, + [2625] = 482, + [2626] = 415, + [2627] = 389, + [2628] = 425, + [2629] = 414, + [2630] = 427, + [2631] = 438, + [2632] = 512, + [2633] = 484, + [2634] = 506, + [2635] = 497, + [2636] = 424, + [2637] = 501, + [2638] = 428, + [2639] = 408, + [2640] = 425, + [2641] = 479, + [2642] = 480, + [2643] = 427, + [2644] = 385, + [2645] = 512, + [2646] = 389, + [2647] = 482, + [2648] = 483, + [2649] = 391, + [2650] = 484, + [2651] = 501, + [2652] = 481, + [2653] = 406, + [2654] = 503, + [2655] = 508, + [2656] = 438, + [2657] = 425, + [2658] = 415, + [2659] = 424, + [2660] = 425, + [2661] = 503, + [2662] = 438, + [2663] = 385, + [2664] = 501, + [2665] = 506, + [2666] = 484, + [2667] = 488, + [2668] = 512, + [2669] = 408, + [2670] = 427, + [2671] = 494, + [2672] = 488, + [2673] = 391, + [2674] = 480, + [2675] = 483, + [2676] = 482, + [2677] = 414, + [2678] = 508, + [2679] = 479, + [2680] = 512, + [2681] = 508, + [2682] = 506, + [2683] = 484, + [2684] = 427, + [2685] = 438, + [2686] = 415, + [2687] = 481, + [2688] = 450, + [2689] = 428, + [2690] = 442, + [2691] = 406, + [2692] = 503, + [2693] = 482, + [2694] = 483, + [2695] = 483, + [2696] = 506, [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, + [2698] = 408, + [2699] = 443, + [2700] = 508, + [2701] = 414, + [2702] = 424, + [2703] = 444, + [2704] = 449, + [2705] = 488, + [2706] = 497, + [2707] = 415, + [2708] = 494, + [2709] = 497, + [2710] = 480, + [2711] = 442, + [2712] = 450, + [2713] = 443, + [2714] = 414, + [2715] = 444, + [2716] = 438, + [2717] = 425, + [2718] = 484, + [2719] = 449, + [2720] = 428, + [2721] = 488, + [2722] = 479, + [2723] = 501, + [2724] = 408, + [2725] = 425, + [2726] = 494, + [2727] = 479, + [2728] = 501, + [2729] = 480, + [2730] = 424, + [2731] = 427, + [2732] = 512, + [2733] = 503, + [2734] = 481, + [2735] = 406, [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, + [2737] = 444, + [2738] = 757, + [2739] = 442, + [2740] = 777, + [2741] = 443, + [2742] = 450, + [2743] = 444, + [2744] = 775, + [2745] = 449, + [2746] = 775, + [2747] = 443, + [2748] = 770, [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] = 487, - [2782] = 502, - [2783] = 483, - [2784] = 513, - [2785] = 492, - [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, + [2750] = 450, + [2751] = 773, + [2752] = 770, + [2753] = 449, + [2754] = 443, + [2755] = 444, + [2756] = 449, + [2757] = 775, + [2758] = 807, + [2759] = 442, + [2760] = 444, + [2761] = 449, + [2762] = 442, + [2763] = 777, + [2764] = 450, + [2765] = 443, + [2766] = 450, + [2767] = 480, + [2768] = 506, + [2769] = 823, + [2770] = 484, + [2771] = 812, + [2772] = 770, + [2773] = 481, + [2774] = 501, + [2775] = 488, + [2776] = 483, + [2777] = 482, + [2778] = 814, + [2779] = 820, + [2780] = 497, + [2781] = 770, + [2782] = 818, + [2783] = 508, + [2784] = 497, + [2785] = 479, + [2786] = 512, + [2787] = 506, + [2788] = 815, + [2789] = 482, + [2790] = 483, + [2791] = 501, + [2792] = 481, + [2793] = 813, + [2794] = 488, + [2795] = 494, + [2796] = 503, + [2797] = 503, + [2798] = 480, + [2799] = 479, + [2800] = 773, + [2801] = 494, + [2802] = 824, + [2803] = 825, + [2804] = 821, + [2805] = 819, + [2806] = 817, + [2807] = 757, + [2808] = 484, + [2809] = 508, + [2810] = 512, + [2811] = 479, + [2812] = 483, + [2813] = 826, + [2814] = 497, + [2815] = 843, + [2816] = 512, + [2817] = 825, [2818] = 858, - [2819] = 845, - [2820] = 483, - [2821] = 861, - [2822] = 498, + [2819] = 807, + [2820] = 508, + [2821] = 494, + [2822] = 775, [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, + [2824] = 835, + [2825] = 488, + [2826] = 483, + [2827] = 813, + [2828] = 853, + [2829] = 480, + [2830] = 844, + [2831] = 824, + [2832] = 850, + [2833] = 831, + [2834] = 848, + [2835] = 840, + [2836] = 846, + [2837] = 832, + [2838] = 841, + [2839] = 837, + [2840] = 859, [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, + [2842] = 857, + [2843] = 854, + [2844] = 828, + [2845] = 501, + [2846] = 497, + [2847] = 481, + [2848] = 845, + [2849] = 480, + [2850] = 827, + [2851] = 836, + [2852] = 512, + [2853] = 833, + [2854] = 484, + [2855] = 821, + [2856] = 823, + [2857] = 777, + [2858] = 851, + [2859] = 817, + [2860] = 479, + [2861] = 852, + [2862] = 508, + [2863] = 506, + [2864] = 849, + [2865] = 855, + [2866] = 488, + [2867] = 856, + [2868] = 818, + [2869] = 823, + [2870] = 494, + [2871] = 482, + [2872] = 819, + [2873] = 839, + [2874] = 484, + [2875] = 501, + [2876] = 482, + [2877] = 506, + [2878] = 842, + [2879] = 503, + [2880] = 838, + [2881] = 884, + [2882] = 865, + [2883] = 479, + [2884] = 494, + [2885] = 497, + [2886] = 859, + [2887] = 864, + [2888] = 481, + [2889] = 480, + [2890] = 822, + [2891] = 814, + [2892] = 825, [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, + [2894] = 878, + [2895] = 822, + [2896] = 917, + [2897] = 867, + [2898] = 821, + [2899] = 814, + [2900] = 512, + [2901] = 839, + [2902] = 823, + [2903] = 870, + [2904] = 924, + [2905] = 484, + [2906] = 506, + [2907] = 851, + [2908] = 857, + [2909] = 854, + [2910] = 820, + [2911] = 819, + [2912] = 883, + [2913] = 817, + [2914] = 908, + [2915] = 488, + [2916] = 880, + [2917] = 812, + [2918] = 837, + [2919] = 903, + [2920] = 813, + [2921] = 885, + [2922] = 895, + [2923] = 503, + [2924] = 497, + [2925] = 843, + [2926] = 508, + [2927] = 872, + [2928] = 918, + [2929] = 482, + [2930] = 919, + [2931] = 482, + [2932] = 820, + [2933] = 835, + [2934] = 882, + [2935] = 503, + [2936] = 481, + [2937] = 905, + [2938] = 480, + [2939] = 846, + [2940] = 508, + [2941] = 483, + [2942] = 818, + [2943] = 479, + [2944] = 501, + [2945] = 812, + [2946] = 483, + [2947] = 512, + [2948] = 906, + [2949] = 907, + [2950] = 815, + [2951] = 845, + [2952] = 494, + [2953] = 922, + [2954] = 921, + [2955] = 910, + [2956] = 909, + [2957] = 871, + [2958] = 876, + [2959] = 920, + [2960] = 501, + [2961] = 894, + [2962] = 506, + [2963] = 890, + [2964] = 828, + [2965] = 824, + [2966] = 841, + [2967] = 484, + [2968] = 831, + [2969] = 879, + [2970] = 845, + [2971] = 940, + [2972] = 841, + [2973] = 831, + [2974] = 835, + [2975] = 843, + [2976] = 839, + [2977] = 947, + [2978] = 997, + [2979] = 927, + [2980] = 933, + [2981] = 998, + [2982] = 999, + [2983] = 1000, [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, + [2985] = 996, + [2986] = 857, + [2987] = 977, + [2988] = 1001, + [2989] = 833, + [2990] = 1013, + [2991] = 854, + [2992] = 974, + [2993] = 926, + [2994] = 975, + [2995] = 828, + [2996] = 837, + [2997] = 827, + [2998] = 852, + [2999] = 923, + [3000] = 981, + [3001] = 970, + [3002] = 971, + [3003] = 770, + [3004] = 968, + [3005] = 969, + [3006] = 849, + [3007] = 965, + [3008] = 858, + [3009] = 964, + [3010] = 838, + [3011] = 952, + [3012] = 840, + [3013] = 842, + [3014] = 832, + [3015] = 851, + [3016] = 942, + [3017] = 846, + [3018] = 931, + [3019] = 928, + [3020] = 840, + [3021] = 842, + [3022] = 938, + [3023] = 937, + [3024] = 832, + [3025] = 838, + [3026] = 3026, + [3027] = 932, + [3028] = 1003, + [3029] = 995, + [3030] = 1012, + [3031] = 849, + [3032] = 896, + [3033] = 958, + [3034] = 973, + [3035] = 935, + [3036] = 1006, + [3037] = 929, + [3038] = 852, + [3039] = 951, + [3040] = 941, + [3041] = 980, + [3042] = 858, + [3043] = 902, + [3044] = 844, + [3045] = 856, + [3046] = 770, + [3047] = 836, + [3048] = 961, + [3049] = 855, + [3050] = 959, + [3051] = 946, + [3052] = 773, + [3053] = 976, + [3054] = 977, + [3055] = 939, + [3056] = 757, + [3057] = 994, + [3058] = 954, + [3059] = 957, + [3060] = 882, + [3061] = 918, + [3062] = 863, + [3063] = 1038, + [3064] = 848, + [3065] = 1037, + [3066] = 1036, + [3067] = 1031, + [3068] = 850, + [3069] = 920, + [3070] = 807, + [3071] = 1027, + [3072] = 922, + [3073] = 1063, + [3074] = 1025, + [3075] = 1082, + [3076] = 884, + [3077] = 856, + [3078] = 879, + [3079] = 1054, + [3080] = 1024, + [3081] = 836, + [3082] = 855, + [3083] = 844, + [3084] = 826, + [3085] = 872, + [3086] = 1055, + [3087] = 1075, + [3088] = 865, + [3089] = 827, + [3090] = 1084, + [3091] = 880, + [3092] = 870, + [3093] = 1088, + [3094] = 883, + [3095] = 1023, + [3096] = 1091, + [3097] = 1093, + [3098] = 1094, + [3099] = 1054, + [3100] = 1095, + [3101] = 1022, + [3102] = 910, + [3103] = 1055, + [3104] = 1026, + [3105] = 878, + [3106] = 848, + [3107] = 924, + [3108] = 1020, + [3109] = 1019, + [3110] = 1096, + [3111] = 1097, + [3112] = 1017, + [3113] = 1098, + [3114] = 1016, + [3115] = 1099, + [3116] = 1041, + [3117] = 1043, + [3118] = 850, [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, + [3120] = 919, + [3121] = 1100, + [3122] = 864, + [3123] = 895, + [3124] = 867, + [3125] = 1047, + [3126] = 1101, + [3127] = 1102, + [3128] = 3128, + [3129] = 1117, + [3130] = 1048, + [3131] = 870, + [3132] = 890, + [3133] = 1105, + [3134] = 853, + [3135] = 878, + [3136] = 1106, + [3137] = 1122, + [3138] = 895, + [3139] = 1049, + [3140] = 1126, + [3141] = 825, + [3142] = 1108, + [3143] = 1136, + [3144] = 1137, + [3145] = 1029, + [3146] = 1125, + [3147] = 1143, + [3148] = 903, + [3149] = 1015, + [3150] = 894, [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, + [3152] = 889, + [3153] = 1113, + [3154] = 1109, + [3155] = 890, + [3156] = 1139, + [3157] = 1005, + [3158] = 1044, + [3159] = 1141, + [3160] = 1103, + [3161] = 1145, + [3162] = 1114, + [3163] = 885, + [3164] = 1042, + [3165] = 1033, + [3166] = 1030, + [3167] = 1021, + [3168] = 1018, + [3169] = 894, + [3170] = 1115, + [3171] = 850, + [3172] = 936, + [3173] = 1119, + [3174] = 908, + [3175] = 1112, + [3176] = 917, + [3177] = 923, + [3178] = 1120, + [3179] = 903, + [3180] = 1056, + [3181] = 868, + [3182] = 1058, + [3183] = 1123, + [3184] = 1148, + [3185] = 921, + [3186] = 978, + [3187] = 848, + [3188] = 1061, + [3189] = 850, + [3190] = 823, + [3191] = 1062, + [3192] = 1124, + [3193] = 1067, + [3194] = 1046, + [3195] = 1034, + [3196] = 1064, + [3197] = 871, + [3198] = 1065, + [3199] = 919, + [3200] = 1127, + [3201] = 1128, + [3202] = 1035, + [3203] = 853, + [3204] = 1039, + [3205] = 1028, + [3206] = 1068, + [3207] = 1069, + [3208] = 1131, + [3209] = 1073, + [3210] = 1132, + [3211] = 1133, + [3212] = 1014, + [3213] = 1071, + [3214] = 896, + [3215] = 1040, + [3216] = 1076, + [3217] = 1078, + [3218] = 1134, + [3219] = 1079, + [3220] = 1135, + [3221] = 1085, + [3222] = 1072, + [3223] = 1080, + [3224] = 1116, + [3225] = 1045, + [3226] = 848, + [3227] = 876, + [3228] = 1150, + [3229] = 905, + [3230] = 1138, + [3231] = 1140, + [3232] = 1081, + [3233] = 1142, + [3234] = 1050, + [3235] = 917, + [3236] = 918, + [3237] = 1144, + [3238] = 1083, + [3239] = 1146, + [3240] = 1147, + [3241] = 1151, + [3242] = 910, + [3243] = 1153, + [3244] = 1087, + [3245] = 1089, + [3246] = 1090, + [3247] = 906, + [3248] = 1152, + [3249] = 1157, + [3250] = 907, + [3251] = 1158, + [3252] = 1110, + [3253] = 1154, + [3254] = 1155, + [3255] = 902, + [3256] = 1156, + [3257] = 1174, + [3258] = 1173, + [3259] = 1178, + [3260] = 1162, + [3261] = 1163, + [3262] = 1149, + [3263] = 1051, + [3264] = 871, + [3265] = 833, + [3266] = 1170, + [3267] = 1052, + [3268] = 876, + [3269] = 1175, + [3270] = 1187, + [3271] = 1185, + [3272] = 908, + [3273] = 850, + [3274] = 848, + [3275] = 1012, + [3276] = 931, + [3277] = 817, + [3278] = 822, + [3279] = 819, + [3280] = 821, + [3281] = 363, + [3282] = 995, + [3283] = 1003, + [3284] = 936, + [3285] = 370, + [3286] = 372, + [3287] = 978, + [3288] = 994, + [3289] = 373, + [3290] = 1005, + [3291] = 813, + [3292] = 824, + [3293] = 974, + [3294] = 981, + [3295] = 939, + [3296] = 927, + [3297] = 365, + [3298] = 933, + [3299] = 817, + [3300] = 819, + [3301] = 947, + [3302] = 928, + [3303] = 937, + [3304] = 940, + [3305] = 812, + [3306] = 941, + [3307] = 820, + [3308] = 367, + [3309] = 821, + [3310] = 946, + [3311] = 813, + [3312] = 360, + [3313] = 824, + [3314] = 818, + [3315] = 1013, + [3316] = 954, + [3317] = 957, + [3318] = 1002, + [3319] = 958, + [3320] = 980, + [3321] = 825, + [3322] = 959, + [3323] = 961, + [3324] = 996, + [3325] = 997, + [3326] = 1006, + [3327] = 973, + [3328] = 814, + [3329] = 951, + [3330] = 823, + [3331] = 929, + [3332] = 935, + [3333] = 932, + [3334] = 369, + [3335] = 817, + [3336] = 819, + [3337] = 377, + [3338] = 1004, + [3339] = 1007, + [3340] = 821, + [3341] = 938, + [3342] = 942, + [3343] = 952, + [3344] = 378, + [3345] = 813, + [3346] = 824, + [3347] = 374, + [3348] = 368, + [3349] = 362, + [3350] = 359, + [3351] = 361, + [3352] = 364, + [3353] = 375, + [3354] = 964, [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, + [3356] = 965, + [3357] = 969, + [3358] = 971, + [3359] = 379, + [3360] = 970, + [3361] = 1001, + [3362] = 1000, + [3363] = 999, + [3364] = 977, + [3365] = 968, + [3366] = 998, + [3367] = 975, + [3368] = 926, + [3369] = 1103, + [3370] = 1072, + [3371] = 824, + [3372] = 1157, + [3373] = 868, + [3374] = 1158, + [3375] = 839, + [3376] = 1082, + [3377] = 1110, + [3378] = 1170, + [3379] = 879, + [3380] = 1039, + [3381] = 1153, + [3382] = 1105, + [3383] = 1106, + [3384] = 1149, + [3385] = 3385, + [3386] = 1162, + [3387] = 3387, + [3388] = 851, + [3389] = 1108, + [3390] = 1163, + [3391] = 818, + [3392] = 1055, + [3393] = 1023, + [3394] = 835, + [3395] = 831, + [3396] = 841, + [3397] = 837, + [3398] = 859, + [3399] = 896, + [3400] = 850, + [3401] = 857, + [3402] = 854, + [3403] = 1115, + [3404] = 848, + [3405] = 1175, + [3406] = 828, + [3407] = 1109, + [3408] = 827, + [3409] = 1140, + [3410] = 1044, + [3411] = 1112, + [3412] = 1013, + [3413] = 1046, + [3414] = 843, + [3415] = 848, + [3416] = 850, + [3417] = 1185, + [3418] = 1024, + [3419] = 872, + [3420] = 1025, + [3421] = 1026, + [3422] = 1187, + [3423] = 1147, + [3424] = 1027, + [3425] = 1178, + [3426] = 1114, + [3427] = 813, + [3428] = 1054, + [3429] = 1031, + [3430] = 1173, [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, + [3432] = 1125, + [3433] = 1156, + [3434] = 1052, + [3435] = 1051, + [3436] = 1036, + [3437] = 1155, + [3438] = 902, + [3439] = 1119, + [3440] = 1154, + [3441] = 1120, + [3442] = 839, + [3443] = 1037, + [3444] = 1038, + [3445] = 851, + [3446] = 1152, + [3447] = 1050, + [3448] = 1045, + [3449] = 974, + [3450] = 926, + [3451] = 975, + [3452] = 843, + [3453] = 1151, + [3454] = 1123, + [3455] = 3455, + [3456] = 844, + [3457] = 817, + [3458] = 846, + [3459] = 1040, + [3460] = 848, + [3461] = 821, + [3462] = 819, + [3463] = 845, + [3464] = 850, + [3465] = 1018, + [3466] = 1041, + [3467] = 1073, + [3468] = 1150, + [3469] = 3469, + [3470] = 1072, + [3471] = 1148, + [3472] = 842, + [3473] = 839, + [3474] = 850, + [3475] = 848, + [3476] = 1021, + [3477] = 838, + [3478] = 1033, + [3479] = 851, + [3480] = 843, + [3481] = 1043, + [3482] = 1145, + [3483] = 819, + [3484] = 1124, + [3485] = 846, + [3486] = 836, + [3487] = 845, + [3488] = 849, + [3489] = 973, + [3490] = 1042, + [3491] = 1006, + [3492] = 850, + [3493] = 848, + [3494] = 1028, + [3495] = 858, + [3496] = 852, + [3497] = 846, + [3498] = 817, + [3499] = 1141, + [3500] = 1035, + [3501] = 1146, + [3502] = 828, + [3503] = 1127, + [3504] = 821, + [3505] = 1139, + [3506] = 1143, + [3507] = 1047, + [3508] = 854, + [3509] = 857, + [3510] = 1048, + [3511] = 859, + [3512] = 1128, + [3513] = 1020, + [3514] = 837, + [3515] = 841, + [3516] = 1015, + [3517] = 831, + [3518] = 1049, + [3519] = 835, + [3520] = 1113, + [3521] = 1103, + [3522] = 1143, + [3523] = 1003, + [3524] = 995, + [3525] = 1015, + [3526] = 1137, + [3527] = 1174, + [3528] = 1053, + [3529] = 853, + [3530] = 840, + [3531] = 832, + [3532] = 1056, + [3533] = 1058, + [3534] = 1136, + [3535] = 1113, + [3536] = 1126, + [3537] = 1019, + [3538] = 1075, + [3539] = 1017, + [3540] = 1022, + [3541] = 832, + [3542] = 840, + [3543] = 1061, + [3544] = 923, + [3545] = 1073, + [3546] = 994, + [3547] = 813, + [3548] = 1131, + [3549] = 1122, + [3550] = 1117, + [3551] = 1132, + [3552] = 1062, + [3553] = 1063, [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, + [3555] = 1064, + [3556] = 1065, + [3557] = 1090, + [3558] = 858, + [3559] = 1084, + [3560] = 1089, + [3561] = 1067, + [3562] = 1087, + [3563] = 1088, + [3564] = 1091, + [3565] = 1054, + [3566] = 1034, + [3567] = 1133, + [3568] = 1134, + [3569] = 1055, + [3570] = 855, + [3571] = 1093, + [3572] = 856, + [3573] = 1135, + [3574] = 1030, + [3575] = 1068, + [3576] = 1085, + [3577] = 833, + [3578] = 1094, + [3579] = 1095, + [3580] = 1083, + [3581] = 1081, + [3582] = 1096, + [3583] = 1069, + [3584] = 1097, + [3585] = 1098, + [3586] = 1144, + [3587] = 1080, + [3588] = 1016, + [3589] = 1116, + [3590] = 848, + [3591] = 850, + [3592] = 1099, + [3593] = 1100, + [3594] = 1079, + [3595] = 1102, + [3596] = 1101, + [3597] = 1078, + [3598] = 1029, + [3599] = 1138, + [3600] = 1142, + [3601] = 1076, + [3602] = 1014, + [3603] = 1071, + [3604] = 917, + [3605] = 848, + [3606] = 936, + [3607] = 872, + [3608] = 879, + [3609] = 823, + [3610] = 821, + [3611] = 819, + [3612] = 817, + [3613] = 863, + [3614] = 864, + [3615] = 839, + [3616] = 840, + [3617] = 851, + [3618] = 832, + [3619] = 843, + [3620] = 906, + [3621] = 846, + [3622] = 880, + [3623] = 907, [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] = 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, + [3625] = 871, + [3626] = 825, + [3627] = 902, + [3628] = 885, + [3629] = 876, + [3630] = 876, + [3631] = 871, + [3632] = 850, + [3633] = 823, + [3634] = 903, + [3635] = 825, + [3636] = 1005, + [3637] = 824, + [3638] = 823, + [3639] = 845, + [3640] = 894, + [3641] = 910, + [3642] = 1054, + [3643] = 890, + [3644] = 882, + [3645] = 884, + [3646] = 896, + [3647] = 883, + [3648] = 812, + [3649] = 3649, + [3650] = 1055, + [3651] = 922, + [3652] = 919, + [3653] = 918, + [3654] = 920, + [3655] = 908, + [3656] = 3656, + [3657] = 813, + [3658] = 1002, + [3659] = 895, + [3660] = 878, + [3661] = 870, + [3662] = 919, + [3663] = 978, + [3664] = 868, + [3665] = 865, + [3666] = 918, + [3667] = 845, + [3668] = 921, + [3669] = 908, + [3670] = 828, + [3671] = 854, + [3672] = 867, + [3673] = 857, + [3674] = 909, + [3675] = 859, + [3676] = 858, + [3677] = 837, + [3678] = 903, + [3679] = 841, + [3680] = 846, + [3681] = 831, + [3682] = 835, + [3683] = 850, + [3684] = 923, + [3685] = 825, + [3686] = 1007, + [3687] = 848, + [3688] = 905, + [3689] = 917, + [3690] = 976, + [3691] = 820, + [3692] = 828, + [3693] = 977, + [3694] = 854, + [3695] = 857, + [3696] = 870, + [3697] = 878, + [3698] = 859, + [3699] = 895, + [3700] = 843, + [3701] = 924, + [3702] = 837, + [3703] = 841, + [3704] = 831, + [3705] = 835, + [3706] = 851, + [3707] = 1004, + [3708] = 889, + [3709] = 839, + [3710] = 852, + [3711] = 931, + [3712] = 959, + [3713] = 849, + [3714] = 965, + [3715] = 940, + [3716] = 894, + [3717] = 890, + [3718] = 858, + [3719] = 952, + [3720] = 942, + [3721] = 964, + [3722] = 839, + [3723] = 851, + [3724] = 969, + [3725] = 843, + [3726] = 1013, + [3727] = 938, + [3728] = 372, + [3729] = 370, + [3730] = 889, + [3731] = 846, + [3732] = 363, + [3733] = 871, + [3734] = 845, + [3735] = 947, + [3736] = 377, + [3737] = 379, + [3738] = 378, + [3739] = 367, + [3740] = 374, + [3741] = 910, + [3742] = 368, + [3743] = 362, + [3744] = 359, + [3745] = 361, + [3746] = 941, + [3747] = 365, + [3748] = 364, + [3749] = 375, + [3750] = 369, + [3751] = 876, + [3752] = 999, + [3753] = 978, + [3754] = 937, + [3755] = 928, + [3756] = 974, + [3757] = 926, + [3758] = 936, + [3759] = 975, + [3760] = 863, + [3761] = 968, + [3762] = 939, + [3763] = 838, + [3764] = 971, + [3765] = 919, + [3766] = 961, + [3767] = 918, + [3768] = 908, + [3769] = 903, + [3770] = 929, + [3771] = 895, + [3772] = 840, + [3773] = 878, + [3774] = 870, + [3775] = 1001, + [3776] = 905, + [3777] = 373, + [3778] = 1005, + [3779] = 973, + [3780] = 1006, + [3781] = 980, + [3782] = 1002, + [3783] = 842, + [3784] = 1000, + [3785] = 832, + [3786] = 932, + [3787] = 840, + [3788] = 360, + [3789] = 1003, + [3790] = 995, + [3791] = 3791, + [3792] = 998, + [3793] = 997, + [3794] = 996, + [3795] = 1012, + [3796] = 994, + [3797] = 970, + [3798] = 890, + [3799] = 858, + [3800] = 1004, + [3801] = 1007, + [3802] = 832, + [3803] = 840, + [3804] = 976, + [3805] = 894, + [3806] = 977, + [3807] = 935, + [3808] = 981, + [3809] = 3809, + [3810] = 828, + [3811] = 854, + [3812] = 857, + [3813] = 832, + [3814] = 859, + [3815] = 837, + [3816] = 858, + [3817] = 954, + [3818] = 946, + [3819] = 957, + [3820] = 951, + [3821] = 958, + [3822] = 841, + [3823] = 831, + [3824] = 835, + [3825] = 977, + [3826] = 927, + [3827] = 933, + [3828] = 1096, + [3829] = 1106, + [3830] = 1133, + [3831] = 1014, + [3832] = 1075, + [3833] = 1081, + [3834] = 1069, + [3835] = 1088, + [3836] = 1091, + [3837] = 1093, + [3838] = 1116, + [3839] = 1068, + [3840] = 1094, + [3841] = 1127, + [3842] = 1095, + [3843] = 1128, + [3844] = 1067, + [3845] = 1158, + [3846] = 1140, + [3847] = 1065, + [3848] = 1064, + [3849] = 1097, + [3850] = 1098, + [3851] = 1063, + [3852] = 1131, + [3853] = 1084, + [3854] = 871, + [3855] = 1035, + [3856] = 1039, + [3857] = 1099, + [3858] = 1110, + [3859] = 377, + [3860] = 1100, + [3861] = 369, + [3862] = 1087, + [3863] = 1062, + [3864] = 1061, + [3865] = 1058, + [3866] = 1028, + [3867] = 1138, + [3868] = 1056, + [3869] = 1053, + [3870] = 1055, + [3871] = 1101, + [3872] = 1080, + [3873] = 1132, + [3874] = 1120, + [3875] = 1049, + [3876] = 1048, + [3877] = 1102, + [3878] = 1047, + [3879] = 1043, + [3880] = 1021, + [3881] = 1124, + [3882] = 1117, + [3883] = 1089, + [3884] = 1041, + [3885] = 1090, + [3886] = 1122, + [3887] = 1046, + [3888] = 1126, + [3889] = 1136, + [3890] = 1016, + [3891] = 876, + [3892] = 876, + [3893] = 1108, + [3894] = 360, + [3895] = 1119, + [3896] = 1142, + [3897] = 910, + [3898] = 1040, + [3899] = 1045, + [3900] = 1137, + [3901] = 1144, + [3902] = 1123, + [3903] = 1153, + [3904] = 1018, + [3905] = 1146, + [3906] = 1050, + [3907] = 977, + [3908] = 871, + [3909] = 976, + [3910] = 1147, + [3911] = 876, + [3912] = 871, + [3913] = 1114, + [3914] = 375, + [3915] = 1042, + [3916] = 977, + [3917] = 1023, + [3918] = 1143, + [3919] = 364, + [3920] = 3920, + [3921] = 1109, + [3922] = 1015, + [3923] = 1113, + [3924] = 1051, + [3925] = 1103, + [3926] = 1052, + [3927] = 908, + [3928] = 365, + [3929] = 361, + [3930] = 359, + [3931] = 362, + [3932] = 910, + [3933] = 970, [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] = 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, + [3935] = 374, + [3936] = 378, + [3937] = 903, + [3938] = 379, + [3939] = 1079, + [3940] = 1044, + [3941] = 1029, + [3942] = 1139, + [3943] = 1141, + [3944] = 1054, + [3945] = 895, + [3946] = 1170, + [3947] = 870, + [3948] = 3948, + [3949] = 878, + [3950] = 1078, + [3951] = 878, + [3952] = 1017, + [3953] = 1038, + [3954] = 1037, + [3955] = 895, + [3956] = 1036, + [3957] = 1031, + [3958] = 1112, + [3959] = 1019, + [3960] = 1115, + [3961] = 1054, + [3962] = 981, + [3963] = 1156, + [3964] = 1076, + [3965] = 872, + [3966] = 879, + [3967] = 1162, + [3968] = 1055, + [3969] = 1027, + [3970] = 903, + [3971] = 835, + [3972] = 918, + [3973] = 831, + [3974] = 841, + [3975] = 837, + [3976] = 1163, + [3977] = 1026, + [3978] = 859, + [3979] = 850, + [3980] = 857, + [3981] = 854, + [3982] = 1155, + [3983] = 1174, + [3984] = 1025, + [3985] = 1024, + [3986] = 828, + [3987] = 1082, + [3988] = 848, + [3989] = 1175, + [3990] = 919, + [3991] = 908, + [3992] = 1145, + [3993] = 1030, + [3994] = 1018, + [3995] = 1020, + [3996] = 1085, + [3997] = 1185, + [3998] = 890, + [3999] = 919, + [4000] = 1148, + [4001] = 918, + [4002] = 1021, + [4003] = 1071, + [4004] = 1033, + [4005] = 1187, + [4006] = 1150, + [4007] = 1125, + [4008] = 4008, + [4009] = 1173, + [4010] = 1083, + [4011] = 918, + [4012] = 1046, + [4013] = 1157, + [4014] = 1151, + [4015] = 1134, + [4016] = 894, + [4017] = 4017, + [4018] = 4018, + [4019] = 1042, + [4020] = 919, + [4021] = 1034, + [4022] = 1149, + [4023] = 1135, + [4024] = 1022, + [4025] = 908, + [4026] = 1105, + [4027] = 910, + [4028] = 850, + [4029] = 1178, + [4030] = 848, + [4031] = 1033, + [4032] = 1152, + [4033] = 870, + [4034] = 878, + [4035] = 895, + [4036] = 1072, + [4037] = 1073, + [4038] = 363, + [4039] = 370, + [4040] = 372, + [4041] = 870, + [4042] = 903, + [4043] = 373, + [4044] = 1154, + [4045] = 848, + [4046] = 819, + [4047] = 850, + [4048] = 848, + [4049] = 824, + [4050] = 1072, + [4051] = 1073, + [4052] = 363, + [4053] = 377, + [4054] = 379, + [4055] = 890, + [4056] = 378, + [4057] = 1073, + [4058] = 813, + [4059] = 890, + [4060] = 894, + [4061] = 894, + [4062] = 374, + [4063] = 824, + [4064] = 813, + [4065] = 821, + [4066] = 368, + [4067] = 848, + [4068] = 850, + [4069] = 1072, + [4070] = 370, + [4071] = 369, + [4072] = 850, + [4073] = 362, + [4074] = 359, + [4075] = 1143, + [4076] = 1143, + [4077] = 1015, + [4078] = 1113, + [4079] = 1103, + [4080] = 360, + [4081] = 361, + [4082] = 821, + [4083] = 365, + [4084] = 364, + [4085] = 375, + [4086] = 373, + [4087] = 817, + [4088] = 372, + [4089] = 1103, + [4090] = 1113, + [4091] = 817, + [4092] = 1015, + [4093] = 905, + [4094] = 848, + [4095] = 819, + [4096] = 850, + [4097] = 361, + [4098] = 858, + [4099] = 363, + [4100] = 848, + [4101] = 817, + [4102] = 850, + [4103] = 819, + [4104] = 981, + [4105] = 378, + [4106] = 824, + [4107] = 845, + [4108] = 850, + [4109] = 821, + [4110] = 846, + [4111] = 970, + [4112] = 843, + [4113] = 848, + [4114] = 851, + [4115] = 845, + [4116] = 370, + [4117] = 839, + [4118] = 373, + [4119] = 839, + [4120] = 368, + [4121] = 362, + [4122] = 846, + [4123] = 359, + [4124] = 851, + [4125] = 360, + [4126] = 372, + [4127] = 977, + [4128] = 375, + [4129] = 843, + [4130] = 1072, + [4131] = 1073, + [4132] = 367, + [4133] = 377, + [4134] = 1103, + [4135] = 832, + [4136] = 840, + [4137] = 374, + [4138] = 848, + [4139] = 379, + [4140] = 369, + [4141] = 850, + [4142] = 1113, + [4143] = 1015, + [4144] = 1143, + [4145] = 365, + [4146] = 813, + [4147] = 364, + [4148] = 857, + [4149] = 859, + [4150] = 1103, + [4151] = 846, + [4152] = 837, + [4153] = 1072, + [4154] = 854, + [4155] = 835, + [4156] = 841, + [4157] = 831, + [4158] = 848, + [4159] = 850, + [4160] = 835, + [4161] = 828, + [4162] = 1073, + [4163] = 1072, + [4164] = 910, + [4165] = 871, + [4166] = 876, + [4167] = 1143, + [4168] = 1143, + [4169] = 850, + [4170] = 831, + [4171] = 843, + [4172] = 1015, + [4173] = 1113, + [4174] = 1103, + [4175] = 858, + [4176] = 841, + [4177] = 848, + [4178] = 1015, + [4179] = 840, + [4180] = 870, + [4181] = 878, + [4182] = 895, + [4183] = 828, + [4184] = 837, + [4185] = 832, + [4186] = 845, + [4187] = 859, + [4188] = 903, + [4189] = 908, + [4190] = 4190, + [4191] = 857, + [4192] = 854, + [4193] = 851, + [4194] = 918, + [4195] = 919, + [4196] = 1073, + [4197] = 1113, + [4198] = 839, + [4199] = 831, + [4200] = 895, + [4201] = 859, + [4202] = 876, + [4203] = 871, + [4204] = 919, + [4205] = 857, + [4206] = 841, + [4207] = 854, + [4208] = 918, + [4209] = 910, + [4210] = 828, + [4211] = 977, + [4212] = 832, + [4213] = 835, + [4214] = 894, + [4215] = 890, + [4216] = 870, + [4217] = 858, + [4218] = 903, + [4219] = 840, + [4220] = 878, + [4221] = 905, + [4222] = 976, + [4223] = 908, + [4224] = 837, + [4225] = 377, + [4226] = 363, + [4227] = 362, + [4228] = 870, + [4229] = 919, + [4230] = 878, + [4231] = 910, + [4232] = 370, + [4233] = 976, + [4234] = 374, + [4235] = 970, + [4236] = 378, + [4237] = 365, + [4238] = 364, + [4239] = 372, + [4240] = 375, + [4241] = 895, + [4242] = 908, + [4243] = 367, [4244] = 379, - [4245] = 911, - [4246] = 366, - [4247] = 364, - [4248] = 921, - [4249] = 372, + [4245] = 890, + [4246] = 977, + [4247] = 369, + [4248] = 981, + [4249] = 918, [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, + [4251] = 977, + [4252] = 871, + [4253] = 894, + [4254] = 903, + [4255] = 360, + [4256] = 373, + [4257] = 361, + [4258] = 876, + [4259] = 368, + [4260] = 369, + [4261] = 1073, + [4262] = 362, + [4263] = 890, + [4264] = 368, + [4265] = 373, + [4266] = 372, + [4267] = 1113, + [4268] = 374, + [4269] = 378, + [4270] = 377, + [4271] = 359, + [4272] = 1103, + [4273] = 361, + [4274] = 363, + [4275] = 365, + [4276] = 379, + [4277] = 1072, + [4278] = 364, + [4279] = 360, + [4280] = 375, + [4281] = 1015, + [4282] = 1143, + [4283] = 370, + [4284] = 894, + [4285] = 1073, + [4286] = 1143, + [4287] = 370, + [4288] = 372, + [4289] = 369, + [4290] = 1113, + [4291] = 374, + [4292] = 378, + [4293] = 379, + [4294] = 377, + [4295] = 363, + [4296] = 373, + [4297] = 1103, + [4298] = 1072, + [4299] = 1015, + [4300] = 362, + [4301] = 360, [4302] = 359, - [4303] = 370, - [4304] = 378, - [4305] = 379, - [4306] = 376, - [4307] = 369, + [4303] = 361, + [4304] = 365, + [4305] = 364, + [4306] = 375, + [4307] = 368, [4308] = 4308, - [4309] = 4308, + [4309] = 1103, [4310] = 4308, - [4311] = 1058, - [4312] = 4312, - [4313] = 4308, + [4311] = 4311, + [4312] = 4308, + [4313] = 4311, [4314] = 4308, - [4315] = 1028, - [4316] = 4308, - [4317] = 1034, - [4318] = 1035, - [4319] = 1040, - [4320] = 4312, - [4321] = 4312, - [4322] = 1051, - [4323] = 4312, - [4324] = 4312, - [4325] = 4312, + [4315] = 4308, + [4316] = 1113, + [4317] = 4311, + [4318] = 1143, + [4319] = 4311, + [4320] = 1015, + [4321] = 1073, + [4322] = 4311, + [4323] = 4311, + [4324] = 1072, + [4325] = 4308, [4326] = 4326, - [4327] = 4326, + [4327] = 4327, [4328] = 4328, - [4329] = 4329, + [4329] = 4326, [4330] = 4330, [4331] = 4331, [4332] = 4332, - [4333] = 4333, + [4333] = 4327, [4334] = 4334, - [4335] = 4328, - [4336] = 4326, - [4337] = 4337, - [4338] = 4330, - [4339] = 4330, - [4340] = 4328, + [4335] = 4335, + [4336] = 775, + [4337] = 4335, + [4338] = 4327, + [4339] = 777, + [4340] = 4335, [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, + [4342] = 4326, + [4343] = 4335, + [4344] = 4344, + [4345] = 4334, + [4346] = 4332, + [4347] = 4326, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 4351, + [4352] = 4335, + [4353] = 4344, + [4354] = 4354, + [4355] = 4327, + [4356] = 4356, + [4357] = 4334, + [4358] = 4344, + [4359] = 4359, + [4360] = 4360, [4361] = 4361, - [4362] = 4330, - [4363] = 4329, + [4362] = 4327, + [4363] = 4363, [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, + [4365] = 4344, + [4366] = 4332, + [4367] = 4326, + [4368] = 4368, + [4369] = 4326, + [4370] = 4334, + [4371] = 4332, + [4372] = 4335, + [4373] = 4332, + [4374] = 4335, + [4375] = 4332, + [4376] = 4326, + [4377] = 4326, + [4378] = 4344, + [4379] = 4344, + [4380] = 4334, + [4381] = 4327, + [4382] = 4382, [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, + [4384] = 4335, + [4385] = 4344, + [4386] = 4327, + [4387] = 4334, + [4388] = 4327, + [4389] = 4344, + [4390] = 4327, + [4391] = 4332, + [4392] = 4344, + [4393] = 4334, + [4394] = 4334, + [4395] = 4334, + [4396] = 4332, + [4397] = 4326, + [4398] = 4335, [4399] = 4399, [4400] = 4400, [4401] = 4399, [4402] = 4402, - [4403] = 4403, - [4404] = 4402, + [4403] = 4400, + [4404] = 4400, [4405] = 4405, - [4406] = 4400, - [4407] = 4405, + [4406] = 4402, + [4407] = 4400, [4408] = 4408, - [4409] = 4399, - [4410] = 4405, - [4411] = 4400, - [4412] = 4412, - [4413] = 4400, + [4409] = 4408, + [4410] = 4399, + [4411] = 4408, + [4412] = 4400, + [4413] = 4405, [4414] = 4414, - [4415] = 4405, - [4416] = 4414, - [4417] = 4402, - [4418] = 4399, - [4419] = 4403, - [4420] = 4405, - [4421] = 4399, - [4422] = 4400, - [4423] = 4399, - [4424] = 4400, - [4425] = 4412, + [4415] = 4402, + [4416] = 4400, + [4417] = 4405, + [4418] = 4402, + [4419] = 4414, + [4420] = 4399, + [4421] = 4400, + [4422] = 4399, + [4423] = 4402, + [4424] = 4414, + [4425] = 4400, [4426] = 4399, - [4427] = 4405, - [4428] = 4405, - [4429] = 4400, - [4430] = 4405, - [4431] = 4399, + [4427] = 4408, + [4428] = 4428, + [4429] = 4399, + [4430] = 4402, + [4431] = 4405, [4432] = 4400, - [4433] = 4405, - [4434] = 4402, - [4435] = 4400, - [4436] = 4399, + [4433] = 4399, + [4434] = 4399, + [4435] = 4399, + [4436] = 4402, [4437] = 4400, - [4438] = 4399, + [4438] = 4428, [4439] = 4405, - [4440] = 4400, - [4441] = 4399, - [4442] = 4400, - [4443] = 4414, - [4444] = 4399, - [4445] = 4405, - [4446] = 4399, - [4447] = 4412, - [4448] = 4412, - [4449] = 4399, + [4440] = 4402, + [4441] = 4405, + [4442] = 4399, + [4443] = 4405, + [4444] = 4414, + [4445] = 4399, + [4446] = 4446, + [4447] = 4402, + [4448] = 4402, + [4449] = 4428, [4450] = 4399, [4451] = 4400, - [4452] = 4405, - [4453] = 4403, - [4454] = 4403, - [4455] = 4414, - [4456] = 4400, + [4452] = 4402, + [4453] = 4408, + [4454] = 4454, + [4455] = 4405, + [4456] = 4402, [4457] = 4402, [4458] = 4399, [4459] = 4400, - [4460] = 4402, - [4461] = 4405, - [4462] = 4402, + [4460] = 4428, + [4461] = 4400, + [4462] = 4405, [4463] = 4402, - [4464] = 4405, + [4464] = 4428, [4465] = 4405, [4466] = 4402, - [4467] = 4412, - [4468] = 4414, - [4469] = 4399, - [4470] = 4402, - [4471] = 4402, - [4472] = 4412, + [4467] = 4399, + [4468] = 4468, + [4469] = 4402, + [4470] = 4399, + [4471] = 4400, + [4472] = 4408, [4473] = 4399, - [4474] = 4400, - [4475] = 4400, - [4476] = 4414, - [4477] = 4400, - [4478] = 4412, - [4479] = 4399, + [4474] = 4405, + [4475] = 4405, + [4476] = 4400, + [4477] = 4405, + [4478] = 4402, + [4479] = 4400, [4480] = 4405, - [4481] = 4400, - [4482] = 4482, + [4481] = 4405, + [4482] = 4402, [4483] = 4399, - [4484] = 4402, - [4485] = 4405, - [4486] = 4400, - [4487] = 4399, + [4484] = 4399, + [4485] = 4400, + [4486] = 4405, + [4487] = 4400, [4488] = 4405, - [4489] = 4402, - [4490] = 4402, + [4489] = 4408, + [4490] = 4400, [4491] = 4405, - [4492] = 4405, - [4493] = 4400, - [4494] = 4399, - [4495] = 4400, - [4496] = 4412, - [4497] = 4399, - [4498] = 4405, - [4499] = 4399, + [4492] = 4408, + [4493] = 4405, + [4494] = 4400, + [4495] = 4402, + [4496] = 4400, + [4497] = 4405, + [4498] = 4408, + [4499] = 4402, [4500] = 4400, - [4501] = 4405, - [4502] = 4402, - [4503] = 4402, + [4501] = 4399, + [4502] = 4399, + [4503] = 4428, [4504] = 4400, - [4505] = 4399, - [4506] = 4400, + [4505] = 4405, + [4506] = 4402, [4507] = 4400, - [4508] = 4402, - [4509] = 4405, - [4510] = 4399, + [4508] = 4399, + [4509] = 4402, + [4510] = 4405, [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, + [4512] = 4405, + [4513] = 4399, + [4514] = 4402, + [4515] = 4400, + [4516] = 4402, + [4517] = 4517, + [4518] = 4414, + [4519] = 4402, + [4520] = 4400, + [4521] = 4405, + [4522] = 4405, + [4523] = 4400, + [4524] = 4405, + [4525] = 4402, + [4526] = 4399, + [4527] = 4402, + [4528] = 773, + [4529] = 770, + [4530] = 770, + [4531] = 757, + [4532] = 807, + [4533] = 814, + [4534] = 812, + [4535] = 818, + [4536] = 825, + [4537] = 819, + [4538] = 817, + [4539] = 821, + [4540] = 823, + [4541] = 815, + [4542] = 823, + [4543] = 825, + [4544] = 820, + [4545] = 813, + [4546] = 824, + [4547] = 818, + [4548] = 838, + [4549] = 840, + [4550] = 851, + [4551] = 843, + [4552] = 770, + [4553] = 846, + [4554] = 842, + [4555] = 827, + [4556] = 845, + [4557] = 828, + [4558] = 856, + [4559] = 849, + [4560] = 770, + [4561] = 833, + [4562] = 852, + [4563] = 835, + [4564] = 855, + [4565] = 844, [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, + [4567] = 858, + [4568] = 831, + [4569] = 839, + [4570] = 757, + [4571] = 820, + [4572] = 836, + [4573] = 832, + [4574] = 859, + [4575] = 837, + [4576] = 841, + [4577] = 854, + [4578] = 814, + [4579] = 812, + [4580] = 857, + [4581] = 919, + [4582] = 924, + [4583] = 882, [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] = 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, + [4585] = 920, + [4586] = 871, + [4587] = 879, + [4588] = 921, + [4589] = 853, + [4590] = 880, + [4591] = 883, + [4592] = 876, + [4593] = 849, + [4594] = 922, + [4595] = 890, + [4596] = 906, + [4597] = 909, + [4598] = 907, + [4599] = 852, + [4600] = 870, + [4601] = 872, + [4602] = 878, + [4603] = 838, + [4604] = 894, + [4605] = 895, + [4606] = 917, + [4607] = 864, + [4608] = 903, + [4609] = 867, + [4610] = 885, + [4611] = 908, + [4612] = 807, + [4613] = 842, + [4614] = 910, + [4615] = 918, + [4616] = 865, + [4617] = 884, + [4618] = 823, + [4619] = 825, + [4620] = 817, + [4621] = 844, + [4622] = 935, + [4623] = 813, + [4624] = 814, + [4625] = 917, + [4626] = 964, + [4627] = 821, + [4628] = 856, + [4629] = 933, + [4630] = 954, + [4631] = 896, + [4632] = 819, + [4633] = 951, + [4634] = 931, + [4635] = 971, + [4636] = 927, + [4637] = 957, + [4638] = 958, + [4639] = 815, + [4640] = 928, + [4641] = 929, + [4642] = 959, + [4643] = 970, + [4644] = 824, + [4645] = 961, + [4646] = 994, + [4647] = 819, + [4648] = 1003, + [4649] = 824, + [4650] = 827, + [4651] = 1013, + [4652] = 973, + [4653] = 995, + [4654] = 812, + [4655] = 980, + [4656] = 820, + [4657] = 1006, + [4658] = 817, + [4659] = 923, + [4660] = 932, + [4661] = 836, + [4662] = 946, + [4663] = 902, + [4664] = 819, + [4665] = 996, + [4666] = 853, + [4667] = 817, + [4668] = 947, + [4669] = 833, + [4670] = 965, + [4671] = 813, + [4672] = 997, + [4673] = 998, + [4674] = 975, + [4675] = 821, + [4676] = 968, + [4677] = 952, + [4678] = 926, + [4679] = 818, + [4680] = 999, + [4681] = 1001, + [4682] = 938, + [4683] = 974, + [4684] = 821, + [4685] = 941, + [4686] = 940, + [4687] = 1012, + [4688] = 969, + [4689] = 824, + [4690] = 942, + [4691] = 813, + [4692] = 939, + [4693] = 977, + [4694] = 1000, + [4695] = 981, + [4696] = 937, + [4697] = 855, + [4698] = 1138, + [4699] = 1140, + [4700] = 1019, + [4701] = 837, + [4702] = 1045, + [4703] = 859, + [4704] = 1050, + [4705] = 857, + [4706] = 854, + [4707] = 1051, + [4708] = 1052, + [4709] = 824, + [4710] = 845, + [4711] = 1020, + [4712] = 846, + [4713] = 821, + [4714] = 1156, + [4715] = 828, + [4716] = 852, + [4717] = 856, + [4718] = 855, + [4719] = 1047, + [4720] = 1125, + [4721] = 1022, + [4722] = 836, + [4723] = 1048, + [4724] = 1033, + [4725] = 833, + [4726] = 1143, + [4727] = 1015, + [4728] = 844, + [4729] = 1023, + [4730] = 1110, + [4731] = 839, + [4732] = 1162, + [4733] = 1049, + [4734] = 1113, + [4735] = 1158, + [4736] = 1053, + [4737] = 1163, + [4738] = 1103, + [4739] = 1157, + [4740] = 843, + [4741] = 840, + [4742] = 832, + [4743] = 851, + [4744] = 1046, + [4745] = 1024, + [4746] = 1056, + [4747] = 1170, + [4748] = 1016, + [4749] = 1105, + [4750] = 819, + [4751] = 1155, + [4752] = 1185, + [4753] = 1058, + [4754] = 1061, + [4755] = 1154, + [4756] = 1005, + [4757] = 1062, + [4758] = 1063, + [4759] = 839, + [4760] = 936, + [4761] = 978, + [4762] = 1079, + [4763] = 1064, + [4764] = 1084, + [4765] = 1065, + [4766] = 831, + [4767] = 1067, + [4768] = 1116, + [4769] = 1068, + [4770] = 1029, + [4771] = 1025, + [4772] = 1069, + [4773] = 1014, + [4774] = 849, + [4775] = 1071, + [4776] = 1153, + [4777] = 853, + [4778] = 1152, + [4779] = 1147, + [4780] = 1146, + [4781] = 851, + [4782] = 1021, + [4783] = 1106, + [4784] = 1144, + [4785] = 835, + [4786] = 1076, + [4787] = 1028, + [4788] = 1039, + [4789] = 1035, + [4790] = 1108, + [4791] = 1078, + [4792] = 1142, + [4793] = 838, + [4794] = 828, + [4795] = 1088, + [4796] = 1017, + [4797] = 1151, + [4798] = 1135, + [4799] = 1109, + [4800] = 1044, + [4801] = 848, + [4802] = 1150, + [4803] = 1134, + [4804] = 850, + [4805] = 1075, + [4806] = 1114, + [4807] = 1174, + [4808] = 845, + [4809] = 843, + [4810] = 1148, + [4811] = 854, + [4812] = 842, + [4813] = 857, + [4814] = 1145, + [4815] = 1055, + [4816] = 1080, + [4817] = 1141, + [4818] = 1096, + [4819] = 1133, + [4820] = 859, + [4821] = 837, + [4822] = 1132, + [4823] = 1139, + [4824] = 1112, + [4825] = 841, + [4826] = 1026, + [4827] = 831, + [4828] = 846, + [4829] = 1027, + [4830] = 848, + [4831] = 850, + [4832] = 1131, + [4833] = 1137, + [4834] = 1175, + [4835] = 1136, + [4836] = 1126, + [4837] = 1122, + [4838] = 1072, + [4839] = 1073, + [4840] = 1054, + [4841] = 1128, + [4842] = 1127, + [4843] = 1054, + [4844] = 1031, + [4845] = 1117, + [4846] = 846, + [4847] = 1030, + [4848] = 1036, + [4849] = 1037, + [4850] = 1034, + [4851] = 1149, + [4852] = 1042, + [4853] = 1038, + [4854] = 1102, + [4855] = 1040, + [4856] = 1055, [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] = 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, + [4858] = 1101, + [4859] = 1187, + [4860] = 841, + [4861] = 1124, + [4862] = 1100, + [4863] = 1041, + [4864] = 813, + [4865] = 817, + [4866] = 1178, + [4867] = 1090, + [4868] = 1099, + [4869] = 1098, + [4870] = 1089, + [4871] = 1087, + [4872] = 1123, + [4873] = 845, + [4874] = 1097, + [4875] = 1173, + [4876] = 1095, + [4877] = 827, + [4878] = 839, + [4879] = 1115, + [4880] = 1120, + [4881] = 1085, + [4882] = 851, + [4883] = 835, + [4884] = 1083, + [4885] = 1043, + [4886] = 1018, + [4887] = 1094, + [4888] = 843, + [4889] = 1082, + [4890] = 1081, + [4891] = 1093, + [4892] = 1119, + [4893] = 1091, + [4894] = 872, + [4895] = 851, + [4896] = 885, + [4897] = 867, + [4898] = 813, + [4899] = 917, + [4900] = 879, + [4901] = 894, + [4902] = 828, + [4903] = 883, + [4904] = 922, + [4905] = 890, + [4906] = 859, + [4907] = 837, + [4908] = 858, + [4909] = 907, + [4910] = 870, + [4911] = 905, + [4912] = 977, + [4913] = 878, + [4914] = 846, + [4915] = 819, + [4916] = 859, + [4917] = 920, + [4918] = 895, + [4919] = 839, + [4920] = 976, + [4921] = 854, + [4922] = 906, + [4923] = 857, + [4924] = 921, + [4925] = 910, + [4926] = 837, + [4927] = 903, + [4928] = 1013, + [4929] = 871, + [4930] = 876, + [4931] = 884, + [4932] = 824, + [4933] = 835, + [4934] = 974, + [4935] = 926, + [4936] = 975, + [4937] = 882, + [4938] = 973, + [4939] = 854, + [4940] = 1006, + [4941] = 908, + [4942] = 828, + [4943] = 845, + [4944] = 905, + [4945] = 1003, + [4946] = 880, + [4947] = 857, + [4948] = 995, + [4949] = 994, + [4950] = 843, + [4951] = 924, + [4952] = 831, + [4953] = 817, + [4954] = 909, + [4955] = 841, + [4956] = 841, + [4957] = 865, + [4958] = 918, + [4959] = 919, + [4960] = 835, + [4961] = 831, + [4962] = 840, + [4963] = 832, + [4964] = 821, + [4965] = 864, + [4966] = 973, + [4967] = 878, + [4968] = 894, + [4969] = 929, + [4970] = 997, + [4971] = 965, + [4972] = 980, + [4973] = 909, + [4974] = 910, + [4975] = 923, + [4976] = 880, + [4977] = 890, + [4978] = 883, + [4979] = 964, + [4980] = 932, + [4981] = 871, + [4982] = 952, + [4983] = 908, + [4984] = 896, + [4985] = 977, + [4986] = 996, + [4987] = 935, + [4988] = 926, + [4989] = 858, + [4990] = 933, + [4991] = 974, + [4992] = 927, + [4993] = 981, + [4994] = 858, + [4995] = 845, + [4996] = 876, + [4997] = 843, + [4998] = 1003, + [4999] = 977, + [5000] = 941, + [5001] = 995, + [5002] = 942, + [5003] = 1006, + [5004] = 969, + [5005] = 903, + [5006] = 976, + [5007] = 975, + [5008] = 980, + [5009] = 1012, + [5010] = 959, + [5011] = 940, + [5012] = 977, + [5013] = 946, + [5014] = 968, + [5015] = 937, + [5016] = 970, + [5017] = 840, + [5018] = 867, + [5019] = 998, + [5020] = 976, + [5021] = 895, + [5022] = 947, + [5023] = 970, + [5024] = 865, + [5025] = 920, + [5026] = 902, + [5027] = 938, + [5028] = 882, + [5029] = 922, + [5030] = 839, + [5031] = 951, + [5032] = 870, + [5033] = 971, + [5034] = 832, + [5035] = 999, + [5036] = 923, + [5037] = 864, + [5038] = 884, + [5039] = 846, + [5040] = 947, + [5041] = 1013, + [5042] = 961, + [5043] = 885, + [5044] = 902, + [5045] = 928, + [5046] = 931, + [5047] = 903, + [5048] = 851, + [5049] = 878, + [5050] = 954, + [5051] = 840, + [5052] = 908, + [5053] = 939, + [5054] = 918, + [5055] = 918, + [5056] = 919, + [5057] = 924, + [5058] = 832, + [5059] = 1001, + [5060] = 957, + [5061] = 994, + [5062] = 870, + [5063] = 981, + [5064] = 958, + [5065] = 1000, + [5066] = 896, + [5067] = 931, + [5068] = 968, + [5069] = 919, + [5070] = 895, + [5071] = 828, + [5072] = 1043, + [5073] = 1073, + [5074] = 1047, + [5075] = 1046, + [5076] = 1038, + [5077] = 1055, + [5078] = 1106, + [5079] = 1105, + [5080] = 1041, [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] = 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] = 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, + [5082] = 1136, + [5083] = 890, + [5084] = 1048, + [5085] = 1037, + [5086] = 1072, + [5087] = 1112, + [5088] = 1137, + [5089] = 876, + [5090] = 1126, + [5091] = 1040, + [5092] = 1122, + [5093] = 999, + [5094] = 1115, + [5095] = 1042, + [5096] = 1018, + [5097] = 1108, + [5098] = 1139, + [5099] = 1141, + [5100] = 1033, + [5101] = 1145, + [5102] = 903, + [5103] = 1148, + [5104] = 1117, + [5105] = 871, + [5106] = 1150, + [5107] = 1049, + [5108] = 1102, + [5109] = 1151, + [5110] = 1053, + [5111] = 1152, + [5112] = 1101, + [5113] = 1005, + [5114] = 895, + [5115] = 1079, + [5116] = 1021, + [5117] = 1154, + [5118] = 1155, + [5119] = 1185, + [5120] = 1056, + [5121] = 1156, + [5122] = 1058, + [5123] = 870, + [5124] = 1036, + [5125] = 1109, + [5126] = 1031, + [5127] = 1027, + [5128] = 1174, + [5129] = 1054, + [5130] = 1044, + [5131] = 1173, + [5132] = 1178, + [5133] = 1187, + [5134] = 854, + [5135] = 878, + [5136] = 927, + [5137] = 857, + [5138] = 1110, + [5139] = 908, + [5140] = 1114, + [5141] = 1046, + [5142] = 1140, + [5143] = 1024, + [5144] = 1055, + [5145] = 1175, + [5146] = 895, + [5147] = 1023, + [5148] = 1044, + [5149] = 1025, + [5150] = 1061, + [5151] = 1062, + [5152] = 1063, + [5153] = 1163, + [5154] = 959, + [5155] = 1064, + [5156] = 908, + [5157] = 1103, + [5158] = 1113, + [5159] = 1162, + [5160] = 1015, + [5161] = 936, + [5162] = 919, + [5163] = 1022, + [5164] = 1052, + [5165] = 1143, + [5166] = 1125, + [5167] = 958, + [5168] = 1051, + [5169] = 894, + [5170] = 1119, + [5171] = 850, + [5172] = 1065, + [5173] = 848, + [5174] = 1050, + [5175] = 876, + [5176] = 1045, + [5177] = 859, + [5178] = 1067, + [5179] = 1068, + [5180] = 910, + [5181] = 1026, + [5182] = 1069, + [5183] = 978, + [5184] = 1120, + [5185] = 1014, + [5186] = 894, + [5187] = 1071, + [5188] = 1158, + [5189] = 1018, + [5190] = 1020, + [5191] = 850, + [5192] = 848, + [5193] = 1028, + [5194] = 1100, + [5195] = 1019, + [5196] = 1039, + [5197] = 903, + [5198] = 1035, + [5199] = 1017, + [5200] = 1076, + [5201] = 871, + [5202] = 1099, + [5203] = 1170, + [5204] = 1033, + [5205] = 965, + [5206] = 1157, + [5207] = 1123, + [5208] = 837, + [5209] = 918, + [5210] = 1153, + [5211] = 1016, + [5212] = 1098, + [5213] = 1005, + [5214] = 1097, + [5215] = 1078, + [5216] = 1096, + [5217] = 1116, + [5218] = 1147, + [5219] = 1146, + [5220] = 1124, + [5221] = 878, + [5222] = 1144, + [5223] = 918, + [5224] = 841, + [5225] = 835, + [5226] = 919, + [5227] = 1080, + [5228] = 1095, + [5229] = 1094, + [5230] = 1142, + [5231] = 1081, + [5232] = 831, + [5233] = 1082, + [5234] = 1083, + [5235] = 1127, + [5236] = 1085, + [5237] = 1140, + [5238] = 1138, + [5239] = 1128, + [5240] = 1093, + [5241] = 1091, + [5242] = 1088, + [5243] = 937, + [5244] = 870, + [5245] = 928, + [5246] = 1084, + [5247] = 1029, + [5248] = 1054, + [5249] = 1135, + [5250] = 978, + [5251] = 1021, + [5252] = 1075, + [5253] = 1149, + [5254] = 1087, + [5255] = 910, + [5256] = 1089, + [5257] = 1090, + [5258] = 1034, + [5259] = 1134, + [5260] = 1131, + [5261] = 890, + [5262] = 1132, + [5263] = 1133, + [5264] = 936, + [5265] = 1030, + [5266] = 5266, + [5267] = 942, + [5268] = 996, + [5269] = 905, + [5270] = 998, + [5271] = 890, + [5272] = 1000, + [5273] = 997, + [5274] = 894, + [5275] = 1001, + [5276] = 961, + [5277] = 933, + [5278] = 813, + [5279] = 850, + [5280] = 850, + [5281] = 957, + [5282] = 848, + [5283] = 954, + [5284] = 951, + [5285] = 946, + [5286] = 5286, + [5287] = 1072, + [5288] = 848, + [5289] = 971, + [5290] = 1073, + [5291] = 850, + [5292] = 821, + [5293] = 819, + [5294] = 848, + [5295] = 5295, + [5296] = 929, + [5297] = 935, + [5298] = 817, + [5299] = 969, + [5300] = 941, + [5301] = 940, + [5302] = 932, + [5303] = 824, + [5304] = 1143, + [5305] = 964, + [5306] = 817, + [5307] = 1015, + [5308] = 824, + [5309] = 1113, + [5310] = 1103, + [5311] = 952, + [5312] = 819, + [5313] = 813, + [5314] = 938, + [5315] = 821, + [5316] = 1131, + [5317] = 1084, + [5318] = 1157, + [5319] = 381, + [5320] = 1015, + [5321] = 843, + [5322] = 843, + [5323] = 1155, + [5324] = 1154, + [5325] = 1178, + [5326] = 1152, + [5327] = 839, + [5328] = 3387, + [5329] = 846, + [5330] = 1173, + [5331] = 1162, + [5332] = 824, + [5333] = 1153, + [5334] = 1151, + [5335] = 1150, + [5336] = 1185, + [5337] = 1147, + [5338] = 1146, + [5339] = 1110, + [5340] = 813, + [5341] = 1143, + [5342] = 821, + [5343] = 851, + [5344] = 819, + [5345] = 389, + [5346] = 850, + [5347] = 848, + [5348] = 1102, + [5349] = 839, + [5350] = 848, + [5351] = 817, + [5352] = 845, + [5353] = 1109, + [5354] = 1143, + [5355] = 850, + [5356] = 981, + [5357] = 1144, + [5358] = 1148, + [5359] = 846, + [5360] = 1175, + [5361] = 391, + [5362] = 1114, + [5363] = 858, + [5364] = 1145, + [5365] = 1141, + [5366] = 1139, + [5367] = 1142, + [5368] = 1112, + [5369] = 1115, + [5370] = 1108, + [5371] = 1101, + [5372] = 872, + [5373] = 1136, + [5374] = 1126, + [5375] = 1072, + [5376] = 1122, + [5377] = 1073, + [5378] = 1117, + [5379] = 1138, + [5380] = 1015, + [5381] = 1119, + [5382] = 1120, + [5383] = 1075, + [5384] = 5384, + [5385] = 1125, + [5386] = 1137, + [5387] = 1123, + [5388] = 1100, + [5389] = 1156, + [5390] = 1099, + [5391] = 840, + [5392] = 1158, + [5393] = 832, + [5394] = 1124, + [5395] = 1135, + [5396] = 1163, + [5397] = 1134, + [5398] = 879, + [5399] = 1088, + [5400] = 851, + [5401] = 977, + [5402] = 1098, + [5403] = 1106, + [5404] = 1113, + [5405] = 1113, + [5406] = 385, + [5407] = 1097, + [5408] = 850, + [5409] = 1096, + [5410] = 848, + [5411] = 1103, + [5412] = 1091, + [5413] = 1093, + [5414] = 845, + [5415] = 1187, + [5416] = 970, + [5417] = 1127, + [5418] = 1133, + [5419] = 1095, + [5420] = 1128, + [5421] = 1094, + [5422] = 1105, + [5423] = 1132, + [5424] = 818, + [5425] = 1103, + [5426] = 840, + [5427] = 1103, + [5428] = 381, + [5429] = 5429, + [5430] = 425, + [5431] = 917, + [5432] = 859, + [5433] = 5433, + [5434] = 828, + [5435] = 854, + [5436] = 857, + [5437] = 859, + [5438] = 837, + [5439] = 857, + [5440] = 812, + [5441] = 825, + [5442] = 841, + [5443] = 831, + [5444] = 876, + [5445] = 871, + [5446] = 854, + [5447] = 835, + [5448] = 438, + [5449] = 828, + [5450] = 895, + [5451] = 910, + [5452] = 820, + [5453] = 878, + [5454] = 851, + [5455] = 832, + [5456] = 837, + [5457] = 919, + [5458] = 918, + [5459] = 427, + [5460] = 858, + [5461] = 870, + [5462] = 1015, + [5463] = 823, + [5464] = 845, + [5465] = 1073, + [5466] = 835, + [5467] = 1072, + [5468] = 846, + [5469] = 843, + [5470] = 908, + [5471] = 424, + [5472] = 841, + [5473] = 1113, + [5474] = 1143, + [5475] = 831, + [5476] = 839, + [5477] = 903, + [5478] = 389, + [5479] = 428, + [5480] = 391, + [5481] = 385, + [5482] = 876, + [5483] = 408, + [5484] = 406, + [5485] = 832, + [5486] = 1054, + [5487] = 840, + [5488] = 918, + [5489] = 837, + [5490] = 427, + [5491] = 919, + [5492] = 852, + [5493] = 894, + [5494] = 5494, + [5495] = 425, + [5496] = 428, + [5497] = 414, + [5498] = 828, + [5499] = 890, + [5500] = 5500, + [5501] = 910, + [5502] = 5500, + [5503] = 5500, + [5504] = 415, + [5505] = 854, + [5506] = 857, + [5507] = 5500, + [5508] = 438, + [5509] = 5500, + [5510] = 859, + [5511] = 5500, + [5512] = 3809, + [5513] = 849, + [5514] = 838, + [5515] = 871, + [5516] = 842, + [5517] = 841, + [5518] = 831, + [5519] = 1055, + [5520] = 5520, + [5521] = 905, + [5522] = 5500, + [5523] = 878, + [5524] = 908, + [5525] = 870, + [5526] = 977, + [5527] = 903, + [5528] = 835, + [5529] = 424, + [5530] = 976, + [5531] = 5500, + [5532] = 895, + [5533] = 5500, + [5534] = 858, + [5535] = 5535, + [5536] = 443, + [5537] = 5537, + [5538] = 415, + [5539] = 5537, + [5540] = 5535, + [5541] = 3920, + [5542] = 5537, + [5543] = 5543, + [5544] = 4018, + [5545] = 449, + [5546] = 5543, + [5547] = 1055, + [5548] = 3948, + [5549] = 5535, + [5550] = 870, + [5551] = 5537, + [5552] = 878, + [5553] = 895, + [5554] = 910, + [5555] = 903, + [5556] = 5543, + [5557] = 908, + [5558] = 918, + [5559] = 848, + [5560] = 406, + [5561] = 5543, + [5562] = 919, + [5563] = 977, + [5564] = 850, + [5565] = 5537, + [5566] = 1018, + [5567] = 5543, + [5568] = 871, + [5569] = 5537, + [5570] = 5537, + [5571] = 5535, + [5572] = 5543, + [5573] = 981, + [5574] = 894, + [5575] = 5535, + [5576] = 1021, + [5577] = 890, + [5578] = 5535, + [5579] = 442, + [5580] = 5535, + [5581] = 5535, + [5582] = 876, + [5583] = 4017, + [5584] = 1046, + [5585] = 5537, + [5586] = 5543, + [5587] = 450, + [5588] = 408, + [5589] = 1042, + [5590] = 5535, + [5591] = 970, + [5592] = 4008, + [5593] = 976, + [5594] = 5543, + [5595] = 5543, + [5596] = 1054, + [5597] = 444, + [5598] = 414, + [5599] = 1033, + [5600] = 977, + [5601] = 5537, + [5602] = 818, + [5603] = 1113, + [5604] = 449, + [5605] = 1073, + [5606] = 442, + [5607] = 894, + [5608] = 5608, + [5609] = 1072, + [5610] = 823, + [5611] = 5611, + [5612] = 5494, + [5613] = 1143, + [5614] = 1015, + [5615] = 450, + [5616] = 825, + [5617] = 5617, + [5618] = 1103, + [5619] = 443, + [5620] = 5520, + [5621] = 444, + [5622] = 890, + [5623] = 850, + [5624] = 820, + [5625] = 1103, + [5626] = 848, + [5627] = 812, + [5628] = 1113, + [5629] = 1073, + [5630] = 1143, + [5631] = 1015, + [5632] = 1072, + [5633] = 1103, + [5634] = 480, + [5635] = 1113, + [5636] = 852, + [5637] = 1143, + [5638] = 1015, + [5639] = 1072, + [5640] = 483, + [5641] = 842, + [5642] = 1073, + [5643] = 494, + [5644] = 849, + [5645] = 506, + [5646] = 838, + [5647] = 481, + [5648] = 508, + [5649] = 850, + [5650] = 848, + [5651] = 5651, + [5652] = 506, + [5653] = 5653, + [5654] = 482, + [5655] = 512, + [5656] = 480, + [5657] = 503, + [5658] = 917, + [5659] = 5659, + [5660] = 497, + [5661] = 501, + [5662] = 479, + [5663] = 484, + [5664] = 494, + [5665] = 483, + [5666] = 825, + [5667] = 481, + [5668] = 488, + [5669] = 508, + [5670] = 823, [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, + [5672] = 503, + [5673] = 512, + [5674] = 5494, + [5675] = 482, + [5676] = 497, + [5677] = 501, + [5678] = 484, + [5679] = 479, + [5680] = 488, + [5681] = 5520, + [5682] = 3387, + [5683] = 825, + [5684] = 823, + [5685] = 818, + [5686] = 822, + [5687] = 818, + [5688] = 823, + [5689] = 917, + [5690] = 820, + [5691] = 825, + [5692] = 825, + [5693] = 812, [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, + [5695] = 822, + [5696] = 823, + [5697] = 852, + [5698] = 825, + [5699] = 5699, + [5700] = 838, + [5701] = 5701, + [5702] = 3809, + [5703] = 5701, + [5704] = 842, + [5705] = 5701, + [5706] = 5701, + [5707] = 838, + [5708] = 838, + [5709] = 5701, + [5710] = 842, + [5711] = 3387, + [5712] = 852, + [5713] = 842, + [5714] = 849, + [5715] = 849, + [5716] = 5701, + [5717] = 814, + [5718] = 820, + [5719] = 812, [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, + [5721] = 5721, + [5722] = 5721, + [5723] = 1046, + [5724] = 855, + [5725] = 844, + [5726] = 814, + [5727] = 5721, + [5728] = 5721, + [5729] = 777, + [5730] = 5721, + [5731] = 5721, + [5732] = 836, + [5733] = 5721, + [5734] = 5734, + [5735] = 5721, + [5736] = 3920, + [5737] = 5737, + [5738] = 5738, + [5739] = 3809, + [5740] = 4008, + [5741] = 827, + [5742] = 5721, + [5743] = 5743, + [5744] = 4017, + [5745] = 5745, + [5746] = 775, + [5747] = 5721, + [5748] = 5721, + [5749] = 5749, + [5750] = 3948, + [5751] = 5721, + [5752] = 1018, + [5753] = 5721, + [5754] = 1021, + [5755] = 5721, + [5756] = 5721, + [5757] = 4018, + [5758] = 5721, + [5759] = 5721, + [5760] = 5760, + [5761] = 5721, + [5762] = 1042, + [5763] = 5721, + [5764] = 1033, + [5765] = 853, + [5766] = 5721, [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, + [5768] = 856, + [5769] = 917, + [5770] = 1003, + [5771] = 844, + [5772] = 1013, + [5773] = 855, + [5774] = 995, + [5775] = 856, + [5776] = 833, + [5777] = 973, + [5778] = 1021, + [5779] = 3387, + [5780] = 1046, + [5781] = 5749, + [5782] = 836, + [5783] = 818, + [5784] = 926, + [5785] = 974, + [5786] = 1018, + [5787] = 975, + [5788] = 4018, + [5789] = 5743, + [5790] = 853, + [5791] = 5720, + [5792] = 5738, + [5793] = 994, + [5794] = 5737, + [5795] = 4008, + [5796] = 3920, + [5797] = 5734, + [5798] = 1033, + [5799] = 1006, + [5800] = 1042, + [5801] = 4017, + [5802] = 3948, + [5803] = 827, + [5804] = 5760, + [5805] = 936, + [5806] = 917, + [5807] = 812, + [5808] = 1005, + [5809] = 896, + [5810] = 820, + [5811] = 902, + [5812] = 978, + [5813] = 868, + [5814] = 923, + [5815] = 838, + [5816] = 902, + [5817] = 936, + [5818] = 974, + [5819] = 978, + [5820] = 926, + [5821] = 1002, + [5822] = 868, + [5823] = 896, + [5824] = 852, + [5825] = 975, + [5826] = 923, + [5827] = 842, + [5828] = 1005, + [5829] = 3809, + [5830] = 1004, + [5831] = 1013, + [5832] = 973, + [5833] = 1006, + [5834] = 3387, + [5835] = 849, + [5836] = 994, + [5837] = 1003, + [5838] = 1007, + [5839] = 818, + [5840] = 995, + [5841] = 889, + [5842] = 820, + [5843] = 823, + [5844] = 812, + [5845] = 917, + [5846] = 1007, + [5847] = 825, + [5848] = 1004, + [5849] = 863, + [5850] = 1002, + [5851] = 5720, [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, + [5853] = 5852, + [5854] = 852, + [5855] = 5852, + [5856] = 4017, + [5857] = 849, + [5858] = 5852, + [5859] = 3948, + [5860] = 5852, + [5861] = 5852, + [5862] = 5852, + [5863] = 3809, + [5864] = 1021, + [5865] = 1018, + [5866] = 5852, + [5867] = 5734, + [5868] = 5852, + [5869] = 5743, + [5870] = 5852, + [5871] = 4018, + [5872] = 5737, + [5873] = 5873, + [5874] = 1042, + [5875] = 5749, + [5876] = 1046, + [5877] = 5738, + [5878] = 3920, + [5879] = 889, + [5880] = 1033, + [5881] = 863, + [5882] = 5760, + [5883] = 4008, + [5884] = 5852, [5885] = 5885, [5886] = 5885, - [5887] = 5885, - [5888] = 5888, + [5887] = 5887, + [5888] = 5885, [5889] = 5885, [5890] = 5885, [5891] = 5885, @@ -8482,731 +8495,731 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5895] = 5895, [5896] = 5896, [5897] = 5897, - [5898] = 5893, - [5899] = 5899, - [5900] = 5900, + [5898] = 5898, + [5899] = 3920, + [5900] = 5892, [5901] = 5901, - [5902] = 5901, + [5902] = 4017, [5903] = 5903, - [5904] = 5904, - [5905] = 5894, - [5906] = 5892, + [5904] = 4008, + [5905] = 5893, + [5906] = 5906, [5907] = 5907, - [5908] = 5900, + [5908] = 5908, [5909] = 5909, - [5910] = 5893, - [5911] = 5907, - [5912] = 5896, - [5913] = 5913, - [5914] = 5914, - [5915] = 5915, - [5916] = 5913, + [5910] = 5910, + [5911] = 5911, + [5912] = 5912, + [5913] = 5903, + [5914] = 5903, + [5915] = 5903, + [5916] = 5906, [5917] = 5917, - [5918] = 5900, - [5919] = 5919, - [5920] = 5920, - [5921] = 5896, + [5918] = 5918, + [5919] = 5912, + [5920] = 5906, + [5921] = 5910, [5922] = 5922, - [5923] = 5901, - [5924] = 5894, - [5925] = 5897, - [5926] = 5893, + [5923] = 5923, + [5924] = 5909, + [5925] = 5925, + [5926] = 5911, [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, + [5928] = 5928, + [5929] = 5907, + [5930] = 5912, + [5931] = 5931, + [5932] = 5910, + [5933] = 5933, + [5934] = 5934, + [5935] = 5892, + [5936] = 5892, + [5937] = 3948, + [5938] = 5895, + [5939] = 5934, + [5940] = 5898, + [5941] = 5894, + [5942] = 5933, + [5943] = 5897, + [5944] = 5931, + [5945] = 5927, + [5946] = 5927, + [5947] = 5931, + [5948] = 5933, + [5949] = 5895, + [5950] = 5896, + [5951] = 5895, + [5952] = 5923, + [5953] = 5897, + [5954] = 5895, + [5955] = 5892, + [5956] = 5910, + [5957] = 5912, + [5958] = 5898, + [5959] = 5906, + [5960] = 5893, + [5961] = 5927, + [5962] = 5894, + [5963] = 5931, + [5964] = 5894, + [5965] = 5893, + [5966] = 5903, + [5967] = 5894, + [5968] = 5933, + [5969] = 5892, + [5970] = 5901, [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, + [5972] = 5893, + [5973] = 5908, + [5974] = 5907, + [5975] = 5901, + [5976] = 5894, + [5977] = 5934, + [5978] = 5895, + [5979] = 5918, + [5980] = 5908, + [5981] = 5892, + [5982] = 4018, + [5983] = 5896, + [5984] = 5901, + [5985] = 5893, + [5986] = 5928, + [5987] = 5908, + [5988] = 5910, + [5989] = 5911, + [5990] = 5912, + [5991] = 5893, + [5992] = 5906, + [5993] = 5925, + [5994] = 5927, + [5995] = 5909, + [5996] = 5931, + [5997] = 5933, + [5998] = 5895, + [5999] = 5896, + [6000] = 5892, + [6001] = 5901, + [6002] = 5908, + [6003] = 5910, + [6004] = 5928, + [6005] = 6005, + [6006] = 5927, + [6007] = 6007, + [6008] = 5911, + [6009] = 5912, + [6010] = 5906, + [6011] = 5933, + [6012] = 5927, + [6013] = 5931, + [6014] = 5903, + [6015] = 5931, + [6016] = 5933, + [6017] = 5934, + [6018] = 5927, [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, + [6020] = 5893, + [6021] = 5894, + [6022] = 5893, + [6023] = 5895, + [6024] = 5923, + [6025] = 5896, + [6026] = 5894, + [6027] = 5894, + [6028] = 5893, + [6029] = 5897, + [6030] = 5894, + [6031] = 5893, + [6032] = 5898, + [6033] = 5894, + [6034] = 6034, + [6035] = 5922, + [6036] = 5892, + [6037] = 5901, [6038] = 5907, - [6039] = 6039, - [6040] = 5917, + [6039] = 5908, + [6040] = 5909, [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] = 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, + [6042] = 5910, + [6043] = 5934, + [6044] = 5893, + [6045] = 5923, + [6046] = 5912, + [6047] = 6047, + [6048] = 5906, + [6049] = 5917, + [6050] = 5918, + [6051] = 1042, + [6052] = 5925, + [6053] = 5927, + [6054] = 5931, + [6055] = 5933, + [6056] = 5928, + [6057] = 5895, + [6058] = 5896, + [6059] = 5923, + [6060] = 6060, + [6061] = 1033, + [6062] = 5901, + [6063] = 5896, + [6064] = 5895, + [6065] = 5894, + [6066] = 6066, + [6067] = 5908, + [6068] = 5897, + [6069] = 1021, + [6070] = 5906, + [6071] = 5910, + [6072] = 5910, + [6073] = 5911, + [6074] = 5912, + [6075] = 5906, + [6076] = 5894, + [6077] = 5912, + [6078] = 5910, + [6079] = 5893, + [6080] = 5895, + [6081] = 5896, + [6082] = 5892, [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, + [6084] = 5901, + [6085] = 5908, + [6086] = 5910, + [6087] = 5911, + [6088] = 5912, + [6089] = 5906, + [6090] = 5896, + [6091] = 5911, + [6092] = 5901, + [6093] = 5908, + [6094] = 5911, + [6095] = 5922, + [6096] = 5893, + [6097] = 5912, + [6098] = 5896, + [6099] = 5901, + [6100] = 5908, + [6101] = 5911, + [6102] = 5911, + [6103] = 5895, + [6104] = 5908, + [6105] = 5906, + [6106] = 5922, + [6107] = 5901, + [6108] = 1018, [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, + [6110] = 5917, + [6111] = 5896, + [6112] = 6112, + [6113] = 5928, + [6114] = 5918, + [6115] = 5928, + [6116] = 5898, + [6117] = 5933, + [6118] = 5911, + [6119] = 5931, + [6120] = 5908, + [6121] = 5901, + [6122] = 5927, + [6123] = 5896, + [6124] = 5906, + [6125] = 5933, + [6126] = 5912, + [6127] = 5931, + [6128] = 5927, + [6129] = 5911, + [6130] = 5910, + [6131] = 6131, + [6132] = 6132, + [6133] = 5908, [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, + [6135] = 5901, + [6136] = 5934, + [6137] = 5892, + [6138] = 5931, + [6139] = 5901, + [6140] = 5911, + [6141] = 5907, + [6142] = 5896, + [6143] = 5895, + [6144] = 5896, + [6145] = 5895, + [6146] = 5922, + [6147] = 5908, + [6148] = 6148, + [6149] = 5897, + [6150] = 5911, + [6151] = 5908, + [6152] = 5901, + [6153] = 5925, + [6154] = 5893, + [6155] = 5896, + [6156] = 5894, + [6157] = 5923, + [6158] = 5923, + [6159] = 5906, + [6160] = 5893, + [6161] = 5912, + [6162] = 5911, + [6163] = 5910, + [6164] = 5898, + [6165] = 5894, + [6166] = 5893, + [6167] = 5894, + [6168] = 5908, + [6169] = 5901, + [6170] = 5892, + [6171] = 5901, + [6172] = 5892, + [6173] = 6173, + [6174] = 6174, + [6175] = 5922, + [6176] = 5907, + [6177] = 5906, + [6178] = 5896, + [6179] = 5922, + [6180] = 5893, + [6181] = 5895, + [6182] = 5922, + [6183] = 5912, + [6184] = 5908, + [6185] = 5933, + [6186] = 5909, + [6187] = 5923, + [6188] = 5910, + [6189] = 5894, + [6190] = 5927, + [6191] = 5893, + [6192] = 5910, + [6193] = 5893, + [6194] = 5898, + [6195] = 5911, + [6196] = 5894, + [6197] = 5909, + [6198] = 5931, + [6199] = 5894, + [6200] = 5933, + [6201] = 5922, + [6202] = 5931, + [6203] = 5927, + [6204] = 5906, + [6205] = 5909, + [6206] = 5923, + [6207] = 5912, + [6208] = 5898, + [6209] = 5911, + [6210] = 5910, + [6211] = 5907, + [6212] = 5912, + [6213] = 5908, + [6214] = 5901, + [6215] = 5909, + [6216] = 5892, + [6217] = 5931, [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, + [6219] = 5895, + [6220] = 5892, + [6221] = 5906, + [6222] = 5898, + [6223] = 5917, + [6224] = 5897, + [6225] = 5918, + [6226] = 5922, + [6227] = 5909, + [6228] = 5925, + [6229] = 5895, + [6230] = 5927, + [6231] = 5931, + [6232] = 5927, + [6233] = 5931, + [6234] = 5933, + [6235] = 5927, + [6236] = 5895, + [6237] = 5923, + [6238] = 6238, + [6239] = 5933, + [6240] = 5931, + [6241] = 5922, + [6242] = 5892, + [6243] = 5894, + [6244] = 5910, + [6245] = 5927, + [6246] = 5906, + [6247] = 5923, + [6248] = 5910, + [6249] = 5912, + [6250] = 5912, + [6251] = 5906, + [6252] = 5933, + [6253] = 5911, + [6254] = 5927, + [6255] = 5910, + [6256] = 5931, + [6257] = 5908, + [6258] = 5901, + [6259] = 6173, + [6260] = 5933, + [6261] = 5892, + [6262] = 5934, + [6263] = 5895, + [6264] = 5896, + [6265] = 5896, + [6266] = 5895, + [6267] = 5892, + [6268] = 5901, + [6269] = 5908, + [6270] = 5910, + [6271] = 5911, + [6272] = 5912, + [6273] = 5911, + [6274] = 5906, + [6275] = 6275, + [6276] = 5933, + [6277] = 5931, + [6278] = 5933, + [6279] = 5893, + [6280] = 5933, + [6281] = 5895, + [6282] = 5896, + [6283] = 5892, + [6284] = 5893, + [6285] = 5901, + [6286] = 5928, + [6287] = 5908, + [6288] = 5910, + [6289] = 5894, + [6290] = 5911, + [6291] = 5912, + [6292] = 5911, + [6293] = 5906, + [6294] = 5927, + [6295] = 5931, + [6296] = 5933, + [6297] = 6174, + [6298] = 5894, + [6299] = 5906, + [6300] = 5909, + [6301] = 5908, + [6302] = 5893, + [6303] = 5923, + [6304] = 5901, + [6305] = 5895, + [6306] = 5934, + [6307] = 5895, + [6308] = 5896, + [6309] = 5892, + [6310] = 5901, + [6311] = 5908, + [6312] = 5898, + [6313] = 5910, + [6314] = 5922, + [6315] = 5911, + [6316] = 5912, + [6317] = 5906, + [6318] = 5894, + [6319] = 5896, + [6320] = 5894, + [6321] = 5896, + [6322] = 5895, + [6323] = 5923, + [6324] = 5897, + [6325] = 5896, + [6326] = 5892, + [6327] = 5906, + [6328] = 5901, + [6329] = 5898, + [6330] = 5908, + [6331] = 5910, + [6332] = 5911, + [6333] = 5912, + [6334] = 5912, + [6335] = 5906, + [6336] = 5896, + [6337] = 5901, + [6338] = 5908, + [6339] = 5911, + [6340] = 5933, + [6341] = 5922, + [6342] = 5927, + [6343] = 5892, + [6344] = 5901, + [6345] = 5907, + [6346] = 5931, + [6347] = 5923, + [6348] = 5910, + [6349] = 5908, + [6350] = 5909, + [6351] = 5910, + [6352] = 5927, + [6353] = 5911, + [6354] = 5892, + [6355] = 5912, + [6356] = 5906, + [6357] = 5906, + [6358] = 5893, + [6359] = 5912, + [6360] = 5912, + [6361] = 5910, + [6362] = 5925, + [6363] = 5892, + [6364] = 5906, + [6365] = 5895, + [6366] = 5894, + [6367] = 5895, + [6368] = 6173, + [6369] = 6174, + [6370] = 5893, + [6371] = 5928, + [6372] = 5893, + [6373] = 1046, + [6374] = 5894, + [6375] = 5934, + [6376] = 5917, + [6377] = 5933, + [6378] = 5931, + [6379] = 5918, + [6380] = 6173, + [6381] = 6174, + [6382] = 5927, + [6383] = 5894, + [6384] = 5933, + [6385] = 5925, + [6386] = 825, + [6387] = 5931, + [6388] = 5927, + [6389] = 5912, + [6390] = 823, + [6391] = 5911, + [6392] = 6173, + [6393] = 6174, + [6394] = 5895, + [6395] = 5931, + [6396] = 5896, + [6397] = 5933, + [6398] = 5910, + [6399] = 5897, + [6400] = 5909, + [6401] = 5908, + [6402] = 5907, + [6403] = 6173, + [6404] = 6174, [6405] = 5901, - [6406] = 5917, - [6407] = 5895, - [6408] = 5913, - [6409] = 5892, - [6410] = 5914, + [6406] = 5892, + [6407] = 5928, + [6408] = 5927, + [6409] = 5898, + [6410] = 5925, [6411] = 6411, - [6412] = 6411, - [6413] = 6411, - [6414] = 6414, + [6412] = 6412, + [6413] = 6412, + [6414] = 6411, [6415] = 6411, - [6416] = 6411, + [6416] = 6412, [6417] = 6411, [6418] = 6411, - [6419] = 6414, - [6420] = 6414, + [6419] = 6411, + [6420] = 6411, [6421] = 6411, - [6422] = 6414, - [6423] = 6411, + [6422] = 6411, + [6423] = 6412, [6424] = 6411, - [6425] = 6414, - [6426] = 6411, + [6425] = 6411, + [6426] = 6412, [6427] = 6411, [6428] = 6411, - [6429] = 6414, - [6430] = 6414, - [6431] = 6411, - [6432] = 6414, - [6433] = 6414, + [6429] = 6412, + [6430] = 6411, + [6431] = 6412, + [6432] = 6412, + [6433] = 6412, [6434] = 6411, [6435] = 6411, [6436] = 6411, [6437] = 6411, [6438] = 6411, - [6439] = 6414, - [6440] = 6414, - [6441] = 6411, + [6439] = 6411, + [6440] = 6412, + [6441] = 6412, [6442] = 6411, [6443] = 6411, - [6444] = 6411, + [6444] = 6412, [6445] = 6411, [6446] = 6411, - [6447] = 6414, - [6448] = 6414, - [6449] = 6414, + [6447] = 6412, + [6448] = 6411, + [6449] = 6412, [6450] = 6411, [6451] = 6411, [6452] = 6452, [6453] = 6452, - [6454] = 6454, - [6455] = 6454, - [6456] = 6454, - [6457] = 6452, - [6458] = 6458, - [6459] = 6458, - [6460] = 6454, + [6454] = 6452, + [6455] = 6455, + [6456] = 6452, + [6457] = 6457, + [6458] = 6457, + [6459] = 6455, + [6460] = 6452, [6461] = 6452, - [6462] = 6458, - [6463] = 6454, - [6464] = 6452, + [6462] = 6457, + [6463] = 6452, + [6464] = 6455, [6465] = 6452, - [6466] = 6454, + [6466] = 6455, [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, + [6469] = 6452, + [6470] = 6457, + [6471] = 6452, + [6472] = 6452, + [6473] = 6455, + [6474] = 6452, + [6475] = 6457, + [6476] = 6457, + [6477] = 6457, + [6478] = 6452, + [6479] = 6452, + [6480] = 6455, + [6481] = 6455, + [6482] = 6457, + [6483] = 6455, + [6484] = 6455, + [6485] = 6455, + [6486] = 6457, + [6487] = 6452, + [6488] = 6452, + [6489] = 6455, + [6490] = 6457, + [6491] = 6455, + [6492] = 6457, + [6493] = 6452, + [6494] = 6455, + [6495] = 6455, + [6496] = 6457, + [6497] = 6457, + [6498] = 6455, + [6499] = 6452, + [6500] = 6455, + [6501] = 6457, + [6502] = 6452, + [6503] = 6455, + [6504] = 6455, [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, + [6506] = 6457, + [6507] = 6457, + [6508] = 6457, + [6509] = 6455, + [6510] = 6457, + [6511] = 6457, + [6512] = 6455, + [6513] = 6452, + [6514] = 6455, + [6515] = 6457, + [6516] = 6455, + [6517] = 6452, + [6518] = 6452, + [6519] = 6457, + [6520] = 6452, + [6521] = 6457, + [6522] = 6455, + [6523] = 6455, + [6524] = 6457, + [6525] = 6457, + [6526] = 6455, + [6527] = 6457, + [6528] = 6457, + [6529] = 6455, + [6530] = 6530, + [6531] = 6457, + [6532] = 6452, + [6533] = 6455, [6534] = 6534, [6535] = 6535, - [6536] = 6535, + [6536] = 6534, [6537] = 6534, - [6538] = 861, + [6538] = 6535, [6539] = 6535, - [6540] = 6535, + [6540] = 6534, [6541] = 6534, [6542] = 6535, - [6543] = 6534, - [6544] = 6534, + [6543] = 6535, + [6544] = 6535, [6545] = 6535, - [6546] = 6535, + [6546] = 6534, [6547] = 6534, [6548] = 6535, - [6549] = 858, - [6550] = 6535, - [6551] = 6534, - [6552] = 6535, - [6553] = 6534, + [6549] = 6534, + [6550] = 6534, + [6551] = 6535, + [6552] = 6534, + [6553] = 6535, [6554] = 6534, [6555] = 6535, [6556] = 6535, - [6557] = 6535, - [6558] = 6535, - [6559] = 6534, - [6560] = 6534, + [6557] = 852, + [6558] = 6534, + [6559] = 6535, + [6560] = 6535, [6561] = 6534, - [6562] = 6535, + [6562] = 6534, [6563] = 6535, - [6564] = 6534, - [6565] = 6535, + [6564] = 6535, + [6565] = 6534, [6566] = 6535, [6567] = 6534, - [6568] = 6534, - [6569] = 6534, - [6570] = 6534, - [6571] = 6535, - [6572] = 6535, - [6573] = 6535, + [6568] = 6535, + [6569] = 849, + [6570] = 6535, + [6571] = 6534, + [6572] = 6534, + [6573] = 6534, [6574] = 6534, - [6575] = 6534, - [6576] = 6534, - [6577] = 6534, + [6575] = 6535, + [6576] = 6535, + [6577] = 6535, [6578] = 6534, - [6579] = 6534, - [6580] = 6534, + [6579] = 6535, + [6580] = 6535, [6581] = 6534, - [6582] = 6535, + [6582] = 6534, [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, + [6588] = 6534, + [6589] = 6534, + [6590] = 818, + [6591] = 820, + [6592] = 6592, + [6593] = 6592, + [6594] = 6592, + [6595] = 6592, + [6596] = 6592, + [6597] = 6592, + [6598] = 6592, + [6599] = 6592, + [6600] = 6592, + [6601] = 812, [6602] = 6602, [6603] = 6602, [6604] = 6604, - [6605] = 854, - [6606] = 6602, - [6607] = 6604, - [6608] = 6602, - [6609] = 6602, - [6610] = 6602, - [6611] = 6604, - [6612] = 6602, - [6613] = 6604, + [6605] = 6604, + [6606] = 6604, + [6607] = 6602, + [6608] = 842, + [6609] = 838, + [6610] = 6604, + [6611] = 6602, + [6612] = 6604, + [6613] = 6602, [6614] = 6604, [6615] = 6602, [6616] = 6604, [6617] = 6602, - [6618] = 6604, - [6619] = 6604, + [6618] = 6618, + [6619] = 6602, [6620] = 6604, - [6621] = 6621, - [6622] = 856, + [6621] = 6604, + [6622] = 6602, [6623] = 6623, [6624] = 6624, [6625] = 6625, @@ -9214,2173 +9227,2173 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6627] = 6624, [6628] = 6628, [6629] = 6629, - [6630] = 6630, - [6631] = 6630, - [6632] = 6623, - [6633] = 6623, - [6634] = 6628, - [6635] = 6630, - [6636] = 6628, - [6637] = 6624, + [6630] = 6625, + [6631] = 6628, + [6632] = 6632, + [6633] = 6624, + [6634] = 6624, + [6635] = 6629, + [6636] = 6629, + [6637] = 6628, [6638] = 6623, - [6639] = 6630, + [6639] = 6625, [6640] = 6628, - [6641] = 6630, - [6642] = 6629, - [6643] = 6628, - [6644] = 6624, - [6645] = 6630, - [6646] = 6629, - [6647] = 6630, - [6648] = 6628, + [6641] = 6629, + [6642] = 6623, + [6643] = 6629, + [6644] = 6629, + [6645] = 6623, + [6646] = 6628, + [6647] = 6624, + [6648] = 6625, [6649] = 6624, - [6650] = 6624, + [6650] = 6625, [6651] = 6623, - [6652] = 6628, - [6653] = 6628, - [6654] = 6624, - [6655] = 6623, - [6656] = 6628, - [6657] = 6628, + [6652] = 6629, + [6653] = 6629, + [6654] = 6625, + [6655] = 6625, + [6656] = 6625, + [6657] = 6625, [6658] = 6629, - [6659] = 6630, - [6660] = 6629, - [6661] = 6623, - [6662] = 884, + [6659] = 6623, + [6660] = 6628, + [6661] = 6661, + [6662] = 6625, [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, + [6664] = 6624, + [6665] = 6624, + [6666] = 6623, + [6667] = 6623, + [6668] = 6629, + [6669] = 6624, + [6670] = 6625, + [6671] = 6625, + [6672] = 6624, + [6673] = 6623, + [6674] = 6629, + [6675] = 6628, + [6676] = 6623, + [6677] = 6624, + [6678] = 6623, + [6679] = 6629, + [6680] = 6624, + [6681] = 917, + [6682] = 6625, [6683] = 6623, - [6684] = 6630, - [6685] = 6624, - [6686] = 6624, + [6684] = 6624, + [6685] = 6625, + [6686] = 6623, [6687] = 6687, - [6688] = 830, - [6689] = 6687, - [6690] = 6687, - [6691] = 6691, - [6692] = 6691, + [6688] = 827, + [6689] = 6689, + [6690] = 6689, + [6691] = 6689, + [6692] = 6689, [6693] = 6687, - [6694] = 6691, - [6695] = 6691, - [6696] = 6691, - [6697] = 6691, - [6698] = 6691, - [6699] = 6687, + [6694] = 6687, + [6695] = 6687, + [6696] = 6689, + [6697] = 6687, + [6698] = 6687, + [6699] = 6689, [6700] = 6687, - [6701] = 6691, - [6702] = 6691, - [6703] = 6687, + [6701] = 6689, + [6702] = 6687, + [6703] = 6689, [6704] = 6687, - [6705] = 6687, + [6705] = 6689, [6706] = 6687, - [6707] = 6691, + [6707] = 6689, [6708] = 6687, - [6709] = 6691, - [6710] = 6691, - [6711] = 6691, - [6712] = 6691, - [6713] = 6687, + [6709] = 6689, + [6710] = 6689, + [6711] = 6689, + [6712] = 6689, + [6713] = 6689, [6714] = 6687, [6715] = 6687, - [6716] = 6691, + [6716] = 6687, [6717] = 6687, - [6718] = 6687, - [6719] = 6691, - [6720] = 6691, - [6721] = 6691, + [6718] = 6689, + [6719] = 6687, + [6720] = 6687, + [6721] = 6687, [6722] = 6687, - [6723] = 6691, - [6724] = 6691, - [6725] = 6687, - [6726] = 6687, - [6727] = 6691, + [6723] = 6687, + [6724] = 6689, + [6725] = 6689, + [6726] = 6689, + [6727] = 6687, [6728] = 6687, - [6729] = 6687, - [6730] = 6687, - [6731] = 6687, - [6732] = 6691, - [6733] = 6691, - [6734] = 6691, + [6729] = 836, + [6730] = 6689, + [6731] = 6689, + [6732] = 6689, + [6733] = 6687, + [6734] = 6689, [6735] = 6687, [6736] = 6687, - [6737] = 6691, - [6738] = 839, + [6737] = 6689, + [6738] = 6689, [6739] = 6687, - [6740] = 6691, + [6740] = 6689, [6741] = 6687, - [6742] = 6691, - [6743] = 1169, - [6744] = 1159, - [6745] = 1162, - [6746] = 1168, + [6742] = 6689, + [6743] = 1021, + [6744] = 1033, + [6745] = 1042, + [6746] = 1018, [6747] = 6747, [6748] = 6748, - [6749] = 6747, + [6749] = 6749, [6750] = 6750, - [6751] = 6748, + [6751] = 6747, [6752] = 6752, [6753] = 6753, [6754] = 6754, [6755] = 6755, [6756] = 6756, - [6757] = 6756, + [6757] = 6749, [6758] = 6758, - [6759] = 6754, + [6759] = 6759, [6760] = 6760, [6761] = 6761, - [6762] = 6758, - [6763] = 6753, + [6762] = 6761, + [6763] = 6752, [6764] = 6764, - [6765] = 6765, - [6766] = 6750, - [6767] = 6760, - [6768] = 6768, - [6769] = 6769, - [6770] = 6747, + [6765] = 6750, + [6766] = 6748, + [6767] = 6748, + [6768] = 6764, + [6769] = 6756, + [6770] = 6764, [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, + [6772] = 6761, + [6773] = 6750, + [6774] = 6747, + [6775] = 6760, + [6776] = 6759, + [6777] = 6758, + [6778] = 6753, + [6779] = 6750, + [6780] = 6755, + [6781] = 6747, + [6782] = 6764, + [6783] = 6755, [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, + [6785] = 6752, + [6786] = 6756, + [6787] = 6754, + [6788] = 6749, + [6789] = 6755, + [6790] = 6747, + [6791] = 6754, + [6792] = 6747, + [6793] = 6756, + [6794] = 6750, + [6795] = 6753, + [6796] = 6761, + [6797] = 6748, + [6798] = 6752, + [6799] = 6752, + [6800] = 6754, + [6801] = 6749, + [6802] = 6753, + [6803] = 6761, + [6804] = 6753, + [6805] = 6755, + [6806] = 6753, + [6807] = 6756, + [6808] = 6754, + [6809] = 6755, + [6810] = 6756, + [6811] = 6749, + [6812] = 6754, + [6813] = 6752, + [6814] = 6758, + [6815] = 6758, + [6816] = 6759, + [6817] = 6758, + [6818] = 6759, + [6819] = 6759, + [6820] = 6760, + [6821] = 6760, + [6822] = 6753, + [6823] = 6761, + [6824] = 6761, + [6825] = 6750, + [6826] = 6748, + [6827] = 6748, + [6828] = 6755, + [6829] = 6749, + [6830] = 6830, + [6831] = 6764, + [6832] = 6764, + [6833] = 6756, + [6834] = 6747, + [6835] = 6758, + [6836] = 6749, + [6837] = 6754, + [6838] = 6755, + [6839] = 6756, + [6840] = 6759, + [6841] = 6764, + [6842] = 6764, + [6843] = 6748, + [6844] = 6760, + [6845] = 6748, + [6846] = 6760, + [6847] = 6761, + [6848] = 6760, + [6849] = 6761, + [6850] = 6759, + [6851] = 6758, + [6852] = 6760, + [6853] = 6756, + [6854] = 6764, + [6855] = 6755, + [6856] = 6759, + [6857] = 6759, + [6858] = 6758, + [6859] = 6753, [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, + [6861] = 6749, + [6862] = 6754, + [6863] = 6748, + [6864] = 6750, + [6865] = 6764, + [6866] = 6747, + [6867] = 6758, + [6868] = 6756, + [6869] = 6755, + [6870] = 6758, + [6871] = 6753, + [6872] = 6752, + [6873] = 6747, + [6874] = 6764, + [6875] = 6748, + [6876] = 6761, + [6877] = 6750, [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, + [6879] = 6748, + [6880] = 6759, + [6881] = 6758, + [6882] = 6756, + [6883] = 6754, + [6884] = 6761, + [6885] = 6756, + [6886] = 6755, + [6887] = 6749, + [6888] = 6753, + [6889] = 6752, + [6890] = 6752, + [6891] = 6760, + [6892] = 6749, + [6893] = 6754, + [6894] = 6753, [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, + [6896] = 6749, + [6897] = 6747, + [6898] = 6750, + [6899] = 6756, + [6900] = 6755, + [6901] = 6754, + [6902] = 6749, + [6903] = 6754, + [6904] = 6758, + [6905] = 6752, + [6906] = 6753, + [6907] = 6753, + [6908] = 6755, + [6909] = 6756, + [6910] = 6747, + [6911] = 6747, + [6912] = 6759, + [6913] = 6758, + [6914] = 6759, + [6915] = 6760, + [6916] = 6760, + [6917] = 6761, + [6918] = 6750, + [6919] = 6748, + [6920] = 6761, + [6921] = 6748, + [6922] = 6747, [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, + [6924] = 6764, + [6925] = 6830, + [6926] = 6764, + [6927] = 6747, + [6928] = 6760, + [6929] = 6761, + [6930] = 6750, + [6931] = 6754, + [6932] = 6750, + [6933] = 6749, + [6934] = 6764, + [6935] = 6748, + [6936] = 6752, + [6937] = 6750, + [6938] = 6761, + [6939] = 6760, + [6940] = 6753, + [6941] = 6759, [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, + [6943] = 6758, + [6944] = 6755, + [6945] = 6830, + [6946] = 6759, + [6947] = 6756, + [6948] = 6755, + [6949] = 6756, + [6950] = 6758, + [6951] = 6759, + [6952] = 6753, + [6953] = 6760, + [6954] = 6752, + [6955] = 6761, + [6956] = 6749, + [6957] = 6748, + [6958] = 6754, + [6959] = 6749, + [6960] = 6754, + [6961] = 6758, + [6962] = 6749, + [6963] = 6754, + [6964] = 6750, + [6965] = 6759, + [6966] = 6758, + [6967] = 6764, + [6968] = 6750, + [6969] = 6750, + [6970] = 6747, + [6971] = 6747, + [6972] = 6750, + [6973] = 6756, + [6974] = 6755, + [6975] = 6764, + [6976] = 6754, + [6977] = 6753, + [6978] = 6749, + [6979] = 6752, + [6980] = 6752, + [6981] = 6764, + [6982] = 6748, + [6983] = 6761, + [6984] = 6753, + [6985] = 6755, + [6986] = 6756, + [6987] = 6758, + [6988] = 6759, + [6989] = 6747, + [6990] = 6760, + [6991] = 6761, + [6992] = 6748, + [6993] = 6764, + [6994] = 6764, + [6995] = 6747, + [6996] = 6750, + [6997] = 6754, + [6998] = 6749, [6999] = 6752, - [7000] = 6765, - [7001] = 6768, - [7002] = 6764, - [7003] = 6765, - [7004] = 6758, - [7005] = 6764, - [7006] = 6748, - [7007] = 6756, - [7008] = 6755, - [7009] = 6754, + [7000] = 6753, + [7001] = 6755, + [7002] = 6756, + [7003] = 6758, + [7004] = 6759, + [7005] = 6760, + [7006] = 6761, + [7007] = 6748, + [7008] = 6764, + [7009] = 6748, [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, + [7011] = 6761, + [7012] = 6759, + [7013] = 6752, + [7014] = 6760, + [7015] = 6752, + [7016] = 6758, + [7017] = 6759, + [7018] = 6749, + [7019] = 6753, + [7020] = 6758, + [7021] = 6756, + [7022] = 6755, [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, + [7024] = 6753, + [7025] = 6752, + [7026] = 6749, + [7027] = 6754, + [7028] = 6749, + [7029] = 6754, + [7030] = 6755, + [7031] = 6750, + [7032] = 6756, + [7033] = 6747, + [7034] = 6747, + [7035] = 6750, + [7036] = 6759, + [7037] = 6760, + [7038] = 6830, + [7039] = 6754, + [7040] = 6749, + [7041] = 6761, + [7042] = 6760, + [7043] = 6764, + [7044] = 6760, + [7045] = 7045, + [7046] = 6761, + [7047] = 6752, [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, + [7049] = 6758, + [7050] = 6755, + [7051] = 6756, + [7052] = 6759, + [7053] = 6748, + [7054] = 7054, + [7055] = 6758, + [7056] = 6759, + [7057] = 7057, + [7058] = 6760, + [7059] = 6830, + [7060] = 6747, + [7061] = 6761, + [7062] = 6748, + [7063] = 6760, + [7064] = 6750, + [7065] = 6764, + [7066] = 6764, + [7067] = 6759, + [7068] = 7068, + [7069] = 6750, + [7070] = 6750, + [7071] = 6754, + [7072] = 6756, + [7073] = 6761, + [7074] = 6758, + [7075] = 6749, + [7076] = 6754, + [7077] = 6749, [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, + [7080] = 6755, + [7081] = 6755, + [7082] = 6747, + [7083] = 6747, + [7084] = 6747, + [7085] = 6747, + [7086] = 6750, + [7087] = 6747, + [7088] = 6764, + [7089] = 6753, + [7090] = 6752, + [7091] = 6753, + [7092] = 6754, + [7093] = 6749, + [7094] = 6755, + [7095] = 6753, + [7096] = 6752, + [7097] = 6748, + [7098] = 6756, + [7099] = 6758, + [7100] = 6752, + [7101] = 6753, + [7102] = 6752, + [7103] = 6759, + [7104] = 6755, + [7105] = 6756, + [7106] = 6760, + [7107] = 6761, + [7108] = 6748, + [7109] = 6750, + [7110] = 6758, + [7111] = 6759, + [7112] = 6830, + [7113] = 6760, + [7114] = 6754, + [7115] = 6749, + [7116] = 6761, + [7117] = 6748, + [7118] = 6764, + [7119] = 6749, + [7120] = 6747, + [7121] = 6752, + [7122] = 6764, + [7123] = 6750, + [7124] = 6764, + [7125] = 6753, + [7126] = 6748, + [7127] = 6755, + [7128] = 6756, + [7129] = 6761, + [7130] = 6758, + [7131] = 6759, + [7132] = 6760, + [7133] = 6754, + [7134] = 6760, [7135] = 7135, [7136] = 7136, - [7137] = 7137, + [7137] = 7136, [7138] = 7138, [7139] = 7139, - [7140] = 7136, - [7141] = 7136, - [7142] = 7137, - [7143] = 7137, + [7140] = 7138, + [7141] = 7135, + [7142] = 7136, + [7143] = 7135, [7144] = 7135, - [7145] = 7137, - [7146] = 7137, - [7147] = 7136, - [7148] = 7137, + [7145] = 7138, + [7146] = 7138, + [7147] = 3387, + [7148] = 7136, [7149] = 7135, - [7150] = 824, + [7150] = 7135, [7151] = 7136, - [7152] = 7136, - [7153] = 7137, - [7154] = 7135, - [7155] = 7137, + [7152] = 7138, + [7153] = 7135, + [7154] = 7136, + [7155] = 7138, [7156] = 7135, - [7157] = 7136, + [7157] = 7135, [7158] = 7136, - [7159] = 7137, - [7160] = 7135, - [7161] = 7136, + [7159] = 7135, + [7160] = 7136, + [7161] = 7135, [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, + [7164] = 7135, + [7165] = 7136, + [7166] = 7135, + [7167] = 7136, + [7168] = 7138, + [7169] = 1046, + [7170] = 7136, + [7171] = 7135, + [7172] = 7135, + [7173] = 7135, + [7174] = 7136, + [7175] = 7175, + [7176] = 7138, [7177] = 7136, - [7178] = 7137, + [7178] = 7135, [7179] = 7136, - [7180] = 7137, - [7181] = 7136, - [7182] = 1170, + [7180] = 7138, + [7181] = 7135, + [7182] = 7136, [7183] = 7135, - [7184] = 7135, - [7185] = 7137, - [7186] = 3568, - [7187] = 7135, - [7188] = 7137, - [7189] = 7136, - [7190] = 7137, - [7191] = 7137, - [7192] = 7137, - [7193] = 7135, - [7194] = 7136, + [7184] = 7136, + [7185] = 7135, + [7186] = 7136, + [7187] = 7138, + [7188] = 7135, + [7189] = 7135, + [7190] = 818, + [7191] = 7138, + [7192] = 7136, + [7193] = 7136, + [7194] = 7135, [7195] = 7135, - [7196] = 7135, + [7196] = 7136, [7197] = 7135, [7198] = 7136, - [7199] = 7137, + [7199] = 7136, [7200] = 7136, - [7201] = 7136, - [7202] = 7136, - [7203] = 7137, - [7204] = 7137, - [7205] = 7137, - [7206] = 7135, + [7201] = 7135, + [7202] = 7135, + [7203] = 7203, + [7204] = 7138, + [7205] = 7138, + [7206] = 7136, [7207] = 7136, - [7208] = 7135, - [7209] = 7209, + [7208] = 7138, + [7209] = 7138, [7210] = 7136, - [7211] = 7211, + [7211] = 825, [7212] = 7212, [7213] = 7213, - [7214] = 7214, - [7215] = 823, + [7214] = 820, + [7215] = 917, [7216] = 7216, - [7217] = 7213, - [7218] = 821, + [7217] = 7217, + [7218] = 823, [7219] = 7219, - [7220] = 884, - [7221] = 819, - [7222] = 816, - [7223] = 7223, + [7220] = 7220, + [7221] = 7213, + [7222] = 7222, + [7223] = 812, [7224] = 7224, - [7225] = 7225, + [7225] = 838, [7226] = 7226, [7227] = 7227, - [7228] = 3568, - [7229] = 3724, - [7230] = 7226, - [7231] = 7224, - [7232] = 7226, - [7233] = 7226, + [7228] = 7224, + [7229] = 7226, + [7230] = 7224, + [7231] = 7231, + [7232] = 7231, + [7233] = 7233, [7234] = 7227, - [7235] = 7224, + [7235] = 852, [7236] = 7227, - [7237] = 7226, + [7237] = 849, [7238] = 7226, [7239] = 7227, - [7240] = 7225, - [7241] = 7224, - [7242] = 7227, + [7240] = 7231, + [7241] = 7231, + [7242] = 7224, [7243] = 7227, - [7244] = 7225, - [7245] = 7225, - [7246] = 861, - [7247] = 854, - [7248] = 7227, - [7249] = 7225, - [7250] = 3568, + [7244] = 7231, + [7245] = 7226, + [7246] = 7226, + [7247] = 7224, + [7248] = 7248, + [7249] = 7231, + [7250] = 7226, [7251] = 7227, - [7252] = 7224, - [7253] = 7226, - [7254] = 7224, - [7255] = 7226, - [7256] = 7224, - [7257] = 7225, + [7252] = 842, + [7253] = 7224, + [7254] = 818, + [7255] = 3809, + [7256] = 3387, + [7257] = 7226, [7258] = 7224, - [7259] = 7226, - [7260] = 7260, - [7261] = 7225, + [7259] = 7231, + [7260] = 7231, + [7261] = 7226, [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, + [7263] = 7224, + [7264] = 7231, + [7265] = 7227, + [7266] = 7227, + [7267] = 7226, + [7268] = 7227, + [7269] = 7224, + [7270] = 7226, + [7271] = 7231, + [7272] = 7226, + [7273] = 7227, + [7274] = 7227, + [7275] = 7224, + [7276] = 3387, + [7277] = 7231, + [7278] = 7231, + [7279] = 7224, [7280] = 7280, [7281] = 7281, - [7282] = 7280, + [7282] = 7281, [7283] = 7283, - [7284] = 3883, - [7285] = 7280, + [7284] = 7281, + [7285] = 7285, [7286] = 7286, - [7287] = 7280, - [7288] = 7283, - [7289] = 7286, - [7290] = 1169, - [7291] = 7291, + [7287] = 7281, + [7288] = 7288, + [7289] = 7280, + [7290] = 7290, + [7291] = 7285, [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, + [7293] = 823, + [7294] = 7283, + [7295] = 1046, + [7296] = 7280, + [7297] = 7281, + [7298] = 825, + [7299] = 7283, + [7300] = 7281, + [7301] = 7283, + [7302] = 7280, + [7303] = 1018, + [7304] = 7304, + [7305] = 812, + [7306] = 7281, + [7307] = 7280, + [7308] = 7283, [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, + [7311] = 917, + [7312] = 7285, + [7313] = 7281, + [7314] = 7285, + [7315] = 7290, + [7316] = 7280, + [7317] = 7283, + [7318] = 818, + [7319] = 7285, + [7320] = 7288, + [7321] = 7290, + [7322] = 7283, + [7323] = 7288, + [7324] = 7290, + [7325] = 7285, + [7326] = 7285, + [7327] = 7280, + [7328] = 7285, + [7329] = 7283, + [7330] = 7330, + [7331] = 7288, + [7332] = 7290, + [7333] = 7281, + [7334] = 7285, + [7335] = 7280, + [7336] = 7283, + [7337] = 7281, + [7338] = 7281, + [7339] = 7288, + [7340] = 7290, + [7341] = 7280, + [7342] = 3809, + [7343] = 4018, + [7344] = 3920, + [7345] = 1042, + [7346] = 3948, + [7347] = 4017, + [7348] = 4008, + [7349] = 7283, + [7350] = 7283, + [7351] = 3387, + [7352] = 7285, + [7353] = 7285, + [7354] = 820, + [7355] = 7285, + [7356] = 7288, + [7357] = 1033, + [7358] = 1021, [7359] = 7359, - [7360] = 856, - [7361] = 7361, - [7362] = 7362, + [7360] = 7360, + [7361] = 7359, + [7362] = 7360, [7363] = 7363, - [7364] = 7364, - [7365] = 7363, - [7366] = 7364, - [7367] = 7367, - [7368] = 7361, - [7369] = 7362, - [7370] = 7362, + [7364] = 7363, + [7365] = 7365, + [7366] = 7365, + [7367] = 7363, + [7368] = 7365, + [7369] = 7363, + [7370] = 7370, [7371] = 7359, [7372] = 7372, - [7373] = 7361, - [7374] = 7374, - [7375] = 819, - [7376] = 7364, + [7373] = 7373, + [7374] = 7359, + [7375] = 7365, + [7376] = 7360, [7377] = 7377, - [7378] = 7367, - [7379] = 7377, - [7380] = 7380, - [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] = 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, + [7378] = 7373, + [7379] = 7359, + [7380] = 7363, + [7381] = 7360, + [7382] = 7372, + [7383] = 7372, + [7384] = 7365, + [7385] = 7363, + [7386] = 7370, + [7387] = 7372, + [7388] = 7388, + [7389] = 7389, + [7390] = 7365, + [7391] = 7363, + [7392] = 7360, + [7393] = 7359, + [7394] = 7373, + [7395] = 7370, + [7396] = 7372, + [7397] = 7360, + [7398] = 823, + [7399] = 7365, + [7400] = 7370, + [7401] = 7377, + [7402] = 7360, + [7403] = 7372, + [7404] = 7404, + [7405] = 7388, + [7406] = 7359, + [7407] = 7360, + [7408] = 7377, + [7409] = 825, + [7410] = 7389, + [7411] = 7370, + [7412] = 7404, + [7413] = 812, + [7414] = 7404, + [7415] = 7388, + [7416] = 7360, + [7417] = 7389, + [7418] = 7370, + [7419] = 7365, + [7420] = 7389, + [7421] = 7363, + [7422] = 7377, + [7423] = 7360, + [7424] = 7370, + [7425] = 7372, + [7426] = 820, + [7427] = 7377, + [7428] = 7388, + [7429] = 7377, + [7430] = 7359, + [7431] = 7373, + [7432] = 7404, + [7433] = 7388, + [7434] = 917, + [7435] = 7435, + [7436] = 7404, + [7437] = 7388, + [7438] = 7372, + [7439] = 7377, + [7440] = 7360, + [7441] = 7372, + [7442] = 7389, + [7443] = 7360, + [7444] = 7388, + [7445] = 7404, + [7446] = 7377, + [7447] = 7360, + [7448] = 7389, + [7449] = 7449, + [7450] = 7370, + [7451] = 7370, + [7452] = 7404, + [7453] = 7370, + [7454] = 7377, + [7455] = 7372, [7456] = 7363, - [7457] = 7363, - [7458] = 7374, + [7457] = 7370, + [7458] = 7388, [7459] = 7372, - [7460] = 7460, - [7461] = 7361, - [7462] = 7380, + [7460] = 7388, + [7461] = 7404, + [7462] = 7389, [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, + [7464] = 7360, + [7465] = 7377, + [7466] = 7388, + [7467] = 7372, + [7468] = 7404, + [7469] = 7370, + [7470] = 7370, + [7471] = 7388, + [7472] = 7372, + [7473] = 7473, + [7474] = 7365, + [7475] = 7365, + [7476] = 7389, + [7477] = 7404, + [7478] = 7363, + [7479] = 7372, + [7480] = 7388, + [7481] = 7377, + [7482] = 7370, + [7483] = 7404, + [7484] = 7404, + [7485] = 7363, + [7486] = 7404, + [7487] = 7373, + [7488] = 7388, + [7489] = 7404, + [7490] = 7360, + [7491] = 7377, + [7492] = 7359, + [7493] = 7373, + [7494] = 7388, + [7495] = 7389, + [7496] = 7377, + [7497] = 7372, + [7498] = 7360, + [7499] = 7370, + [7500] = 7389, + [7501] = 7388, + [7502] = 7365, + [7503] = 7372, + [7504] = 7388, + [7505] = 7404, + [7506] = 7377, + [7507] = 7388, + [7508] = 7404, + [7509] = 7389, + [7510] = 7377, + [7511] = 7388, + [7512] = 7359, + [7513] = 7373, + [7514] = 7404, + [7515] = 7388, + [7516] = 7377, + [7517] = 7404, + [7518] = 7360, + [7519] = 7404, + [7520] = 7370, + [7521] = 7372, + [7522] = 7377, + [7523] = 7404, + [7524] = 7359, + [7525] = 7373, + [7526] = 7372, + [7527] = 7388, + [7528] = 7370, + [7529] = 7370, + [7530] = 7370, + [7531] = 7388, + [7532] = 7388, + [7533] = 7404, + [7534] = 7360, + [7535] = 7388, + [7536] = 7372, + [7537] = 7377, + [7538] = 7377, [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, + [7540] = 7404, + [7541] = 7372, + [7542] = 7360, + [7543] = 7377, + [7544] = 7372, + [7545] = 7373, + [7546] = 7359, + [7547] = 7360, + [7548] = 7389, + [7549] = 7404, + [7550] = 7388, + [7551] = 7365, + [7552] = 7363, + [7553] = 7388, + [7554] = 7372, + [7555] = 7377, + [7556] = 7360, + [7557] = 7389, + [7558] = 7360, + [7559] = 7365, + [7560] = 7360, + [7561] = 7377, + [7562] = 7370, + [7563] = 7370, + [7564] = 7372, + [7565] = 7360, + [7566] = 7372, + [7567] = 7388, + [7568] = 7370, + [7569] = 7360, + [7570] = 3809, + [7571] = 7370, + [7572] = 7372, + [7573] = 7370, + [7574] = 7360, + [7575] = 7377, + [7576] = 7404, + [7577] = 7360, + [7578] = 7404, + [7579] = 7370, + [7580] = 7372, + [7581] = 7373, + [7582] = 7370, + [7583] = 7359, [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, + [7585] = 7363, + [7586] = 7404, + [7587] = 7363, + [7588] = 842, + [7589] = 7370, + [7590] = 838, + [7591] = 849, + [7592] = 7592, + [7593] = 7359, + [7594] = 7373, + [7595] = 7595, + [7596] = 7365, + [7597] = 7388, + [7598] = 7404, + [7599] = 7389, + [7600] = 7377, [7601] = 7377, - [7602] = 7380, + [7602] = 852, [7603] = 7603, [7604] = 7604, - [7605] = 7605, - [7606] = 7606, - [7607] = 3871, - [7608] = 3979, - [7609] = 7604, + [7605] = 7604, + [7606] = 7603, + [7607] = 7607, + [7608] = 7608, + [7609] = 7609, [7610] = 7610, - [7611] = 7611, - [7612] = 3889, - [7613] = 7549, - [7614] = 7610, + [7611] = 7603, + [7612] = 7607, + [7613] = 889, + [7614] = 7607, [7615] = 7615, - [7616] = 7610, - [7617] = 7617, - [7618] = 7610, - [7619] = 7603, - [7620] = 7611, - [7621] = 7617, - [7622] = 7610, + [7616] = 7615, + [7617] = 7609, + [7618] = 7604, + [7619] = 7608, + [7620] = 7607, + [7621] = 7609, + [7622] = 7603, [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, + [7624] = 7615, + [7625] = 7607, + [7626] = 7607, + [7627] = 7627, + [7628] = 7610, + [7629] = 7604, + [7630] = 7610, + [7631] = 7631, + [7632] = 7615, + [7633] = 7609, + [7634] = 7610, + [7635] = 7609, + [7636] = 7615, + [7637] = 7610, + [7638] = 7609, + [7639] = 7615, + [7640] = 7610, + [7641] = 7631, + [7642] = 7615, + [7643] = 7631, + [7644] = 7610, + [7645] = 7610, [7646] = 7610, - [7647] = 854, - [7648] = 7603, - [7649] = 7606, - [7650] = 7605, - [7651] = 7603, - [7652] = 7610, - [7653] = 861, - [7654] = 7611, + [7647] = 7615, + [7648] = 7607, + [7649] = 7609, + [7650] = 7627, + [7651] = 7627, + [7652] = 7603, + [7653] = 7607, + [7654] = 7631, [7655] = 7610, - [7656] = 7617, - [7657] = 7605, - [7658] = 7606, - [7659] = 7604, - [7660] = 7605, - [7661] = 7615, - [7662] = 7617, - [7663] = 7617, - [7664] = 7615, + [7656] = 7607, + [7657] = 7615, + [7658] = 7603, + [7659] = 7615, + [7660] = 7627, + [7661] = 7604, + [7662] = 7609, + [7663] = 7607, + [7664] = 7607, [7665] = 7603, - [7666] = 7606, - [7667] = 7603, - [7668] = 7603, - [7669] = 7615, - [7670] = 7611, - [7671] = 7615, - [7672] = 7610, - [7673] = 7605, - [7674] = 7611, - [7675] = 7606, - [7676] = 7639, + [7666] = 7615, + [7667] = 7627, + [7668] = 7610, + [7669] = 7609, + [7670] = 7603, + [7671] = 7631, + [7672] = 7603, + [7673] = 7615, + [7674] = 7608, + [7675] = 3920, + [7676] = 7607, [7677] = 7615, - [7678] = 7603, - [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, + [7678] = 7627, + [7679] = 7603, + [7680] = 4008, + [7681] = 7631, + [7682] = 7610, + [7683] = 7631, + [7684] = 7610, + [7685] = 7609, + [7686] = 7615, + [7687] = 7631, + [7688] = 7610, + [7689] = 7631, + [7690] = 7610, + [7691] = 7627, + [7692] = 4017, + [7693] = 3948, + [7694] = 4018, + [7695] = 7627, + [7696] = 7603, + [7697] = 7609, + [7698] = 7609, + [7699] = 7609, + [7700] = 7631, + [7701] = 7609, + [7702] = 7607, + [7703] = 7615, + [7704] = 7609, + [7705] = 7631, + [7706] = 7609, + [7707] = 7615, + [7708] = 7615, + [7709] = 7610, + [7710] = 7610, + [7711] = 7631, + [7712] = 7610, + [7713] = 7609, + [7714] = 7604, + [7715] = 849, + [7716] = 7615, + [7717] = 842, [7718] = 7610, - [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] = 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, + [7719] = 7610, + [7720] = 7609, + [7721] = 7627, + [7722] = 7610, + [7723] = 7631, + [7724] = 7607, + [7725] = 7609, + [7726] = 7603, + [7727] = 7604, + [7728] = 7615, + [7729] = 7627, + [7730] = 7604, + [7731] = 7473, + [7732] = 7610, + [7733] = 7627, + [7734] = 7603, + [7735] = 7603, + [7736] = 7607, + [7737] = 7627, + [7738] = 7603, + [7739] = 7615, + [7740] = 7610, + [7741] = 7607, + [7742] = 7627, + [7743] = 7615, + [7744] = 7610, + [7745] = 863, + [7746] = 7615, + [7747] = 7631, + [7748] = 7603, + [7749] = 7631, + [7750] = 7615, + [7751] = 7610, + [7752] = 7604, + [7753] = 7615, + [7754] = 7604, + [7755] = 7603, + [7756] = 838, + [7757] = 7610, + [7758] = 7603, [7759] = 7610, - [7760] = 7617, - [7761] = 7615, - [7762] = 7611, - [7763] = 7603, + [7760] = 7615, + [7761] = 7604, + [7762] = 7631, + [7763] = 7610, [7764] = 7615, - [7765] = 7611, - [7766] = 7617, - [7767] = 7603, - [7768] = 7617, - [7769] = 7615, - [7770] = 7603, - [7771] = 7603, - [7772] = 7610, + [7765] = 7607, + [7766] = 7610, + [7767] = 7615, + [7768] = 7627, + [7769] = 7627, + [7770] = 7610, + [7771] = 7627, + [7772] = 7615, [7773] = 7615, - [7774] = 7606, - [7775] = 7603, - [7776] = 7606, - [7777] = 7617, + [7774] = 7631, + [7775] = 7607, + [7776] = 7608, + [7777] = 7609, [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, + [7779] = 7609, + [7780] = 7610, + [7781] = 7608, + [7782] = 7603, + [7783] = 7610, + [7784] = 7631, + [7785] = 7615, + [7786] = 7615, + [7787] = 7607, + [7788] = 3809, + [7789] = 7631, + [7790] = 7627, + [7791] = 7607, + [7792] = 7631, + [7793] = 7603, + [7794] = 7627, + [7795] = 7631, [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] = 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, + [7797] = 7608, + [7798] = 7610, + [7799] = 7609, + [7800] = 7607, + [7801] = 7631, + [7802] = 7603, + [7803] = 7609, + [7804] = 7609, + [7805] = 7627, + [7806] = 852, + [7807] = 7627, + [7808] = 7615, + [7809] = 7631, + [7810] = 7603, + [7811] = 7603, + [7812] = 7631, + [7813] = 7627, + [7814] = 7604, + [7815] = 7627, + [7816] = 7607, + [7817] = 7609, + [7818] = 7604, + [7819] = 7631, + [7820] = 7607, + [7821] = 7627, + [7822] = 7603, + [7823] = 7603, + [7824] = 7603, [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, + [7826] = 7627, + [7827] = 7627, + [7828] = 7607, + [7829] = 7603, + [7830] = 7631, + [7831] = 7610, + [7832] = 7610, + [7833] = 7615, + [7834] = 7627, + [7835] = 7627, + [7836] = 7631, + [7837] = 7609, [7838] = 7615, - [7839] = 7610, - [7840] = 3979, - [7841] = 1162, - [7842] = 7482, - [7843] = 884, - [7844] = 3889, - [7845] = 3883, - [7846] = 1159, - [7847] = 3889, - [7848] = 3883, - [7849] = 3975, - [7850] = 3975, - [7851] = 3871, + [7839] = 7609, + [7840] = 4017, + [7841] = 3920, + [7842] = 1046, + [7843] = 4017, + [7844] = 3948, + [7845] = 7845, + [7846] = 4008, + [7847] = 3920, + [7848] = 1018, + [7849] = 1021, + [7850] = 917, + [7851] = 4018, [7852] = 7852, - [7853] = 5761, - [7854] = 1170, - [7855] = 1159, - [7856] = 7856, - [7857] = 816, - [7858] = 1162, - [7859] = 1168, - [7860] = 1169, - [7861] = 3979, + [7853] = 7592, + [7854] = 1033, + [7855] = 1046, + [7856] = 1042, + [7857] = 4018, + [7858] = 1018, + [7859] = 1021, + [7860] = 1033, + [7861] = 1042, [7862] = 7862, - [7863] = 1170, - [7864] = 1168, - [7865] = 1169, - [7866] = 3871, + [7863] = 4008, + [7864] = 3948, + [7865] = 812, + [7866] = 5734, [7867] = 7867, [7868] = 7868, - [7869] = 7867, + [7869] = 7869, [7870] = 7870, - [7871] = 7871, - [7872] = 7867, - [7873] = 816, + [7871] = 7867, + [7872] = 7872, + [7873] = 7873, [7874] = 7870, - [7875] = 7875, - [7876] = 7876, - [7877] = 7877, - [7878] = 7871, - [7879] = 7877, - [7880] = 7871, - [7881] = 7877, - [7882] = 7871, - [7883] = 7877, - [7884] = 7871, + [7875] = 7867, + [7876] = 7870, + [7877] = 7872, + [7878] = 7878, + [7879] = 7870, + [7880] = 7880, + [7881] = 7881, + [7882] = 7868, + [7883] = 7870, + [7884] = 7884, [7885] = 7868, - [7886] = 7886, - [7887] = 819, - [7888] = 3724, - [7889] = 7877, - [7890] = 7867, - [7891] = 825, - [7892] = 7886, - [7893] = 824, + [7886] = 7868, + [7887] = 7869, + [7888] = 7867, + [7889] = 7868, + [7890] = 7884, + [7891] = 7870, + [7892] = 7868, + [7893] = 7870, [7894] = 7867, - [7895] = 7886, - [7896] = 7896, - [7897] = 7870, + [7895] = 7868, + [7896] = 7872, + [7897] = 7884, [7898] = 7868, - [7899] = 7896, - [7900] = 7896, - [7901] = 7868, - [7902] = 7868, - [7903] = 7871, - [7904] = 7867, + [7899] = 7869, + [7900] = 7872, + [7901] = 7872, + [7902] = 7867, + [7903] = 7868, + [7904] = 7868, [7905] = 7870, - [7906] = 7868, - [7907] = 7907, - [7908] = 7908, - [7909] = 7896, - [7910] = 7896, - [7911] = 7870, + [7906] = 7881, + [7907] = 7884, + [7908] = 7872, + [7909] = 7873, + [7910] = 7870, + [7911] = 814, [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, + [7913] = 7868, + [7914] = 7867, + [7915] = 7878, + [7916] = 7868, + [7917] = 7873, + [7918] = 7872, + [7919] = 7870, + [7920] = 7872, + [7921] = 7873, + [7922] = 7868, + [7923] = 7923, + [7924] = 7872, + [7925] = 7869, + [7926] = 7872, + [7927] = 7869, + [7928] = 7872, + [7929] = 7878, + [7930] = 7930, + [7931] = 7870, + [7932] = 7867, + [7933] = 7872, + [7934] = 7884, [7935] = 7870, - [7936] = 7886, - [7937] = 7896, + [7936] = 7872, + [7937] = 7873, [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, + [7939] = 7869, + [7940] = 7881, + [7941] = 7869, + [7942] = 7867, + [7943] = 7868, + [7944] = 7867, + [7945] = 7945, + [7946] = 7872, + [7947] = 7884, + [7948] = 7868, + [7949] = 7878, + [7950] = 7881, + [7951] = 7867, + [7952] = 7878, + [7953] = 7872, + [7954] = 7868, + [7955] = 7868, + [7956] = 7870, + [7957] = 7867, + [7958] = 7872, + [7959] = 7868, + [7960] = 7881, + [7961] = 7867, + [7962] = 7872, + [7963] = 7867, + [7964] = 7867, [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, + [7966] = 7868, + [7967] = 7868, + [7968] = 7869, + [7969] = 7867, + [7970] = 7872, + [7971] = 820, + [7972] = 7872, + [7973] = 7873, + [7974] = 7872, + [7975] = 7867, + [7976] = 7867, + [7977] = 7872, + [7978] = 7868, + [7979] = 7867, + [7980] = 818, + [7981] = 7872, + [7982] = 7872, [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] = 8005, - [8006] = 7867, - [8007] = 7870, - [8008] = 7877, - [8009] = 7868, - [8010] = 7870, - [8011] = 7867, - [8012] = 7877, + [7984] = 7872, + [7985] = 7884, + [7986] = 7867, + [7987] = 7867, + [7988] = 7884, + [7989] = 7868, + [7990] = 7870, + [7991] = 7872, + [7992] = 7868, + [7993] = 7872, + [7994] = 7869, + [7995] = 7867, + [7996] = 7868, + [7997] = 7884, + [7998] = 7868, + [7999] = 7869, + [8000] = 7867, + [8001] = 7867, + [8002] = 7884, + [8003] = 7867, + [8004] = 7869, + [8005] = 7884, + [8006] = 7870, + [8007] = 812, + [8008] = 3809, + [8009] = 8009, + [8010] = 7881, + [8011] = 7872, + [8012] = 7870, [8013] = 7867, - [8014] = 7868, - [8015] = 7867, - [8016] = 7871, + [8014] = 7870, + [8015] = 7869, + [8016] = 7873, [8017] = 8017, - [8018] = 7867, - [8019] = 7907, - [8020] = 7870, - [8021] = 7896, - [8022] = 7877, - [8023] = 7886, - [8024] = 7896, - [8025] = 7896, - [8026] = 8026, + [8018] = 8018, + [8019] = 7870, + [8020] = 8020, + [8021] = 7870, + [8022] = 7870, + [8023] = 8023, + [8024] = 7870, + [8025] = 7878, + [8026] = 7884, [8027] = 8027, [8028] = 8028, - [8029] = 8029, + [8029] = 814, [8030] = 8030, [8031] = 8031, - [8032] = 8029, - [8033] = 8033, + [8032] = 8031, + [8033] = 8031, [8034] = 8027, - [8035] = 8035, - [8036] = 8036, - [8037] = 8030, - [8038] = 819, - [8039] = 8039, - [8040] = 816, - [8041] = 8030, - [8042] = 8039, + [8035] = 8027, + [8036] = 844, + [8037] = 8037, + [8038] = 8038, + [8039] = 8030, + [8040] = 8040, + [8041] = 8031, + [8042] = 8042, [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, + [8044] = 8044, + [8045] = 8038, + [8046] = 8044, + [8047] = 8038, + [8048] = 8048, + [8049] = 8040, + [8050] = 812, + [8051] = 8037, + [8052] = 8031, + [8053] = 820, + [8054] = 8027, + [8055] = 8048, + [8056] = 8044, + [8057] = 8040, + [8058] = 8038, + [8059] = 8037, + [8060] = 8037, + [8061] = 8040, + [8062] = 8030, + [8063] = 8027, [8064] = 8031, - [8065] = 8027, - [8066] = 8030, + [8065] = 8030, + [8066] = 8037, [8067] = 8031, - [8068] = 8036, - [8069] = 8029, - [8070] = 8031, - [8071] = 8027, - [8072] = 8030, - [8073] = 8027, + [8068] = 8048, + [8069] = 8038, + [8070] = 8040, + [8071] = 8038, + [8072] = 8044, + [8073] = 8044, [8074] = 8030, - [8075] = 8029, + [8075] = 8040, [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, + [8077] = 8044, + [8078] = 8031, + [8079] = 8037, + [8080] = 8040, + [8081] = 8048, + [8082] = 8027, + [8083] = 8044, + [8084] = 8030, + [8085] = 8038, + [8086] = 8044, + [8087] = 8030, + [8088] = 8027, + [8089] = 8037, + [8090] = 8031, + [8091] = 8048, + [8092] = 8037, + [8093] = 8048, + [8094] = 8038, + [8095] = 8040, + [8096] = 8031, + [8097] = 8044, + [8098] = 8038, + [8099] = 8099, + [8100] = 8044, + [8101] = 8048, + [8102] = 8031, + [8103] = 8030, + [8104] = 8037, + [8105] = 8037, + [8106] = 8040, + [8107] = 8040, + [8108] = 8038, + [8109] = 8040, + [8110] = 8031, + [8111] = 8030, + [8112] = 8037, + [8113] = 8037, + [8114] = 8038, + [8115] = 8040, + [8116] = 8031, + [8117] = 8038, + [8118] = 8037, + [8119] = 8040, + [8120] = 8027, + [8121] = 8027, + [8122] = 8031, + [8123] = 8040, + [8124] = 8030, + [8125] = 8038, + [8126] = 8044, + [8127] = 8040, + [8128] = 8048, + [8129] = 8031, + [8130] = 8048, + [8131] = 8038, + [8132] = 8037, + [8133] = 8027, + [8134] = 8044, + [8135] = 8027, + [8136] = 8040, + [8137] = 8040, + [8138] = 8030, + [8139] = 8044, + [8140] = 8048, + [8141] = 8031, + [8142] = 8048, + [8143] = 8031, + [8144] = 8027, + [8145] = 8030, + [8146] = 8146, + [8147] = 8037, + [8148] = 8038, + [8149] = 8030, + [8150] = 8027, + [8151] = 8151, + [8152] = 8040, + [8153] = 8027, + [8154] = 8031, + [8155] = 8040, + [8156] = 8028, + [8157] = 8038, + [8158] = 8038, + [8159] = 8040, + [8160] = 8031, + [8161] = 8038, + [8162] = 8042, + [8163] = 8028, + [8164] = 8048, + [8165] = 8030, + [8166] = 8044, + [8167] = 8040, + [8168] = 8031, + [8169] = 8038, + [8170] = 8038, + [8171] = 8028, + [8172] = 8042, + [8173] = 8028, + [8174] = 8044, + [8175] = 8042, + [8176] = 8037, + [8177] = 8048, + [8178] = 8031, + [8179] = 8037, + [8180] = 8048, + [8181] = 8048, + [8182] = 8042, + [8183] = 8044, + [8184] = 8031, + [8185] = 8030, + [8186] = 8186, + [8187] = 8038, + [8188] = 8042, + [8189] = 8027, + [8190] = 8040, + [8191] = 8146, + [8192] = 8031, + [8193] = 8040, + [8194] = 8028, + [8195] = 8038, + [8196] = 8196, + [8197] = 8027, + [8198] = 8146, + [8199] = 8048, + [8200] = 8030, + [8201] = 8044, + [8202] = 8028, + [8203] = 8203, + [8204] = 8038, + [8205] = 8042, + [8206] = 8027, [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, + [8208] = 8038, + [8209] = 855, + [8210] = 8210, + [8211] = 8038, + [8212] = 8212, + [8213] = 8030, + [8214] = 8042, + [8215] = 8044, + [8216] = 8028, + [8217] = 8037, + [8218] = 8027, + [8219] = 8028, + [8220] = 8031, + [8221] = 853, + [8222] = 8037, + [8223] = 8223, + [8224] = 974, + [8225] = 8038, + [8226] = 8048, + [8227] = 8031, + [8228] = 8044, + [8229] = 814, + [8230] = 8048, + [8231] = 8040, + [8232] = 8146, + [8233] = 8040, + [8234] = 8040, + [8235] = 8031, + [8236] = 8027, + [8237] = 8037, + [8238] = 8030, + [8239] = 8038, + [8240] = 8027, + [8241] = 8048, + [8242] = 8037, + [8243] = 8044, + [8244] = 8030, + [8245] = 8048, + [8246] = 8146, [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] = 8026, + [8248] = 8037, + [8249] = 8249, + [8250] = 8030, + [8251] = 8251, + [8252] = 8044, + [8253] = 8048, + [8254] = 8044, + [8255] = 8030, + [8256] = 8027, + [8257] = 8030, + [8258] = 8040, + [8259] = 8037, + [8260] = 8048, + [8261] = 8044, + [8262] = 8044, + [8263] = 8027, + [8264] = 8030, + [8265] = 8027, + [8266] = 8037, + [8267] = 8042, + [8268] = 8048, + [8269] = 8044, [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, + [8271] = 8030, + [8272] = 8037, + [8273] = 8030, + [8274] = 8027, + [8275] = 8146, + [8276] = 8044, + [8277] = 8048, + [8278] = 8037, + [8279] = 8044, + [8280] = 8048, + [8281] = 8048, + [8282] = 8048, + [8283] = 8027, + [8284] = 8037, + [8285] = 8285, + [8286] = 8286, + [8287] = 8286, + [8288] = 8286, + [8289] = 8286, + [8290] = 8286, + [8291] = 926, + [8292] = 975, + [8293] = 8286, + [8294] = 1006, + [8295] = 973, + [8296] = 8286, + [8297] = 8286, + [8298] = 8286, + [8299] = 1013, + [8300] = 8286, + [8301] = 8286, + [8302] = 8286, + [8303] = 8286, + [8304] = 8286, + [8305] = 8286, + [8306] = 8286, + [8307] = 8286, + [8308] = 8286, + [8309] = 8286, + [8310] = 994, + [8311] = 8286, + [8312] = 8286, + [8313] = 8286, + [8314] = 917, + [8315] = 917, + [8316] = 8286, + [8317] = 8286, + [8318] = 995, + [8319] = 8286, + [8320] = 8286, + [8321] = 1003, + [8322] = 8286, + [8323] = 825, + [8324] = 856, + [8325] = 819, + [8326] = 818, + [8327] = 833, + [8328] = 833, + [8329] = 813, + [8330] = 817, + [8331] = 824, + [8332] = 821, + [8333] = 856, + [8334] = 823, + [8335] = 905, + [8336] = 851, + [8337] = 820, + [8338] = 856, + [8339] = 843, + [8340] = 8340, + [8341] = 812, + [8342] = 8342, + [8343] = 819, + [8344] = 846, + [8345] = 824, + [8346] = 845, + [8347] = 822, + [8348] = 833, + [8349] = 8340, + [8350] = 821, + [8351] = 817, + [8352] = 813, + [8353] = 839, + [8354] = 8340, + [8355] = 8340, + [8356] = 8340, + [8357] = 8340, + [8358] = 839, + [8359] = 845, + [8360] = 8360, + [8361] = 828, + [8362] = 8360, + [8363] = 8360, + [8364] = 8360, + [8365] = 8360, + [8366] = 852, + [8367] = 857, + [8368] = 835, + [8369] = 8360, + [8370] = 8370, + [8371] = 8360, + [8372] = 859, + [8373] = 8360, + [8374] = 8360, + [8375] = 8360, + [8376] = 8360, + [8377] = 8360, + [8378] = 7473, + [8379] = 8379, + [8380] = 8360, + [8381] = 8360, + [8382] = 8360, + [8383] = 846, + [8384] = 831, + [8385] = 8360, + [8386] = 849, + [8387] = 851, + [8388] = 8360, + [8389] = 8360, + [8390] = 8360, + [8391] = 8360, + [8392] = 843, + [8393] = 837, + [8394] = 8360, + [8395] = 841, + [8396] = 838, + [8397] = 854, + [8398] = 8360, + [8399] = 905, + [8400] = 8360, + [8401] = 842, + [8402] = 8360, + [8403] = 923, + [8404] = 882, + [8405] = 828, + [8406] = 8406, + [8407] = 931, + [8408] = 917, + [8409] = 919, + [8410] = 970, [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, + [8412] = 880, + [8413] = 968, + [8414] = 883, + [8415] = 918, + [8416] = 8406, + [8417] = 977, + [8418] = 976, + [8419] = 909, + [8420] = 895, + [8421] = 837, + [8422] = 8406, + [8423] = 947, + [8424] = 870, + [8425] = 8411, + [8426] = 865, + [8427] = 8411, + [8428] = 8428, + [8429] = 924, + [8430] = 8411, + [8431] = 908, + [8432] = 857, + [8433] = 854, + [8434] = 903, + [8435] = 980, + [8436] = 8411, + [8437] = 885, + [8438] = 864, + [8439] = 8406, + [8440] = 835, + [8441] = 981, + [8442] = 884, + [8443] = 867, + [8444] = 3387, + [8445] = 841, + [8446] = 878, + [8447] = 831, + [8448] = 8448, + [8449] = 8406, + [8450] = 896, + [8451] = 7473, + [8452] = 8411, + [8453] = 859, + [8454] = 8406, + [8455] = 922, + [8456] = 902, + [8457] = 920, [8458] = 8458, [8459] = 8459, - [8460] = 8460, - [8461] = 8459, + [8460] = 903, + [8461] = 909, [8462] = 8462, - [8463] = 8462, - [8464] = 8458, - [8465] = 8460, + [8463] = 8463, + [8464] = 968, + [8465] = 8465, [8466] = 8459, - [8467] = 8458, - [8468] = 8462, - [8469] = 1169, - [8470] = 1168, - [8471] = 8471, + [8467] = 8467, + [8468] = 890, + [8469] = 8462, + [8470] = 8462, + [8471] = 958, [8472] = 8462, - [8473] = 1162, - [8474] = 8474, - [8475] = 8460, + [8473] = 8465, + [8474] = 8467, + [8475] = 902, [8476] = 8459, - [8477] = 8458, - [8478] = 1159, - [8479] = 1170, - [8480] = 8460, - [8481] = 8458, - [8482] = 8460, - [8483] = 8462, + [8477] = 8465, + [8478] = 8462, + [8479] = 920, + [8480] = 8467, + [8481] = 8465, + [8482] = 8462, + [8483] = 922, [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, + [8485] = 8485, + [8486] = 999, + [8487] = 8462, + [8488] = 1042, + [8489] = 1033, + [8490] = 1018, + [8491] = 1021, + [8492] = 927, + [8493] = 8467, + [8494] = 8459, + [8495] = 8467, + [8496] = 8465, + [8497] = 8462, + [8498] = 8462, + [8499] = 8465, + [8500] = 8465, + [8501] = 8459, + [8502] = 8462, [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, + [8504] = 8462, + [8505] = 885, + [8506] = 908, + [8507] = 8467, + [8508] = 8463, + [8509] = 8503, + [8510] = 868, + [8511] = 923, + [8512] = 8463, + [8513] = 894, + [8514] = 8465, + [8515] = 8459, + [8516] = 8462, + [8517] = 8462, + [8518] = 1044, + [8519] = 867, + [8520] = 8520, + [8521] = 8467, + [8522] = 8465, + [8523] = 8467, + [8524] = 8465, + [8525] = 884, + [8526] = 882, + [8527] = 8467, + [8528] = 8459, + [8529] = 8459, + [8530] = 8459, + [8531] = 8462, + [8532] = 8465, + [8533] = 8465, + [8534] = 8459, + [8535] = 928, + [8536] = 8467, + [8537] = 937, + [8538] = 865, + [8539] = 8503, + [8540] = 8463, + [8541] = 8467, + [8542] = 8465, + [8543] = 864, + [8544] = 959, + [8545] = 8462, + [8546] = 880, + [8547] = 8459, + [8548] = 8462, + [8549] = 8465, + [8550] = 883, + [8551] = 8467, + [8552] = 8462, + [8553] = 8459, + [8554] = 8467, + [8555] = 8462, + [8556] = 970, + [8557] = 895, + [8558] = 947, + [8559] = 8503, + [8560] = 8459, + [8561] = 8467, + [8562] = 8465, + [8563] = 8503, + [8564] = 8465, + [8565] = 919, + [8566] = 924, + [8567] = 8459, + [8568] = 878, + [8569] = 1046, + [8570] = 8467, + [8571] = 8462, + [8572] = 8462, + [8573] = 8462, + [8574] = 931, + [8575] = 8467, + [8576] = 8465, + [8577] = 8459, + [8578] = 8465, + [8579] = 8459, + [8580] = 870, + [8581] = 8467, + [8582] = 8467, + [8583] = 918, + [8584] = 965, + [8585] = 8467, + [8586] = 8462, + [8587] = 1004, + [8588] = 8459, + [8589] = 8459, + [8590] = 8463, + [8591] = 8462, + [8592] = 8465, + [8593] = 8459, + [8594] = 8467, + [8595] = 8462, + [8596] = 8465, + [8597] = 8459, + [8598] = 8467, + [8599] = 981, + [8600] = 8465, + [8601] = 8459, + [8602] = 8465, + [8603] = 8467, + [8604] = 8467, + [8605] = 8503, + [8606] = 8462, + [8607] = 8459, + [8608] = 977, + [8609] = 8465, + [8610] = 8467, + [8611] = 8462, + [8612] = 8467, + [8613] = 976, + [8614] = 980, + [8615] = 8459, + [8616] = 8467, + [8617] = 8459, + [8618] = 8463, + [8619] = 8459, + [8620] = 8465, + [8621] = 8467, + [8622] = 814, + [8623] = 8459, + [8624] = 8459, + [8625] = 8465, + [8626] = 8465, + [8627] = 1140, + [8628] = 896, + [8629] = 8462, + [8630] = 8465, + [8631] = 8631, + [8632] = 8632, [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, + [8634] = 8631, + [8635] = 8633, + [8636] = 946, + [8637] = 8637, + [8638] = 8632, + [8639] = 825, + [8640] = 1112, + [8641] = 823, + [8642] = 8633, + [8643] = 8631, + [8644] = 8631, + [8645] = 965, + [8646] = 8633, + [8647] = 8631, + [8648] = 8633, + [8649] = 8632, + [8650] = 8637, + [8651] = 8632, + [8652] = 8631, + [8653] = 8637, [8654] = 8654, - [8655] = 945, - [8656] = 946, - [8657] = 8633, - [8658] = 8636, - [8659] = 8633, - [8660] = 8634, - [8661] = 8635, - [8662] = 8636, - [8663] = 8663, + [8655] = 1000, + [8656] = 1001, + [8657] = 8657, + [8658] = 8632, + [8659] = 927, + [8660] = 8632, + [8661] = 8631, + [8662] = 8632, + [8663] = 8637, [8664] = 8664, - [8665] = 8636, - [8666] = 8633, - [8667] = 8635, - [8668] = 8634, - [8669] = 8635, - [8670] = 8636, - [8671] = 8635, - [8672] = 8636, + [8665] = 8631, + [8666] = 8632, + [8667] = 8637, + [8668] = 3809, + [8669] = 8633, + [8670] = 8631, + [8671] = 999, + [8672] = 8633, [8673] = 8673, - [8674] = 939, + [8674] = 8637, [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] = 932, - [8701] = 1000, - [8702] = 8702, - [8703] = 8633, + [8676] = 8633, + [8677] = 8677, + [8678] = 8631, + [8679] = 8637, + [8680] = 8680, + [8681] = 8633, + [8682] = 8633, + [8683] = 8632, + [8684] = 8631, + [8685] = 959, + [8686] = 8633, + [8687] = 971, + [8688] = 958, + [8689] = 8637, + [8690] = 8633, + [8691] = 8637, + [8692] = 8632, + [8693] = 969, + [8694] = 8631, + [8695] = 8637, + [8696] = 8631, + [8697] = 8632, + [8698] = 941, + [8699] = 8632, + [8700] = 8637, + [8701] = 940, + [8702] = 8632, + [8703] = 8632, [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, + [8705] = 998, + [8706] = 8706, + [8707] = 964, + [8708] = 997, + [8709] = 8709, + [8710] = 952, + [8711] = 8633, + [8712] = 8633, + [8713] = 8637, + [8714] = 996, + [8715] = 8631, + [8716] = 8637, + [8717] = 8637, + [8718] = 8633, + [8719] = 8633, + [8720] = 8637, + [8721] = 8632, + [8722] = 8632, + [8723] = 8631, + [8724] = 8631, + [8725] = 8633, + [8726] = 1125, + [8727] = 8632, + [8728] = 8637, + [8729] = 954, + [8730] = 8637, + [8731] = 8633, + [8732] = 942, + [8733] = 938, + [8734] = 8631, + [8735] = 8633, + [8736] = 8632, + [8737] = 8633, + [8738] = 8637, + [8739] = 8632, + [8740] = 8631, + [8741] = 8631, + [8742] = 932, + [8743] = 8637, + [8744] = 8744, + [8745] = 8745, + [8746] = 8631, + [8747] = 8747, + [8748] = 890, + [8749] = 8749, + [8750] = 957, + [8751] = 935, + [8752] = 929, + [8753] = 8631, + [8754] = 8632, + [8755] = 8633, + [8756] = 8637, + [8757] = 8632, + [8758] = 8637, + [8759] = 8632, + [8760] = 8631, + [8761] = 937, + [8762] = 8637, + [8763] = 8637, + [8764] = 928, + [8765] = 8632, + [8766] = 8637, + [8767] = 1044, + [8768] = 8632, + [8769] = 8637, + [8770] = 8633, + [8771] = 8632, + [8772] = 8772, + [8773] = 8632, + [8774] = 8633, + [8775] = 8631, + [8776] = 8631, + [8777] = 8631, + [8778] = 8633, + [8779] = 8637, + [8780] = 8780, + [8781] = 8637, + [8782] = 8632, + [8783] = 8631, + [8784] = 961, + [8785] = 8633, + [8786] = 951, + [8787] = 1140, + [8788] = 894, + [8789] = 933, + [8790] = 8790, + [8791] = 8631, + [8792] = 8792, + [8793] = 8793, + [8794] = 8794, + [8795] = 8795, + [8796] = 872, [8797] = 8797, [8798] = 8798, [8799] = 8799, @@ -11388,8778 +11401,5387 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8801] = 8801, [8802] = 8802, [8803] = 8803, - [8804] = 3724, + [8804] = 8804, [8805] = 8805, - [8806] = 8806, - [8807] = 8807, - [8808] = 8808, + [8806] = 856, + [8807] = 1002, + [8808] = 8798, [8809] = 8809, [8810] = 8810, - [8811] = 8798, + [8811] = 8804, [8812] = 8812, [8813] = 8813, - [8814] = 8799, + [8814] = 8814, [8815] = 8802, - [8816] = 8803, - [8817] = 8808, - [8818] = 8809, - [8819] = 8800, + [8816] = 8816, + [8817] = 1143, + [8818] = 8792, + [8819] = 1015, [8820] = 8820, - [8821] = 8813, - [8822] = 8806, + [8821] = 8821, + [8822] = 8793, [8823] = 8823, - [8824] = 8824, - [8825] = 851, - [8826] = 8826, - [8827] = 8796, - [8828] = 8801, + [8824] = 8802, + [8825] = 8793, + [8826] = 8797, + [8827] = 8827, + [8828] = 8828, [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, + [8830] = 8794, + [8831] = 8831, + [8832] = 8801, + [8833] = 8800, + [8834] = 8800, + [8835] = 8800, + [8836] = 8801, + [8837] = 8797, + [8838] = 8810, + [8839] = 8804, + [8840] = 8795, + [8841] = 8801, + [8842] = 8842, + [8843] = 8843, + [8844] = 8805, + [8845] = 8814, + [8846] = 8793, + [8847] = 8813, + [8848] = 8814, + [8849] = 8798, + [8850] = 940, + [8851] = 8823, + [8852] = 8800, + [8853] = 8801, + [8854] = 941, + [8855] = 8794, + [8856] = 8843, + [8857] = 8804, [8858] = 8858, - [8859] = 8809, - [8860] = 8801, - [8861] = 8803, - [8862] = 8802, - [8863] = 8863, - [8864] = 8800, - [8865] = 8799, - [8866] = 8797, - [8867] = 1034, - [8868] = 1028, - [8869] = 8838, + [8859] = 8795, + [8860] = 8823, + [8861] = 8813, + [8862] = 8804, + [8863] = 8792, + [8864] = 8821, + [8865] = 8800, + [8866] = 8814, + [8867] = 8813, + [8868] = 8792, + [8869] = 8823, [8870] = 8870, - [8871] = 8833, - [8872] = 8809, - [8873] = 8797, - [8874] = 8833, - [8875] = 8809, - [8876] = 8797, - [8877] = 937, - [8878] = 8833, - [8879] = 8870, - [8880] = 960, - [8881] = 8805, + [8871] = 8814, + [8872] = 8814, + [8873] = 8843, + [8874] = 8816, + [8875] = 8875, + [8876] = 8876, + [8877] = 8800, + [8878] = 8802, + [8879] = 8810, + [8880] = 8880, + [8881] = 8801, [8882] = 8882, - [8883] = 8883, - [8884] = 966, - [8885] = 8809, + [8883] = 8797, + [8884] = 1113, + [8885] = 8797, [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, + [8887] = 8794, + [8888] = 8814, + [8889] = 8794, + [8890] = 8802, + [8891] = 8797, + [8892] = 8813, + [8893] = 8798, + [8894] = 8801, + [8895] = 1103, + [8896] = 8804, + [8897] = 8801, + [8898] = 8898, + [8899] = 8795, + [8900] = 8793, + [8901] = 8805, + [8902] = 8823, + [8903] = 8800, + [8904] = 8821, + [8905] = 8905, + [8906] = 8798, + [8907] = 8800, + [8908] = 8908, + [8909] = 8794, + [8910] = 8804, + [8911] = 8911, + [8912] = 8810, + [8913] = 8913, + [8914] = 8914, + [8915] = 8915, + [8916] = 8792, + [8917] = 8917, + [8918] = 8816, + [8919] = 8813, + [8920] = 8813, + [8921] = 946, + [8922] = 8804, + [8923] = 8814, + [8924] = 8800, + [8925] = 8800, + [8926] = 8801, + [8927] = 8813, + [8928] = 8905, + [8929] = 8929, + [8930] = 8930, + [8931] = 8931, [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, + [8933] = 8828, + [8934] = 8813, + [8935] = 8935, + [8936] = 8936, + [8937] = 8794, + [8938] = 8814, + [8939] = 8798, + [8940] = 8940, + [8941] = 8800, + [8942] = 8942, + [8943] = 8814, + [8944] = 954, + [8945] = 833, + [8946] = 8940, + [8947] = 8813, + [8948] = 8828, + [8949] = 8886, + [8950] = 8823, + [8951] = 8870, + [8952] = 8952, + [8953] = 8813, + [8954] = 8821, + [8955] = 957, + [8956] = 8956, + [8957] = 8792, + [8958] = 8958, + [8959] = 1007, + [8960] = 8798, + [8961] = 8814, + [8962] = 827, + [8963] = 8816, + [8964] = 8801, + [8965] = 961, + [8966] = 8905, + [8967] = 8813, + [8968] = 8905, + [8969] = 8793, + [8970] = 8814, + [8971] = 8971, + [8972] = 8800, + [8973] = 8814, + [8974] = 8801, + [8975] = 8813, + [8976] = 8800, + [8977] = 8801, + [8978] = 8940, + [8979] = 8828, + [8980] = 8886, + [8981] = 8800, + [8982] = 8810, + [8983] = 8823, + [8984] = 8870, + [8985] = 8816, + [8986] = 8898, + [8987] = 8898, + [8988] = 8794, + [8989] = 879, + [8990] = 8805, + [8991] = 8814, + [8992] = 8813, + [8993] = 8993, + [8994] = 8800, + [8995] = 8802, + [8996] = 8996, + [8997] = 8997, + [8998] = 844, + [8999] = 996, + [9000] = 8801, + [9001] = 8905, + [9002] = 836, + [9003] = 997, + [9004] = 8898, + [9005] = 8793, + [9006] = 998, + [9007] = 8823, + [9008] = 8801, + [9009] = 8813, + [9010] = 8814, + [9011] = 8940, + [9012] = 1000, + [9013] = 8797, + [9014] = 1001, + [9015] = 9015, + [9016] = 9016, + [9017] = 8800, + [9018] = 9018, + [9019] = 8886, + [9020] = 8800, + [9021] = 8798, + [9022] = 8801, [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] = 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] = 8796, - [9090] = 9090, - [9091] = 8826, - [9092] = 8806, - [9093] = 9093, - [9094] = 8805, - [9095] = 8801, - [9096] = 8806, - [9097] = 9097, - [9098] = 1017, + [9024] = 8795, + [9025] = 9025, + [9026] = 8813, + [9027] = 855, + [9028] = 9028, + [9029] = 8898, + [9030] = 8795, + [9031] = 9031, + [9032] = 8801, + [9033] = 933, + [9034] = 8801, + [9035] = 8898, + [9036] = 8905, + [9037] = 8801, + [9038] = 8821, + [9039] = 8794, + [9040] = 8958, + [9041] = 8801, + [9042] = 8800, + [9043] = 8940, + [9044] = 8823, + [9045] = 8828, + [9046] = 9046, + [9047] = 8886, + [9048] = 8814, + [9049] = 8870, + [9050] = 971, + [9051] = 8940, + [9052] = 8958, + [9053] = 8798, + [9054] = 969, + [9055] = 8843, + [9056] = 8813, + [9057] = 8821, + [9058] = 8810, + [9059] = 8828, + [9060] = 8813, + [9061] = 8802, + [9062] = 8823, + [9063] = 8886, + [9064] = 8843, + [9065] = 8805, + [9066] = 8810, + [9067] = 8814, + [9068] = 8795, + [9069] = 8823, + [9070] = 8816, + [9071] = 964, + [9072] = 952, + [9073] = 8813, + [9074] = 8795, + [9075] = 8814, + [9076] = 8800, + [9077] = 8870, + [9078] = 8958, + [9079] = 942, + [9080] = 938, + [9081] = 8792, + [9082] = 932, + [9083] = 935, + [9084] = 8821, + [9085] = 8810, + [9086] = 929, + [9087] = 9087, + [9088] = 3809, + [9089] = 951, + [9090] = 8843, + [9091] = 8810, + [9092] = 8804, + [9093] = 8792, + [9094] = 8813, + [9095] = 8814, + [9096] = 8795, + [9097] = 8792, + [9098] = 9098, [9099] = 9099, [9100] = 9100, - [9101] = 1052, + [9101] = 9099, [9102] = 9102, - [9103] = 9099, - [9104] = 9100, + [9103] = 9103, + [9104] = 9102, [9105] = 9099, - [9106] = 9100, - [9107] = 9107, - [9108] = 9108, - [9109] = 9107, - [9110] = 1160, - [9111] = 9111, - [9112] = 9112, - [9113] = 1133, - [9114] = 9114, - [9115] = 1165, - [9116] = 9097, - [9117] = 9107, + [9106] = 9102, + [9107] = 9103, + [9108] = 9099, + [9109] = 872, + [9110] = 9099, + [9111] = 9102, + [9112] = 9103, + [9113] = 9113, + [9114] = 9100, + [9115] = 9115, + [9116] = 9099, + [9117] = 9102, [9118] = 9118, - [9119] = 1063, - [9120] = 3889, - [9121] = 3979, - [9122] = 9122, - [9123] = 1062, - [9124] = 3975, - [9125] = 9125, - [9126] = 3871, - [9127] = 9127, - [9128] = 9128, + [9119] = 9115, + [9120] = 9120, + [9121] = 9121, + [9122] = 9099, + [9123] = 9102, + [9124] = 9102, + [9125] = 879, + [9126] = 9100, + [9127] = 9099, + [9128] = 9100, [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] = 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] = 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, + [9130] = 9130, + [9131] = 9099, + [9132] = 9132, + [9133] = 9102, + [9134] = 9134, + [9135] = 9132, + [9136] = 9130, + [9137] = 9134, + [9138] = 9138, + [9139] = 9113, + [9140] = 9113, + [9141] = 9103, + [9142] = 9142, + [9143] = 9143, + [9144] = 9144, + [9145] = 9134, + [9146] = 9100, + [9147] = 9103, + [9148] = 9134, + [9149] = 9134, + [9150] = 9103, + [9151] = 9134, + [9152] = 9115, + [9153] = 9118, + [9154] = 9100, + [9155] = 9134, + [9156] = 9113, + [9157] = 9100, + [9158] = 9103, + [9159] = 9143, + [9160] = 9118, + [9161] = 9113, + [9162] = 1151, + [9163] = 9143, + [9164] = 9113, + [9165] = 9143, + [9166] = 9134, + [9167] = 1106, + [9168] = 9143, + [9169] = 9134, + [9170] = 9121, + [9171] = 9115, + [9172] = 9132, + [9173] = 9100, + [9174] = 1162, + [9175] = 1163, + [9176] = 9099, + [9177] = 9102, + [9178] = 9130, + [9179] = 9102, + [9180] = 9142, + [9181] = 9103, + [9182] = 9182, + [9183] = 9183, + [9184] = 9184, + [9185] = 9143, + [9186] = 9186, + [9187] = 9113, + [9188] = 1108, + [9189] = 1112, + [9190] = 9184, + [9191] = 9099, + [9192] = 9099, + [9193] = 9102, + [9194] = 9143, + [9195] = 9195, + [9196] = 9103, + [9197] = 9184, + [9198] = 1175, + [9199] = 9199, + [9200] = 9099, + [9201] = 9143, + [9202] = 9113, + [9203] = 9102, + [9204] = 9100, + [9205] = 9134, + [9206] = 1115, + [9207] = 9103, + [9208] = 9134, + [9209] = 1109, + [9210] = 1185, + [9211] = 1187, + [9212] = 9103, + [9213] = 9213, + [9214] = 9102, + [9215] = 1178, + [9216] = 9134, + [9217] = 9213, + [9218] = 9100, + [9219] = 9219, + [9220] = 9220, + [9221] = 9102, + [9222] = 9103, + [9223] = 9223, + [9224] = 1114, + [9225] = 9143, + [9226] = 9143, + [9227] = 9143, + [9228] = 9113, [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] = 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] = 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, + [9230] = 9230, + [9231] = 9103, + [9232] = 9213, + [9233] = 9100, + [9234] = 9102, + [9235] = 9144, + [9236] = 9118, + [9237] = 9099, + [9238] = 9138, + [9239] = 9134, + [9240] = 9240, + [9241] = 9099, + [9242] = 9144, + [9243] = 9121, + [9244] = 1173, + [9245] = 9143, + [9246] = 9103, + [9247] = 9113, + [9248] = 9248, + [9249] = 1156, + [9250] = 9099, + [9251] = 1110, + [9252] = 9252, + [9253] = 1155, + [9254] = 1158, + [9255] = 9134, + [9256] = 1154, + [9257] = 9102, + [9258] = 9113, + [9259] = 1157, + [9260] = 1152, + [9261] = 9121, + [9262] = 9103, + [9263] = 1150, + [9264] = 9142, + [9265] = 1084, + [9266] = 9134, + [9267] = 9099, + [9268] = 1148, + [9269] = 1153, + [9270] = 9270, + [9271] = 9102, + [9272] = 9272, + [9273] = 9113, + [9274] = 9100, + [9275] = 9143, [9276] = 9276, - [9277] = 9099, - [9278] = 1173, - [9279] = 1155, - [9280] = 9100, - [9281] = 9100, - [9282] = 9107, + [9277] = 9121, + [9278] = 9134, + [9279] = 9100, + [9280] = 9113, + [9281] = 9113, + [9282] = 9113, [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, + [9285] = 1145, + [9286] = 1141, + [9287] = 1139, + [9288] = 9134, + [9289] = 1147, + [9290] = 9134, + [9291] = 9143, + [9292] = 9113, + [9293] = 9143, + [9294] = 1146, + [9295] = 3920, + [9296] = 9103, + [9297] = 9100, + [9298] = 9184, + [9299] = 9134, + [9300] = 9143, + [9301] = 1144, + [9302] = 1137, + [9303] = 9115, + [9304] = 1136, + [9305] = 9100, + [9306] = 9113, + [9307] = 9100, + [9308] = 1126, + [9309] = 1117, + [9310] = 9310, + [9311] = 9138, + [9312] = 1142, + [9313] = 9103, + [9314] = 1102, + [9315] = 9134, + [9316] = 9143, + [9317] = 9118, + [9318] = 1122, + [9319] = 1101, + [9320] = 9213, + [9321] = 1100, + [9322] = 9322, + [9323] = 9113, + [9324] = 9134, + [9325] = 9132, + [9326] = 9103, + [9327] = 1099, + [9328] = 9143, + [9329] = 9143, + [9330] = 1098, + [9331] = 9138, + [9332] = 9102, + [9333] = 4008, [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, + [9335] = 1097, + [9336] = 1096, + [9337] = 9102, + [9338] = 9100, + [9339] = 4017, + [9340] = 9340, + [9341] = 1095, + [9342] = 9144, + [9343] = 3948, + [9344] = 9130, + [9345] = 9100, + [9346] = 9099, + [9347] = 1094, + [9348] = 9184, + [9349] = 1093, + [9350] = 9184, + [9351] = 9138, + [9352] = 1018, [9353] = 9353, - [9354] = 1153, - [9355] = 9355, - [9356] = 9356, - [9357] = 9129, - [9358] = 1043, - [9359] = 1181, - [9360] = 9128, - [9361] = 9118, - [9362] = 9362, - [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, + [9354] = 9354, + [9355] = 9100, + [9356] = 9102, + [9357] = 9099, + [9358] = 9358, + [9359] = 1119, + [9360] = 9118, + [9361] = 9102, + [9362] = 9099, + [9363] = 9134, + [9364] = 9100, + [9365] = 1120, + [9366] = 9144, + [9367] = 9103, + [9368] = 9113, + [9369] = 9113, + [9370] = 1125, + [9371] = 9143, + [9372] = 9121, + [9373] = 1091, + [9374] = 9143, + [9375] = 1021, + [9376] = 9134, + [9377] = 1033, + [9378] = 9103, + [9379] = 9134, + [9380] = 1042, + [9381] = 1123, [9382] = 9382, - [9383] = 9212, - [9384] = 9384, - [9385] = 9129, - [9386] = 9386, - [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, + [9383] = 9383, + [9384] = 1088, + [9385] = 9385, + [9386] = 1138, + [9387] = 9113, + [9388] = 9388, + [9389] = 9103, + [9390] = 9143, + [9391] = 9391, + [9392] = 9121, + [9393] = 9132, + [9394] = 9113, + [9395] = 4018, + [9396] = 9396, + [9397] = 9138, + [9398] = 9143, + [9399] = 9121, + [9400] = 9113, + [9401] = 1075, + [9402] = 9130, + [9403] = 1046, + [9404] = 9100, + [9405] = 1124, + [9406] = 9144, + [9407] = 9100, + [9408] = 9103, + [9409] = 9184, + [9410] = 9134, + [9411] = 9103, [9412] = 9412, - [9413] = 9097, - [9414] = 9100, - [9415] = 9107, + [9413] = 9143, + [9414] = 1143, + [9415] = 1015, [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, + [9417] = 868, + [9418] = 9418, + [9419] = 9102, + [9420] = 9213, + [9421] = 9099, + [9422] = 9118, + [9423] = 9113, + [9424] = 9213, + [9425] = 9113, + [9426] = 9142, + [9427] = 1135, + [9428] = 9100, + [9429] = 9103, + [9430] = 9118, + [9431] = 1127, + [9432] = 9100, + [9433] = 9102, + [9434] = 1128, + [9435] = 9118, [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, + [9437] = 9437, + [9438] = 9143, + [9439] = 1134, + [9440] = 9099, + [9441] = 9113, + [9442] = 9143, + [9443] = 9113, + [9444] = 1113, + [9445] = 9142, + [9446] = 9103, + [9447] = 1103, + [9448] = 9184, + [9449] = 9100, + [9450] = 9134, + [9451] = 9121, + [9452] = 9103, + [9453] = 9115, + [9454] = 9132, [9455] = 9455, - [9456] = 9139, - [9457] = 9457, - [9458] = 9458, - [9459] = 9118, - [9460] = 1158, - [9461] = 1186, - [9462] = 9462, + [9456] = 9134, + [9457] = 9143, + [9458] = 9142, + [9459] = 9103, + [9460] = 1131, + [9461] = 1133, + [9462] = 1132, [9463] = 9463, - [9464] = 1185, - [9465] = 9465, - [9466] = 9466, + [9464] = 1105, + [9465] = 9130, + [9466] = 9184, [9467] = 9467, [9468] = 9468, [9469] = 9469, [9470] = 9470, - [9471] = 1183, + [9471] = 9471, [9472] = 9472, [9473] = 9473, [9474] = 9474, [9475] = 9475, [9476] = 9468, - [9477] = 9474, - [9478] = 1182, + [9477] = 9477, + [9478] = 9478, [9479] = 9479, - [9480] = 9475, + [9480] = 9480, [9481] = 9481, - [9482] = 9468, - [9483] = 9468, - [9484] = 1181, - [9485] = 9468, - [9486] = 9486, + [9482] = 9482, + [9483] = 9483, + [9484] = 9484, + [9485] = 9485, + [9486] = 9473, [9487] = 9487, - [9488] = 9488, - [9489] = 9489, - [9490] = 9490, + [9488] = 9471, + [9489] = 9473, + [9490] = 9471, [9491] = 9491, [9492] = 9492, [9493] = 9493, - [9494] = 9487, + [9494] = 9494, [9495] = 9495, - [9496] = 9479, - [9497] = 9497, - [9498] = 9498, - [9499] = 9473, - [9500] = 9489, - [9501] = 1175, - [9502] = 9502, - [9503] = 9498, + [9496] = 9496, + [9497] = 9491, + [9498] = 9467, + [9499] = 9499, + [9500] = 1106, + [9501] = 9501, + [9502] = 9484, + [9503] = 9503, [9504] = 9504, - [9505] = 9505, - [9506] = 9506, - [9507] = 1187, - [9508] = 9493, - [9509] = 9472, - [9510] = 9473, - [9511] = 1173, - [9512] = 9489, + [9505] = 9478, + [9506] = 9482, + [9507] = 9507, + [9508] = 9508, + [9509] = 9509, + [9510] = 9495, + [9511] = 9469, + [9512] = 9512, [9513] = 9513, - [9514] = 9466, - [9515] = 1120, - [9516] = 9516, - [9517] = 9469, - [9518] = 1172, - [9519] = 9519, - [9520] = 9520, - [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, + [9514] = 9467, + [9515] = 9496, + [9516] = 9485, + [9517] = 1108, + [9518] = 9491, + [9519] = 9471, + [9520] = 9469, + [9521] = 9473, + [9522] = 9478, + [9523] = 9503, + [9524] = 9484, + [9525] = 9469, + [9526] = 9513, + [9527] = 9473, + [9528] = 9512, + [9529] = 9503, + [9530] = 9530, + [9531] = 9513, + [9532] = 9471, + [9533] = 9467, + [9534] = 9475, + [9535] = 9475, + [9536] = 9536, + [9537] = 9504, + [9538] = 1109, + [9539] = 9480, + [9540] = 9540, + [9541] = 9541, + [9542] = 9541, + [9543] = 9467, + [9544] = 9478, + [9545] = 9545, + [9546] = 9546, + [9547] = 9481, + [9548] = 9548, + [9549] = 9479, + [9550] = 9491, + [9551] = 9483, + [9552] = 9495, + [9553] = 9507, + [9554] = 9484, + [9555] = 9501, + [9556] = 9468, [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] = 1166, - [9578] = 1153, - [9579] = 9490, - [9580] = 9520, - [9581] = 9472, - [9582] = 9582, - [9583] = 9465, + [9558] = 9467, + [9559] = 9503, + [9560] = 9512, + [9561] = 9501, + [9562] = 9536, + [9563] = 9507, + [9564] = 9468, + [9565] = 9484, + [9566] = 9504, + [9567] = 9471, + [9568] = 9557, + [9569] = 9504, + [9570] = 9478, + [9571] = 9478, + [9572] = 9501, + [9573] = 9548, + [9574] = 9471, + [9575] = 9479, + [9576] = 9491, + [9577] = 9577, + [9578] = 9577, + [9579] = 9579, + [9580] = 9577, + [9581] = 9581, + [9582] = 9487, + [9583] = 9557, [9584] = 9584, - [9585] = 1148, - [9586] = 1144, - [9587] = 1143, - [9588] = 1138, - [9589] = 9498, + [9585] = 9493, + [9586] = 9577, + [9587] = 9581, + [9588] = 9584, + [9589] = 9577, [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] = 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] = 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, + [9591] = 9591, + [9592] = 9507, + [9593] = 9491, + [9594] = 9481, + [9595] = 9468, + [9596] = 9471, + [9597] = 9478, + [9598] = 9484, + [9599] = 9483, + [9600] = 9507, + [9601] = 9468, + [9602] = 9507, + [9603] = 9536, + [9604] = 9467, + [9605] = 9605, + [9606] = 9468, + [9607] = 9475, + [9608] = 9491, + [9609] = 9507, + [9610] = 9487, + [9611] = 9468, + [9612] = 9503, + [9613] = 9501, + [9614] = 9507, + [9615] = 9468, + [9616] = 9616, + [9617] = 9507, + [9618] = 9468, + [9619] = 9619, + [9620] = 9484, + [9621] = 9621, + [9622] = 9491, + [9623] = 9471, + [9624] = 9467, + [9625] = 9625, + [9626] = 9507, + [9627] = 9468, + [9628] = 9483, + [9629] = 9513, + [9630] = 9469, + [9631] = 9631, + [9632] = 9491, + [9633] = 9633, + [9634] = 9484, + [9635] = 9491, + [9636] = 9621, + [9637] = 9491, + [9638] = 9479, + [9639] = 9548, + [9640] = 1114, + [9641] = 9467, + [9642] = 9478, + [9643] = 9504, + [9644] = 9619, + [9645] = 9491, + [9646] = 9503, + [9647] = 9475, + [9648] = 9619, + [9649] = 9484, + [9650] = 9478, + [9651] = 9491, + [9652] = 9652, + [9653] = 9475, + [9654] = 9654, + [9655] = 9471, + [9656] = 9656, + [9657] = 9491, + [9658] = 9478, + [9659] = 9479, + [9660] = 9491, + [9661] = 9661, + [9662] = 9484, + [9663] = 9469, + [9664] = 9491, + [9665] = 9467, + [9666] = 9487, + [9667] = 9487, + [9668] = 9483, + [9669] = 9496, + [9670] = 9621, + [9671] = 9467, + [9672] = 9482, + [9673] = 9673, + [9674] = 9484, + [9675] = 9478, + [9676] = 9676, + [9677] = 9501, + [9678] = 9471, + [9679] = 9495, + [9680] = 9484, + [9681] = 9492, + [9682] = 9487, + [9683] = 9480, + [9684] = 9472, + [9685] = 9494, + [9686] = 9471, + [9687] = 9496, + [9688] = 9557, + [9689] = 9470, + [9690] = 9474, + [9691] = 9691, + [9692] = 9692, + [9693] = 9584, + [9694] = 9485, + [9695] = 9507, + [9696] = 9478, + [9697] = 9469, + [9698] = 9492, + [9699] = 9699, + [9700] = 9480, + [9701] = 9472, + [9702] = 9484, + [9703] = 9467, + [9704] = 9704, + [9705] = 9470, + [9706] = 9471, + [9707] = 9507, + [9708] = 9485, + [9709] = 9481, + [9710] = 9467, + [9711] = 9467, + [9712] = 9478, + [9713] = 9541, + [9714] = 9482, + [9715] = 9471, + [9716] = 9484, + [9717] = 9484, + [9718] = 9478, + [9719] = 9719, + [9720] = 9557, + [9721] = 9721, + [9722] = 9492, + [9723] = 9501, + [9724] = 9471, + [9725] = 9504, + [9726] = 9487, + [9727] = 9480, + [9728] = 9504, + [9729] = 9729, + [9730] = 9483, + [9731] = 9536, + [9732] = 9467, + [9733] = 9484, + [9734] = 9467, + [9735] = 9484, + [9736] = 9513, + [9737] = 9467, + [9738] = 9467, + [9739] = 9739, + [9740] = 9484, + [9741] = 9478, + [9742] = 9474, + [9743] = 9479, + [9744] = 9472, + [9745] = 9478, + [9746] = 9483, + [9747] = 9471, + [9748] = 9493, + [9749] = 9479, + [9750] = 9474, + [9751] = 9470, + [9752] = 9507, + [9753] = 9548, + [9754] = 9468, + [9755] = 9503, + [9756] = 9478, + [9757] = 9467, + [9758] = 9501, + [9759] = 9495, + [9760] = 9474, + [9761] = 9581, + [9762] = 9484, + [9763] = 9548, + [9764] = 9478, + [9765] = 9471, + [9766] = 9485, + [9767] = 9478, + [9768] = 9504, + [9769] = 9536, + [9770] = 9492, + [9771] = 9480, + [9772] = 9478, + [9773] = 9484, + [9774] = 9478, + [9775] = 9513, + [9776] = 9513, + [9777] = 9470, + [9778] = 9470, + [9779] = 9507, + [9780] = 9474, + [9781] = 9467, + [9782] = 9471, + [9783] = 9783, + [9784] = 9468, + [9785] = 9501, + [9786] = 9475, + [9787] = 9495, + [9788] = 9491, + [9789] = 9484, + [9790] = 9491, + [9791] = 9530, + [9792] = 9504, + [9793] = 9536, + [9794] = 9485, + [9795] = 9512, + [9796] = 9796, + [9797] = 9513, + [9798] = 9492, + [9799] = 9468, + [9800] = 9512, + [9801] = 9480, + [9802] = 9530, + [9803] = 9803, + [9804] = 9804, + [9805] = 9805, + [9806] = 9469, + [9807] = 9507, + [9808] = 9470, + [9809] = 9474, + [9810] = 9496, + [9811] = 9485, + [9812] = 9492, + [9813] = 9507, + [9814] = 9467, + [9815] = 9499, + [9816] = 9480, + [9817] = 9513, + [9818] = 9513, + [9819] = 9469, + [9820] = 9484, + [9821] = 9478, + [9822] = 9468, + [9823] = 9823, + [9824] = 9473, + [9825] = 9470, + [9826] = 9471, + [9827] = 9471, + [9828] = 9471, + [9829] = 9501, + [9830] = 9495, + [9831] = 9496, + [9832] = 9473, + [9833] = 9474, + [9834] = 9478, + [9835] = 9469, + [9836] = 9530, + [9837] = 9494, + [9838] = 9504, + [9839] = 9475, + [9840] = 9536, + [9841] = 9841, + [9842] = 9536, + [9843] = 1119, + [9844] = 9504, + [9845] = 9467, + [9846] = 9512, [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] = 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, + [9848] = 9468, + [9849] = 9513, + [9850] = 9483, + [9851] = 9485, + [9852] = 9484, + [9853] = 9478, + [9854] = 9467, + [9855] = 9530, + [9856] = 9507, + [9857] = 9507, + [9858] = 9475, + [9859] = 9482, + [9860] = 9471, + [9861] = 1120, + [9862] = 9468, + [9863] = 9492, + [9864] = 1123, + [9865] = 9481, + [9866] = 9487, + [9867] = 9495, + [9868] = 9468, + [9869] = 9480, + [9870] = 9501, + [9871] = 9471, + [9872] = 9501, + [9873] = 9495, + [9874] = 9470, + [9875] = 9481, + [9876] = 9471, + [9877] = 9474, + [9878] = 9491, + [9879] = 1124, + [9880] = 9507, + [9881] = 9481, + [9882] = 9504, + [9883] = 9478, + [9884] = 9536, + [9885] = 9619, + [9886] = 9493, + [9887] = 9485, + [9888] = 9468, + [9889] = 9467, + [9890] = 9503, + [9891] = 9468, + [9892] = 9491, + [9893] = 1127, + [9894] = 9507, + [9895] = 9491, + [9896] = 9492, + [9897] = 9480, + [9898] = 9480, + [9899] = 9513, + [9900] = 9491, + [9901] = 9471, + [9902] = 9470, + [9903] = 9485, + [9904] = 1110, + [9905] = 9492, + [9906] = 9480, + [9907] = 9470, + [9908] = 1131, + [9909] = 9485, + [9910] = 9492, + [9911] = 9480, + [9912] = 9478, + [9913] = 1132, + [9914] = 9470, + [9915] = 1133, + [9916] = 9485, + [9917] = 9492, + [9918] = 9480, + [9919] = 9530, + [9920] = 9484, + [9921] = 9470, + [9922] = 9485, + [9923] = 9548, + [9924] = 9492, + [9925] = 1128, + [9926] = 9480, + [9927] = 9470, + [9928] = 9484, + [9929] = 9485, + [9930] = 9492, + [9931] = 9480, + [9932] = 9470, + [9933] = 9541, + [9934] = 9485, [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] = 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] = 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, + [9936] = 9541, + [9937] = 9480, + [9938] = 9470, + [9939] = 9541, + [9940] = 9541, + [9941] = 9541, + [9942] = 9541, + [9943] = 9541, + [9944] = 9541, + [9945] = 9541, + [9946] = 9541, + [9947] = 9541, + [9948] = 9541, + [9949] = 9541, + [9950] = 9541, + [9951] = 9541, + [9952] = 9541, + [9953] = 9541, + [9954] = 9541, + [9955] = 9541, + [9956] = 9541, + [9957] = 9541, + [9958] = 9541, + [9959] = 9541, + [9960] = 1134, + [9961] = 1135, + [9962] = 9485, + [9963] = 9473, + [9964] = 9479, + [9965] = 9467, + [9966] = 9483, + [9967] = 9577, + [9968] = 9492, + [9969] = 9729, + [9970] = 9480, + [9971] = 9512, + [9972] = 9470, + [9973] = 9507, + [9974] = 9469, + [9975] = 9493, + [9976] = 9479, + [9977] = 9483, + [9978] = 9584, + [9979] = 1138, + [9980] = 1142, + [9981] = 9981, + [9982] = 9581, + [9983] = 9983, + [9984] = 9482, + [9985] = 9468, + [9986] = 9619, + [9987] = 9621, + [9988] = 1144, + [9989] = 9499, + [9990] = 9484, + [9991] = 9485, + [9992] = 9487, + [9993] = 9471, + [9994] = 1146, + [9995] = 9536, + [9996] = 1147, + [9997] = 9492, + [9998] = 9499, + [9999] = 9577, + [10000] = 9480, + [10001] = 9470, + [10002] = 1105, + [10003] = 1153, + [10004] = 9472, + [10005] = 9494, + [10006] = 9501, + [10007] = 9485, + [10008] = 9471, + [10009] = 9492, + [10010] = 9478, + [10011] = 9480, + [10012] = 9495, + [10013] = 9484, + [10014] = 9467, + [10015] = 1157, + [10016] = 9557, + [10017] = 9470, + [10018] = 9485, + [10019] = 9492, + [10020] = 9530, + [10021] = 9480, + [10022] = 9470, + [10023] = 9485, + [10024] = 9470, + [10025] = 9480, + [10026] = 9470, + [10027] = 1158, + [10028] = 9485, + [10029] = 9492, + [10030] = 9504, + [10031] = 1162, + [10032] = 1163, + [10033] = 9493, + [10034] = 9473, + [10035] = 9503, + [10036] = 9485, + [10037] = 9479, + [10038] = 9536, + [10039] = 9621, + [10040] = 9503, + [10041] = 9491, + [10042] = 9492, + [10043] = 9470, + [10044] = 9483, + [10045] = 9485, + [10046] = 9492, + [10047] = 10047, + [10048] = 9470, + [10049] = 10049, + [10050] = 9513, + [10051] = 9479, + [10052] = 9530, + [10053] = 9512, + [10054] = 9507, + [10055] = 9499, + [10056] = 9503, + [10057] = 9485, + [10058] = 9469, + [10059] = 9479, + [10060] = 9483, + [10061] = 9492, + [10062] = 9470, + [10063] = 9494, + [10064] = 10064, + [10065] = 9468, + [10066] = 1175, + [10067] = 9485, + [10068] = 9495, + [10069] = 1185, + [10070] = 9503, + [10071] = 9619, + [10072] = 1178, + [10073] = 1173, + [10074] = 9492, + [10075] = 9621, + [10076] = 9467, + [10077] = 9470, + [10078] = 9485, + [10079] = 9492, + [10080] = 9470, + [10081] = 9485, + [10082] = 9480, + [10083] = 9501, + [10084] = 9495, + [10085] = 9480, + [10086] = 9492, + [10087] = 9541, + [10088] = 9481, + [10089] = 1156, + [10090] = 1155, + [10091] = 1187, + [10092] = 9492, + [10093] = 9577, + [10094] = 9481, + [10095] = 9468, + [10096] = 9584, + [10097] = 1152, + [10098] = 1151, + [10099] = 9581, + [10100] = 1150, + [10101] = 1148, + [10102] = 1145, + [10103] = 9479, + [10104] = 9503, + [10105] = 9504, + [10106] = 1141, + [10107] = 1139, + [10108] = 1137, + [10109] = 9469, + [10110] = 1136, + [10111] = 1126, + [10112] = 1122, + [10113] = 1117, + [10114] = 1102, + [10115] = 1101, + [10116] = 1100, + [10117] = 9491, + [10118] = 1099, + [10119] = 9577, + [10120] = 1098, + [10121] = 1097, + [10122] = 9536, + [10123] = 9473, + [10124] = 1115, + [10125] = 1096, + [10126] = 9513, + [10127] = 9584, + [10128] = 9530, + [10129] = 1095, + [10130] = 9512, + [10131] = 9581, + [10132] = 1094, + [10133] = 9468, + [10134] = 9507, + [10135] = 9468, + [10136] = 9507, + [10137] = 9468, + [10138] = 9507, + [10139] = 9468, + [10140] = 9507, + [10141] = 9507, + [10142] = 1093, + [10143] = 9729, + [10144] = 1091, + [10145] = 9503, + [10146] = 9473, + [10147] = 1088, + [10148] = 9499, + [10149] = 9494, + [10150] = 1154, + [10151] = 9729, + [10152] = 1084, + [10153] = 9469, + [10154] = 9729, + [10155] = 9729, + [10156] = 1075, + [10157] = 9479, + [10158] = 10158, }; -static inline bool sym__alpha_identifier_character_set_1(int32_t c) { - return (c < 6688 - ? (c < 2984 - ? (c < 2365 - ? (c < 1488 - ? (c < 886 - ? (c < 216 - ? (c < 181 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : (c <= 'z' || c == 170)) - : (c <= 181 || (c < 192 - ? c == 186 - : c <= 214))) - : (c <= 246 || (c < 748 - ? (c < 710 - ? (c >= 248 && c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))) - : (c <= 748 || (c < 880 - ? c == 750 - : c <= 884))))) - : (c <= 887 || (c < 931 - ? (c < 904 - ? (c < 895 - ? (c >= 890 && c <= 893) - : (c <= 895 || c == 902)) - : (c <= 906 || (c < 910 - ? c == 908 - : c <= 929))) - : (c <= 1013 || (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))))))) - : (c <= 1514 || (c < 1994 - ? (c < 1774 - ? (c < 1649 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))) - : (c <= 1747 || (c < 1765 - ? c == 1749 - : c <= 1766))) - : (c <= 1775 || (c < 1810 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : (c <= 1791 || c == 1808)) - : (c <= 1839 || (c < 1969 - ? (c >= 1869 && c <= 1957) - : c <= 1969))))) - : (c <= 2026 || (c < 2112 - ? (c < 2074 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c < 2308 - ? (c >= 2208 && c <= 2249) - : c <= 2361))))))))) - : (c <= 2365 || (c < 2703 - ? (c < 2544 - ? (c < 2474 - ? (c < 2437 - ? (c < 2392 - ? c == 2384 - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472))) - : (c <= 2480 || (c < 2510 - ? (c < 2486 - ? c == 2482 - : (c <= 2489 || c == 2493)) - : (c <= 2510 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529))))) - : (c <= 2545 || (c < 2613 - ? (c < 2579 - ? (c < 2565 - ? c == 2556 - : (c <= 2570 || (c >= 2575 && c <= 2576))) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))) - : (c <= 2614 || (c < 2654 - ? (c < 2649 - ? (c >= 2616 && c <= 2617) - : c <= 2652) - : (c <= 2654 || (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701))))))) - : (c <= 2705 || (c < 2869 - ? (c < 2784 - ? (c < 2741 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2835 - ? (c < 2821 - ? c == 2809 - : (c <= 2828 || (c >= 2831 && c <= 2832))) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2958 - ? (c < 2929 - ? (c < 2908 - ? c == 2877 - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2949 - ? c == 2947 - : c <= 2954))) - : (c <= 2960 || (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))))))))) - : (c <= 2986 || (c < 4176 - ? (c < 3423 - ? (c < 3218 - ? (c < 3133 - ? (c < 3086 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : (c <= 3024 || (c >= 3077 && c <= 3084))) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3200 || (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216))))) - : (c <= 3240 || (c < 3332 - ? (c < 3293 - ? (c < 3253 - ? (c >= 3242 && c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || (c < 3412 - ? c == 3406 - : c <= 3414))))))) - : (c <= 3425 || (c < 3749 - ? (c < 3585 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))) - : (c <= 3632 || (c < 3716 - ? (c < 3648 - ? (c >= 3634 && c <= 3635) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747))))) - : (c <= 3749 || (c < 3840 - ? (c < 3776 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : (c <= 3763 || c == 3773)) - : (c <= 3780 || (c < 3804 - ? c == 3782 - : c <= 3807))) - : (c <= 3840 || (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159))))))))) - : (c <= 4181 || (c < 4992 - ? (c < 4696 - ? (c < 4256 - ? (c < 4206 - ? (c < 4193 - ? (c >= 4186 && c <= 4189) - : (c <= 4193 || (c >= 4197 && c <= 4198))) - : (c <= 4208 || (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238))) - : (c <= 4293 || (c < 4348 - ? (c < 4301 - ? c == 4295 - : (c <= 4301 || (c >= 4304 && c <= 4346))) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))))) - : (c <= 4696 || (c < 4800 - ? (c < 4752 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954))))))) - : (c <= 5007 || (c < 6103 - ? (c < 5873 - ? (c < 5743 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : (c <= 5117 || (c >= 5121 && c <= 5740))) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5984 - ? (c < 5919 - ? (c >= 5888 && c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067))))) - : (c <= 6103 || (c < 6400 - ? (c < 6279 - ? (c < 6176 - ? c == 6108 - : (c <= 6264 || (c >= 6272 && c <= 6276))) - : (c <= 6312 || (c < 6320 - ? c == 6314 - : c <= 6389))) - : (c <= 6430 || (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678))))))))))))) - : (c <= 6740 || (c < 43261 - ? (c < 11264 - ? (c < 8064 - ? (c < 7406 - ? (c < 7168 - ? (c < 7043 - ? (c < 6917 - ? c == 6823 - : (c <= 6963 || (c >= 6981 && c <= 6988))) - : (c <= 7072 || (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141))) - : (c <= 7203 || (c < 7312 - ? (c < 7258 - ? (c >= 7245 && c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))) - : (c <= 7354 || (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404))))) - : (c <= 7411 || (c < 8008 - ? (c < 7680 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : (c <= 7418 || (c >= 7424 && c <= 7615))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))))))) - : (c <= 8116 || (c < 8455 - ? (c < 8160 - ? (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155))) - : (c <= 8172 || (c < 8319 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))))) - : (c <= 8455 || (c < 8490 - ? (c < 8484 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : (c <= 8469 || (c >= 8473 && c <= 8477))) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8493 || (c < 8517 - ? (c < 8508 - ? (c >= 8495 && c <= 8505) - : c <= 8511) - : (c <= 8521 || (c < 8579 - ? c == 8526 - : c <= 8580))))))))) - : (c <= 11492 || (c < 12704 - ? (c < 11720 - ? (c < 11631 - ? (c < 11559 - ? (c < 11506 - ? (c >= 11499 && c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11568 - ? c == 11565 - : c <= 11623))) - : (c <= 11631 || (c < 11696 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : (c <= 11686 || (c >= 11688 && c <= 11694))) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))) - : (c <= 11726 || (c < 12353 - ? (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : (c <= 11742 || c == 11823)) - : (c <= 12294 || (c < 12347 - ? (c >= 12337 && c <= 12341) - : c <= 12348))) - : (c <= 12438 || (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))))))) - : (c <= 12735 || (c < 42786 - ? (c < 42240 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : (c <= 13312 || c == 19903)) - : (c <= 19968 || (c < 42192 - ? (c >= 40959 && c <= 42124) - : c <= 42237))) - : (c <= 42508 || (c < 42623 - ? (c < 42538 - ? (c >= 42512 && c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))) - : (c <= 42653 || (c < 42775 - ? (c >= 42656 && c <= 42725) - : c <= 42783))))) - : (c <= 42888 || (c < 43015 - ? (c < 42965 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : (c <= 42961 || c == 42963)) - : (c <= 42969 || (c < 43011 - ? (c >= 42994 && c <= 43009) - : c <= 43013))) - : (c <= 43018 || (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c < 43259 - ? (c >= 43250 && c <= 43255) - : c <= 43259))))))))))) - : (c <= 43262 || (c < 65345 - ? (c < 43816 - ? (c < 43646 - ? (c < 43494 - ? (c < 43396 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))) - : (c <= 43442 || (c < 43488 - ? c == 43471 - : c <= 43492))) - : (c <= 43503 || (c < 43588 - ? (c < 43520 - ? (c >= 43514 && c <= 43518) - : (c <= 43560 || (c >= 43584 && c <= 43586))) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))))) - : (c <= 43695 || (c < 43744 - ? (c < 43712 - ? (c < 43701 - ? c == 43697 - : (c <= 43702 || (c >= 43705 && c <= 43709))) - : (c <= 43712 || (c < 43739 - ? c == 43714 - : c <= 43741))) - : (c <= 43754 || (c < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64298 - ? (c < 55243 - ? (c < 44032 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : (c <= 43881 || (c >= 43888 && c <= 44002))) - : (c <= 44032 || (c < 55216 - ? c == 55203 - : c <= 55238))) - : (c <= 55291 || (c < 64275 - ? (c < 64112 - ? (c >= 63744 && c <= 64109) - : (c <= 64217 || (c >= 64256 && c <= 64262))) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))))) - : (c <= 64310 || (c < 64848 - ? (c < 64323 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64829))) - : (c <= 64911 || (c < 65136 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65019) - : (c <= 65140 || (c < 65313 - ? (c >= 65142 && c <= 65276) - : c <= 65338))))))))) - : (c <= 65370 || (c < 66928 - ? (c < 66208 - ? (c < 65549 - ? (c < 65490 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : (c <= 65479 || (c >= 65482 && c <= 65487))) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))) - : (c <= 65574 || (c < 65616 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c >= 65664 && c <= 65786) - : c <= 66204))))) - : (c <= 66256 || (c < 66504 - ? (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : (c <= 66368 || (c >= 66370 && c <= 66377))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))))))) - : (c <= 66938 || (c < 67506 - ? (c < 67003 - ? (c < 66967 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001))) - : (c <= 67004 || (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504))))) - : (c <= 67514 || (c < 67680 - ? (c < 67639 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))) - : (c <= 67640 || (c < 67647 - ? c == 67644 - : c <= 67669))) - : (c <= 67702 || (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} - -static inline bool sym__alpha_identifier_character_set_2(int32_t c) { - return (c < 6823 - ? (c < 3024 - ? (c < 2392 - ? (c < 1568 - ? (c < 895 - ? (c < 710 - ? (c < 192 - ? (c < 181 - ? c == 170 - : (c <= 181 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))) - : (c <= 721 || (c < 880 - ? (c < 748 - ? (c >= 736 && c <= 740) - : (c <= 748 || c == 750)) - : (c <= 884 || (c < 890 - ? (c >= 886 && c <= 887) - : c <= 893))))) - : (c <= 895 || (c < 1162 - ? (c < 910 - ? (c < 904 - ? c == 902 - : (c <= 906 || c == 908)) - : (c <= 929 || (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153))) - : (c <= 1327 || (c < 1376 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369) - : (c <= 1416 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))))) - : (c <= 1610 || (c < 2042 - ? (c < 1791 - ? (c < 1765 - ? (c < 1649 - ? (c >= 1646 && c <= 1647) - : (c <= 1747 || c == 1749)) - : (c <= 1766 || (c < 1786 - ? (c >= 1774 && c <= 1775) - : c <= 1788))) - : (c <= 1791 || (c < 1969 - ? (c < 1810 - ? c == 1808 - : (c <= 1839 || (c >= 1869 && c <= 1957))) - : (c <= 1969 || (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037))))) - : (c <= 2042 || (c < 2160 - ? (c < 2088 - ? (c < 2074 - ? (c >= 2048 && c <= 2069) - : (c <= 2074 || c == 2084)) - : (c <= 2088 || (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154))) - : (c <= 2183 || (c < 2308 - ? (c < 2208 - ? (c >= 2185 && c <= 2190) - : c <= 2249) - : (c <= 2361 || (c < 2384 - ? c == 2365 - : c <= 2384))))))))) - : (c <= 2401 || (c < 2730 - ? (c < 2565 - ? (c < 2486 - ? (c < 2451 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : (c <= 2444 || (c >= 2447 && c <= 2448))) - : (c <= 2472 || (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482))) - : (c <= 2489 || (c < 2527 - ? (c < 2510 - ? c == 2493 - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556))))) - : (c <= 2570 || (c < 2649 - ? (c < 2610 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : (c <= 2600 || (c >= 2602 && c <= 2608))) - : (c <= 2611 || (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728))))))) - : (c <= 2736 || (c < 2908 - ? (c < 2821 - ? (c < 2768 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : (c <= 2745 || c == 2749)) - : (c <= 2768 || (c < 2809 - ? (c >= 2784 && c <= 2785) - : c <= 2809))) - : (c <= 2828 || (c < 2866 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877))))) - : (c <= 2909 || (c < 2969 - ? (c < 2949 - ? (c < 2929 - ? (c >= 2911 && c <= 2913) - : (c <= 2929 || c == 2947)) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))))))))) - : (c <= 3024 || (c < 4193 - ? (c < 3461 - ? (c < 3253 - ? (c < 3165 - ? (c < 3114 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3160 - ? c == 3133 - : c <= 3162))) - : (c <= 3165 || (c < 3214 - ? (c < 3200 - ? (c >= 3168 && c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))) - : (c <= 3216 || (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251))))) - : (c <= 3257 || (c < 3346 - ? (c < 3313 - ? (c < 3293 - ? c == 3261 - : (c <= 3294 || (c >= 3296 && c <= 3297))) - : (c <= 3314 || (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344))) - : (c <= 3386 || (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455))))))) - : (c <= 3478 || (c < 3762 - ? (c < 3648 - ? (c < 3520 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : (c <= 3515 || c == 3517)) - : (c <= 3526 || (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3635))) - : (c <= 3654 || (c < 3724 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3760))))) - : (c <= 3763 || (c < 3913 - ? (c < 3804 - ? (c < 3776 - ? c == 3773 - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : c <= 3911))) - : (c <= 3948 || (c < 4159 - ? (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138) - : (c <= 4159 || (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189))))))))) - : (c <= 4193 || (c < 5112 - ? (c < 4704 - ? (c < 4301 - ? (c < 4238 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : (c <= 4208 || (c >= 4213 && c <= 4225))) - : (c <= 4238 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4688 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4698 - ? c == 4696 - : c <= 4701))))) - : (c <= 4744 || (c < 4808 - ? (c < 4792 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))))))) - : (c <= 5117 || (c < 6108 - ? (c < 5919 - ? (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5873 && c <= 5880) - : c <= 5905))) - : (c <= 5937 || (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c < 6103 - ? (c >= 6016 && c <= 6067) - : c <= 6103))))) - : (c <= 6108 || (c < 6480 - ? (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : (c <= 6276 || (c >= 6279 && c <= 6312))) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740))))))))))))) - : (c <= 6823 || (c < 43261 - ? (c < 11499 - ? (c < 8118 - ? (c < 7413 - ? (c < 7245 - ? (c < 7086 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))) - : (c <= 7087 || (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203))) - : (c <= 7247 || (c < 7357 - ? (c < 7296 - ? (c >= 7258 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7406 - ? (c >= 7401 && c <= 7404) - : c <= 7411))))) - : (c <= 7414 || (c < 8016 - ? (c < 7960 - ? (c < 7424 - ? c == 7418 - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013))) - : (c <= 8023 || (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116))))))) - : (c <= 8124 || (c < 8458 - ? (c < 8178 - ? (c < 8144 - ? (c < 8130 - ? c == 8126 - : (c <= 8132 || (c >= 8134 && c <= 8140))) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))) - : (c <= 8180 || (c < 8336 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : (c <= 8305 || c == 8319)) - : (c <= 8348 || (c < 8455 - ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8495 - ? (c < 8486 - ? (c < 8473 - ? c == 8469 - : (c <= 8477 || c == 8484)) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8493))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8579 && c <= 8580) - : c <= 11492))))))))) - : (c <= 11502 || (c < 12784 - ? (c < 11728 - ? (c < 11648 - ? (c < 11565 - ? (c < 11520 - ? (c >= 11506 && c <= 11507) - : (c <= 11557 || c == 11559)) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11704 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))) - : (c <= 11734 || (c < 12445 - ? (c < 12337 - ? (c < 11823 - ? (c >= 11736 && c <= 11742) - : (c <= 11823 || (c >= 12293 && c <= 12294))) - : (c <= 12341 || (c < 12353 - ? (c >= 12347 && c <= 12348) - : c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735))))))) - : (c <= 12799 || (c < 42786 - ? (c < 42512 - ? (c < 40959 - ? (c < 19903 - ? c == 13312 - : (c <= 19903 || c == 19968)) - : (c <= 42124 || (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508))) - : (c <= 42527 || (c < 42623 - ? (c < 42560 - ? (c >= 42538 && c <= 42539) - : c <= 42606) - : (c <= 42653 || (c < 42775 - ? (c >= 42656 && c <= 42725) - : c <= 42783))))) - : (c <= 42888 || (c < 43015 - ? (c < 42965 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : (c <= 42961 || c == 42963)) - : (c <= 42969 || (c < 43011 - ? (c >= 42994 && c <= 43009) - : c <= 43013))) - : (c <= 43018 || (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c < 43259 - ? (c >= 43250 && c <= 43255) - : c <= 43259))))))))))) - : (c <= 43262 || (c < 65345 - ? (c < 43816 - ? (c < 43646 - ? (c < 43494 - ? (c < 43396 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))) - : (c <= 43442 || (c < 43488 - ? c == 43471 - : c <= 43492))) - : (c <= 43503 || (c < 43588 - ? (c < 43520 - ? (c >= 43514 && c <= 43518) - : (c <= 43560 || (c >= 43584 && c <= 43586))) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))))) - : (c <= 43695 || (c < 43744 - ? (c < 43712 - ? (c < 43701 - ? c == 43697 - : (c <= 43702 || (c >= 43705 && c <= 43709))) - : (c <= 43712 || (c < 43739 - ? c == 43714 - : c <= 43741))) - : (c <= 43754 || (c < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64298 - ? (c < 55243 - ? (c < 44032 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : (c <= 43881 || (c >= 43888 && c <= 44002))) - : (c <= 44032 || (c < 55216 - ? c == 55203 - : c <= 55238))) - : (c <= 55291 || (c < 64275 - ? (c < 64112 - ? (c >= 63744 && c <= 64109) - : (c <= 64217 || (c >= 64256 && c <= 64262))) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))))) - : (c <= 64310 || (c < 64848 - ? (c < 64323 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64829))) - : (c <= 64911 || (c < 65136 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65019) - : (c <= 65140 || (c < 65313 - ? (c >= 65142 && c <= 65276) - : c <= 65338))))))))) - : (c <= 65370 || (c < 66928 - ? (c < 66208 - ? (c < 65549 - ? (c < 65490 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : (c <= 65479 || (c >= 65482 && c <= 65487))) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))) - : (c <= 65574 || (c < 65616 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c >= 65664 && c <= 65786) - : c <= 66204))))) - : (c <= 66256 || (c < 66504 - ? (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : (c <= 66368 || (c >= 66370 && c <= 66377))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))))))) - : (c <= 66938 || (c < 67506 - ? (c < 67003 - ? (c < 66967 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001))) - : (c <= 67004 || (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504))))) - : (c <= 67514 || (c < 67680 - ? (c < 67639 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))) - : (c <= 67640 || (c < 67647 - ? c == 67644 - : c <= 67669))) - : (c <= 67702 || (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} - -static inline bool sym__alpha_identifier_character_set_3(int32_t c) { - return (c < 6656 - ? (c < 2979 - ? (c < 2308 - ? (c < 1376 - ? (c < 880 - ? (c < 192 - ? (c < 170 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : (c <= '_' || (c >= 'b' && c <= 'z'))) - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 736 - ? (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 910 - ? (c < 902 - ? (c < 890 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))))))) - : (c <= 1416 || (c < 1969 - ? (c < 1765 - ? (c < 1646 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1808 - ? (c < 1786 - ? (c >= 1774 && c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957))))) - : (c <= 1969 || (c < 2088 - ? (c < 2048 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c < 2208 - ? (c >= 2185 && c <= 2190) - : c <= 2249))))))))) - : (c <= 2361 || (c < 2693 - ? (c < 2527 - ? (c < 2451 - ? (c < 2417 - ? (c < 2384 - ? c == 2365 - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))) - : (c <= 2472 || (c < 2493 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : (c <= 2482 || (c >= 2486 && c <= 2489))) - : (c <= 2493 || (c < 2524 - ? c == 2510 - : c <= 2525))))) - : (c <= 2529 || (c < 2610 - ? (c < 2575 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2649 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2652 || (c < 2674 - ? c == 2654 - : c <= 2676))))))) - : (c <= 2701 || (c < 2866 - ? (c < 2768 - ? (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749))) - : (c <= 2768 || (c < 2831 - ? (c < 2809 - ? (c >= 2784 && c <= 2785) - : (c <= 2809 || (c >= 2821 && c <= 2828))) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2949 - ? (c < 2911 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2947 - ? c == 2929 - : c <= 2947))) - : (c <= 2954 || (c < 2969 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))))))))))) - : (c <= 2980 || (c < 4159 - ? (c < 3412 - ? (c < 3214 - ? (c < 3114 - ? (c < 3077 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : (c <= 3001 || c == 3024)) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3205 - ? c == 3200 - : c <= 3212))))) - : (c <= 3216 || (c < 3313 - ? (c < 3261 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344) - : (c <= 3386 || (c < 3406 - ? c == 3389 - : c <= 3406))))))) - : (c <= 3414 || (c < 3724 - ? (c < 3520 - ? (c < 3482 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : (c <= 3455 || (c >= 3461 && c <= 3478))) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3713 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : (c <= 3635 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3718 - ? c == 3716 - : c <= 3722))))) - : (c <= 3747 || (c < 3804 - ? (c < 3773 - ? (c < 3751 - ? c == 3749 - : (c <= 3760 || (c >= 3762 && c <= 3763))) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3807 || (c < 3913 - ? (c < 3904 - ? c == 3840 - : c <= 3911) - : (c <= 3948 || (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138))))))))) - : (c <= 4159 || (c < 4888 - ? (c < 4688 - ? (c < 4238 - ? (c < 4197 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225))) - : (c <= 4238 || (c < 4304 - ? (c < 4295 - ? (c >= 4256 && c <= 4293) - : (c <= 4295 || c == 4301)) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))) - : (c <= 4694 || (c < 4792 - ? (c < 4746 - ? (c < 4698 - ? c == 4696 - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))))) - : (c <= 4954 || (c < 6016 - ? (c < 5792 - ? (c < 5121 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : (c <= 5109 || (c >= 5112 && c <= 5117))) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5952 - ? (c < 5888 - ? (c >= 5873 && c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))) - : (c <= 5969 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6067 || (c < 6320 - ? (c < 6272 - ? (c < 6108 - ? c == 6103 - : (c <= 6108 || (c >= 6176 && c <= 6264))) - : (c <= 6276 || (c < 6314 - ? (c >= 6279 && c <= 6312) - : c <= 6314))) - : (c <= 6389 || (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))))))))))))) - : (c <= 6678 || (c < 43259 - ? (c < 8579 - ? (c < 8031 - ? (c < 7401 - ? (c < 7098 - ? (c < 6981 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))) - : (c <= 6988 || (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087))) - : (c <= 7141 || (c < 7296 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))) - : (c <= 7304 || (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359))))) - : (c <= 7404 || (c < 7968 - ? (c < 7424 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || (c < 8029 - ? c == 8027 - : c <= 8029))))))) - : (c <= 8061 || (c < 8450 - ? (c < 8150 - ? (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))) - : (c <= 8155 || (c < 8305 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))))) - : (c <= 8450 || (c < 8488 - ? (c < 8473 - ? (c < 8458 - ? c == 8455 - : (c <= 8467 || c == 8469)) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))) - : (c <= 8488 || (c < 8508 - ? (c < 8495 - ? (c >= 8490 && c <= 8493) - : c <= 8505) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))))))) - : (c <= 8580 || (c < 12593 - ? (c < 11712 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11688 - ? (c < 11648 - ? c == 11631 - : (c <= 11670 || (c >= 11680 && c <= 11686))) - : (c <= 11694 || (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710))))) - : (c <= 11718 || (c < 12347 - ? (c < 11823 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))) - : (c <= 11823 || (c < 12337 - ? (c >= 12293 && c <= 12294) - : c <= 12341))) - : (c <= 12348 || (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))))))) - : (c <= 12686 || (c < 42775 - ? (c < 42192 - ? (c < 19903 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : (c <= 12799 || c == 13312)) - : (c <= 19903 || (c < 40959 - ? c == 19968 - : c <= 42124))) - : (c <= 42237 || (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42725))))) - : (c <= 42783 || (c < 43011 - ? (c < 42963 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : (c <= 42954 || (c >= 42960 && c <= 42961))) - : (c <= 42963 || (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c < 43250 - ? (c >= 43138 && c <= 43187) - : c <= 43255))))))))))) - : (c <= 43259 || (c < 65313 - ? (c < 43808 - ? (c < 43642 - ? (c < 43488 - ? (c < 43360 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471))) - : (c <= 43492 || (c < 43584 - ? (c < 43514 - ? (c >= 43494 && c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638))))) - : (c <= 43642 || (c < 43739 - ? (c < 43705 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : (c <= 43697 || (c >= 43701 && c <= 43702))) - : (c <= 43709 || (c < 43714 - ? c == 43712 - : c <= 43714))) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798))))))) - : (c <= 43814 || (c < 64287 - ? (c < 55216 - ? (c < 43888 - ? (c < 43824 - ? (c >= 43816 && c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55203 - ? c == 44032 - : c <= 55203))) - : (c <= 55238 || (c < 64256 - ? (c < 63744 - ? (c >= 55243 && c <= 55291) - : (c <= 64109 || (c >= 64112 && c <= 64217))) - : (c <= 64262 || (c < 64285 - ? (c >= 64275 && c <= 64279) - : c <= 64285))))) - : (c <= 64296 || (c < 64467 - ? (c < 64320 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : (c <= 64316 || c == 64318)) - : (c <= 64321 || (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65019 || (c < 65142 - ? (c >= 65136 && c <= 65140) - : c <= 65276))))))))) - : (c <= 65338 || (c < 66864 - ? (c < 66176 - ? (c < 65536 - ? (c < 65482 - ? (c < 65382 - ? (c >= 65345 && c <= 65370) - : (c <= 65470 || (c >= 65474 && c <= 65479))) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 66204 || (c < 66464 - ? (c < 66370 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66368))) - : (c <= 66377 || (c < 66432 - ? (c >= 66384 && c <= 66421) - : c <= 66461))) - : (c <= 66499 || (c < 66736 - ? (c < 66560 - ? (c >= 66504 && c <= 66511) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))))) - : (c <= 66915 || (c < 67506 - ? (c < 66995 - ? (c < 66964 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : (c <= 66954 || (c >= 66956 && c <= 66962))) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))) - : (c <= 67001 || (c < 67424 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : (c <= 67382 || (c >= 67392 && c <= 67413))) - : (c <= 67431 || (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504))))) - : (c <= 67514 || (c < 67680 - ? (c < 67639 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))) - : (c <= 67640 || (c < 67647 - ? c == 67644 - : c <= 67669))) - : (c <= 67702 || (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} - -static inline bool sym__alpha_identifier_character_set_4(int32_t c) { - return (c < 6656 - ? (c < 2979 - ? (c < 2308 - ? (c < 1376 - ? (c < 880 - ? (c < 192 - ? (c < 170 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : (c <= '_' || (c >= 'a' && c <= 'z'))) - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 736 - ? (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 910 - ? (c < 902 - ? (c < 890 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))))))) - : (c <= 1416 || (c < 1969 - ? (c < 1765 - ? (c < 1646 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1808 - ? (c < 1786 - ? (c >= 1774 && c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957))))) - : (c <= 1969 || (c < 2088 - ? (c < 2048 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c < 2208 - ? (c >= 2185 && c <= 2190) - : c <= 2249))))))))) - : (c <= 2361 || (c < 2693 - ? (c < 2527 - ? (c < 2451 - ? (c < 2417 - ? (c < 2384 - ? c == 2365 - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))) - : (c <= 2472 || (c < 2493 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : (c <= 2482 || (c >= 2486 && c <= 2489))) - : (c <= 2493 || (c < 2524 - ? c == 2510 - : c <= 2525))))) - : (c <= 2529 || (c < 2610 - ? (c < 2575 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2649 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2652 || (c < 2674 - ? c == 2654 - : c <= 2676))))))) - : (c <= 2701 || (c < 2866 - ? (c < 2768 - ? (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749))) - : (c <= 2768 || (c < 2831 - ? (c < 2809 - ? (c >= 2784 && c <= 2785) - : (c <= 2809 || (c >= 2821 && c <= 2828))) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2949 - ? (c < 2911 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2947 - ? c == 2929 - : c <= 2947))) - : (c <= 2954 || (c < 2969 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))))))))))) - : (c <= 2980 || (c < 4159 - ? (c < 3412 - ? (c < 3214 - ? (c < 3114 - ? (c < 3077 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : (c <= 3001 || c == 3024)) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3205 - ? c == 3200 - : c <= 3212))))) - : (c <= 3216 || (c < 3313 - ? (c < 3261 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344) - : (c <= 3386 || (c < 3406 - ? c == 3389 - : c <= 3406))))))) - : (c <= 3414 || (c < 3724 - ? (c < 3520 - ? (c < 3482 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : (c <= 3455 || (c >= 3461 && c <= 3478))) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3713 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : (c <= 3635 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3718 - ? c == 3716 - : c <= 3722))))) - : (c <= 3747 || (c < 3804 - ? (c < 3773 - ? (c < 3751 - ? c == 3749 - : (c <= 3760 || (c >= 3762 && c <= 3763))) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3807 || (c < 3913 - ? (c < 3904 - ? c == 3840 - : c <= 3911) - : (c <= 3948 || (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138))))))))) - : (c <= 4159 || (c < 4888 - ? (c < 4688 - ? (c < 4238 - ? (c < 4197 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225))) - : (c <= 4238 || (c < 4304 - ? (c < 4295 - ? (c >= 4256 && c <= 4293) - : (c <= 4295 || c == 4301)) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))) - : (c <= 4694 || (c < 4792 - ? (c < 4746 - ? (c < 4698 - ? c == 4696 - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))))) - : (c <= 4954 || (c < 6016 - ? (c < 5792 - ? (c < 5121 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : (c <= 5109 || (c >= 5112 && c <= 5117))) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5952 - ? (c < 5888 - ? (c >= 5873 && c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))) - : (c <= 5969 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6067 || (c < 6320 - ? (c < 6272 - ? (c < 6108 - ? c == 6103 - : (c <= 6108 || (c >= 6176 && c <= 6264))) - : (c <= 6276 || (c < 6314 - ? (c >= 6279 && c <= 6312) - : c <= 6314))) - : (c <= 6389 || (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))))))))))))) - : (c <= 6678 || (c < 43259 - ? (c < 8579 - ? (c < 8031 - ? (c < 7401 - ? (c < 7098 - ? (c < 6981 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))) - : (c <= 6988 || (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087))) - : (c <= 7141 || (c < 7296 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))) - : (c <= 7304 || (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359))))) - : (c <= 7404 || (c < 7968 - ? (c < 7424 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || (c < 8029 - ? c == 8027 - : c <= 8029))))))) - : (c <= 8061 || (c < 8450 - ? (c < 8150 - ? (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))) - : (c <= 8155 || (c < 8305 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))))) - : (c <= 8450 || (c < 8488 - ? (c < 8473 - ? (c < 8458 - ? c == 8455 - : (c <= 8467 || c == 8469)) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))) - : (c <= 8488 || (c < 8508 - ? (c < 8495 - ? (c >= 8490 && c <= 8493) - : c <= 8505) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))))))) - : (c <= 8580 || (c < 12593 - ? (c < 11712 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11688 - ? (c < 11648 - ? c == 11631 - : (c <= 11670 || (c >= 11680 && c <= 11686))) - : (c <= 11694 || (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710))))) - : (c <= 11718 || (c < 12347 - ? (c < 11823 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))) - : (c <= 11823 || (c < 12337 - ? (c >= 12293 && c <= 12294) - : c <= 12341))) - : (c <= 12348 || (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))))))) - : (c <= 12686 || (c < 42775 - ? (c < 42192 - ? (c < 19903 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : (c <= 12799 || c == 13312)) - : (c <= 19903 || (c < 40959 - ? c == 19968 - : c <= 42124))) - : (c <= 42237 || (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42725))))) - : (c <= 42783 || (c < 43011 - ? (c < 42963 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : (c <= 42954 || (c >= 42960 && c <= 42961))) - : (c <= 42963 || (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c < 43250 - ? (c >= 43138 && c <= 43187) - : c <= 43255))))))))))) - : (c <= 43259 || (c < 65313 - ? (c < 43808 - ? (c < 43642 - ? (c < 43488 - ? (c < 43360 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471))) - : (c <= 43492 || (c < 43584 - ? (c < 43514 - ? (c >= 43494 && c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638))))) - : (c <= 43642 || (c < 43739 - ? (c < 43705 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : (c <= 43697 || (c >= 43701 && c <= 43702))) - : (c <= 43709 || (c < 43714 - ? c == 43712 - : c <= 43714))) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798))))))) - : (c <= 43814 || (c < 64287 - ? (c < 55216 - ? (c < 43888 - ? (c < 43824 - ? (c >= 43816 && c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55203 - ? c == 44032 - : c <= 55203))) - : (c <= 55238 || (c < 64256 - ? (c < 63744 - ? (c >= 55243 && c <= 55291) - : (c <= 64109 || (c >= 64112 && c <= 64217))) - : (c <= 64262 || (c < 64285 - ? (c >= 64275 && c <= 64279) - : c <= 64285))))) - : (c <= 64296 || (c < 64467 - ? (c < 64320 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : (c <= 64316 || c == 64318)) - : (c <= 64321 || (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65019 || (c < 65142 - ? (c >= 65136 && c <= 65140) - : c <= 65276))))))))) - : (c <= 65338 || (c < 66864 - ? (c < 66176 - ? (c < 65536 - ? (c < 65482 - ? (c < 65382 - ? (c >= 65345 && c <= 65370) - : (c <= 65470 || (c >= 65474 && c <= 65479))) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 66204 || (c < 66464 - ? (c < 66370 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66368))) - : (c <= 66377 || (c < 66432 - ? (c >= 66384 && c <= 66421) - : c <= 66461))) - : (c <= 66499 || (c < 66736 - ? (c < 66560 - ? (c >= 66504 && c <= 66511) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))))) - : (c <= 66915 || (c < 67506 - ? (c < 66995 - ? (c < 66964 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : (c <= 66954 || (c >= 66956 && c <= 66962))) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))) - : (c <= 67001 || (c < 67424 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : (c <= 67382 || (c >= 67392 && c <= 67413))) - : (c <= 67431 || (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504))))) - : (c <= 67514 || (c < 67680 - ? (c < 67639 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))) - : (c <= 67640 || (c < 67647 - ? c == 67644 - : c <= 67669))) - : (c <= 67702 || (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} - -static inline bool sym__alpha_identifier_character_set_5(int32_t c) { - return (c < 6512 - ? (c < 3046 - ? (c < 2437 - ? (c < 1646 - ? (c < 902 - ? (c < 736 - ? (c < 192 - ? (c < 181 - ? c == 170 - : (c <= 181 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 886 - ? (c < 750 - ? c == 748 - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 895 - ? (c >= 890 && c <= 893) - : c <= 895))))) - : (c <= 902 || (c < 1329 - ? (c < 931 - ? (c < 908 - ? (c >= 904 && c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))) - : (c <= 1013 || (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327))) - : (c <= 1366 || (c < 1519 - ? (c < 1376 - ? c == 1369 - : (c <= 1416 || (c >= 1488 && c <= 1514))) - : (c <= 1522 || (c < 1632 - ? (c >= 1568 && c <= 1610) - : c <= 1641))))))) - : (c <= 1647 || (c < 2074 - ? (c < 1810 - ? (c < 1774 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : (c <= 1749 || (c >= 1765 && c <= 1766))) - : (c <= 1788 || (c < 1808 - ? c == 1791 - : c <= 1808))) - : (c <= 1839 || (c < 2036 - ? (c < 1969 - ? (c >= 1869 && c <= 1957) - : (c <= 1969 || (c >= 1984 && c <= 2026))) - : (c <= 2037 || (c < 2048 - ? c == 2042 - : c <= 2069))))) - : (c <= 2074 || (c < 2208 - ? (c < 2144 - ? (c < 2088 - ? c == 2084 - : (c <= 2088 || (c >= 2112 && c <= 2136))) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2249 || (c < 2392 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2432))))))))) - : (c <= 2444 || (c < 2741 - ? (c < 2579 - ? (c < 2510 - ? (c < 2482 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))) - : (c <= 2482 || (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493))) - : (c <= 2510 || (c < 2556 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : (c <= 2529 || (c >= 2534 && c <= 2545))) - : (c <= 2556 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))))) - : (c <= 2600 || (c < 2662 - ? (c < 2616 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2671 || (c < 2707 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))) - : (c <= 2728 || (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739))))))) - : (c <= 2745 || (c < 2911 - ? (c < 2831 - ? (c < 2790 - ? (c < 2768 - ? c == 2749 - : (c <= 2768 || (c >= 2784 && c <= 2785))) - : (c <= 2799 || (c < 2821 - ? c == 2809 - : c <= 2828))) - : (c <= 2832 || (c < 2869 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2908 - ? c == 2877 - : c <= 2909))))) - : (c <= 2913 || (c < 2969 - ? (c < 2949 - ? (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || c == 2947)) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2984 - ? (c < 2974 - ? c == 2972 - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024))))))))))) - : (c <= 3055 || (c < 3976 - ? (c < 3430 - ? (c < 3242 - ? (c < 3165 - ? (c < 3114 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3160 - ? c == 3133 - : c <= 3162))) - : (c <= 3165 || (c < 3205 - ? (c < 3174 - ? (c >= 3168 && c <= 3169) - : (c <= 3183 || c == 3200)) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))))) - : (c <= 3251 || (c < 3332 - ? (c < 3296 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : (c <= 3261 || (c >= 3293 && c <= 3294))) - : (c <= 3297 || (c < 3313 - ? (c >= 3302 && c <= 3311) - : c <= 3314))) - : (c <= 3340 || (c < 3406 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : (c <= 3386 || c == 3389)) - : (c <= 3406 || (c < 3423 - ? (c >= 3412 && c <= 3414) - : c <= 3425))))))) - : (c <= 3439 || (c < 3718 - ? (c < 3558 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))) - : (c <= 3567 || (c < 3664 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : (c <= 3635 || (c >= 3648 && c <= 3654))) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))))) - : (c <= 3722 || (c < 3782 - ? (c < 3762 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))) - : (c <= 3763 || (c < 3776 - ? c == 3773 - : c <= 3780))) - : (c <= 3782 || (c < 3872 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : (c <= 3807 || c == 3840)) - : (c <= 3881 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948))))))))) - : (c <= 3980 || (c < 4824 - ? (c < 4304 - ? (c < 4206 - ? (c < 4186 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : (c <= 4169 || (c >= 4176 && c <= 4181))) - : (c <= 4189 || (c < 4197 - ? c == 4193 - : c <= 4198))) - : (c <= 4208 || (c < 4256 - ? (c < 4238 - ? (c >= 4213 && c <= 4225) - : (c <= 4238 || (c >= 4240 && c <= 4249))) - : (c <= 4293 || (c < 4301 - ? c == 4295 - : c <= 4301))))) - : (c <= 4346 || (c < 4746 - ? (c < 4696 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : (c <= 4685 || (c >= 4688 && c <= 4694))) - : (c <= 4696 || (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744))) - : (c <= 4749 || (c < 4800 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : (c <= 4789 || (c >= 4792 && c <= 4798))) - : (c <= 4800 || (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822))))))) - : (c <= 4880 || (c < 5984 - ? (c < 5743 - ? (c < 5024 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5888 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : (c <= 5866 || (c >= 5873 && c <= 5880))) - : (c <= 5905 || (c < 5952 - ? (c >= 5919 && c <= 5937) - : c <= 5969))))) - : (c <= 5996 || (c < 6176 - ? (c < 6108 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6160 - ? (c >= 6112 && c <= 6121) - : c <= 6169))) - : (c <= 6264 || (c < 6320 - ? (c < 6279 - ? (c >= 6272 && c <= 6276) - : (c <= 6312 || c == 6314)) - : (c <= 6389 || (c < 6470 - ? (c >= 6400 && c <= 6430) - : c <= 6509))))))))))))) - : (c <= 6516 || (c < 43250 - ? (c < 8508 - ? (c < 8016 - ? (c < 7232 - ? (c < 6823 - ? (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : (c <= 6601 || (c >= 6608 && c <= 6617))) - : (c <= 6678 || (c < 6784 - ? (c >= 6688 && c <= 6740) - : (c <= 6793 || (c >= 6800 && c <= 6809))))) - : (c <= 6823 || (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : (c <= 6988 || (c >= 6992 && c <= 7001))) - : (c <= 7072 || (c < 7168 - ? (c >= 7086 && c <= 7141) - : c <= 7203))))) - : (c <= 7241 || (c < 7413 - ? (c < 7357 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7406 - ? (c >= 7401 && c <= 7404) - : c <= 7411))) - : (c <= 7414 || (c < 7960 - ? (c < 7424 - ? c == 7418 - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013))))))) - : (c <= 8023 || (c < 8182 - ? (c < 8126 - ? (c < 8031 - ? (c < 8027 - ? c == 8025 - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8150 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))) - : (c <= 8188 || (c < 8469 - ? (c < 8450 - ? (c < 8319 - ? c == 8305 - : (c <= 8319 || (c >= 8336 && c <= 8348))) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))) - : (c <= 8469 || (c < 8488 - ? (c < 8484 - ? (c >= 8473 && c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8495 - ? (c >= 8490 && c <= 8493) - : c <= 8505))))))))) - : (c <= 8511 || (c < 12540 - ? (c < 11688 - ? (c < 11520 - ? (c < 11264 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : (c <= 8526 || (c >= 8579 && c <= 8580))) - : (c <= 11492 || (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507))) - : (c <= 11557 || (c < 11631 - ? (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))) - : (c <= 11631 || (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686))))) - : (c <= 11694 || (c < 11823 - ? (c < 11720 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11823 || (c < 12353 - ? (c < 12337 - ? (c >= 12293 && c <= 12294) - : (c <= 12341 || (c >= 12347 && c <= 12348))) - : (c <= 12438 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))))) - : (c <= 12543 || (c < 42656 - ? (c < 19968 - ? (c < 12784 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : (c <= 12686 || (c >= 12704 && c <= 12735))) - : (c <= 12799 || (c < 19903 - ? c == 13312 - : c <= 19903))) - : (c <= 19968 || (c < 42512 - ? (c < 42192 - ? (c >= 40959 && c <= 42124) - : (c <= 42237 || (c >= 42240 && c <= 42508))) - : (c <= 42539 || (c < 42623 - ? (c >= 42560 && c <= 42606) - : c <= 42653))))) - : (c <= 42725 || (c < 42994 - ? (c < 42960 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43009 || (c < 43072 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : (c <= 43018 || (c >= 43020 && c <= 43042))) - : (c <= 43123 || (c < 43216 - ? (c >= 43138 && c <= 43187) - : c <= 43225))))))))))) - : (c <= 43255 || (c < 65296 - ? (c < 43808 - ? (c < 43616 - ? (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : (c <= 43262 || (c >= 43264 && c <= 43301))) - : (c <= 43334 || (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442))) - : (c <= 43481 || (c < 43584 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43600 - ? (c >= 43588 && c <= 43595) - : c <= 43609))))) - : (c <= 43638 || (c < 43714 - ? (c < 43701 - ? (c < 43646 - ? c == 43642 - : (c <= 43695 || c == 43697)) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43777 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : (c <= 43754 || (c >= 43762 && c <= 43764))) - : (c <= 43782 || (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798))))))) - : (c <= 43814 || (c < 64285 - ? (c < 55203 - ? (c < 43888 - ? (c < 43824 - ? (c >= 43816 && c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 44032))) - : (c <= 55203 || (c < 64112 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279))))) - : (c <= 64285 || (c < 64326 - ? (c < 64318 - ? (c < 64298 - ? (c >= 64287 && c <= 64296) - : (c <= 64310 || (c >= 64312 && c <= 64316))) - : (c <= 64318 || (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c >= 64467 && c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65019 || (c < 65142 - ? (c >= 65136 && c <= 65140) - : c <= 65276))))))))) - : (c <= 65305 || (c < 66816 - ? (c < 65664 - ? (c < 65498 - ? (c < 65474 - ? (c < 65345 - ? (c >= 65313 && c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65596 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : (c <= 65574 || (c >= 65576 && c <= 65594))) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66432 - ? (c < 66349 - ? (c < 66208 - ? (c >= 66176 && c <= 66204) - : (c <= 66256 || (c >= 66304 && c <= 66335))) - : (c <= 66368 || (c < 66384 - ? (c >= 66370 && c <= 66377) - : c <= 66421))) - : (c <= 66461 || (c < 66720 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : (c <= 66511 || (c >= 66560 && c <= 66717))) - : (c <= 66729 || (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811))))))) - : (c <= 66855 || (c < 67463 - ? (c < 66979 - ? (c < 66956 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67392 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67647 - ? (c < 67594 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : (c <= 67589 || c == 67592)) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67828 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} - -static inline bool sym__alpha_identifier_character_set_6(int32_t c) { - return (c < 6400 - ? (c < 2984 - ? (c < 2384 - ? (c < 1488 - ? (c < 880 - ? (c < 192 - ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : (c <= 'Z' || c == '_')) - : (c <= 'z' || (c < 181 - ? c == 170 - : (c <= 181 || c == 186)))) - : (c <= 214 || (c < 736 - ? (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 910 - ? (c < 902 - ? (c < 890 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1329 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))))))) - : (c <= 1514 || (c < 1984 - ? (c < 1765 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : (c <= 1610 || (c >= 1632 && c <= 1641))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1810 - ? (c < 1791 - ? (c >= 1774 && c <= 1788) - : (c <= 1791 || c == 1808)) - : (c <= 1839 || (c < 1969 - ? (c >= 1869 && c <= 1957) - : c <= 1969))))) - : (c <= 2026 || (c < 2112 - ? (c < 2074 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2208 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))) - : (c <= 2249 || (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365))))))))) - : (c <= 2384 || (c < 2707 - ? (c < 2556 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2392 && c <= 2401) - : (c <= 2415 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2524 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2534 - ? (c >= 2527 && c <= 2529) - : c <= 2545))))) - : (c <= 2556 || (c < 2616 - ? (c < 2602 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))) - : (c <= 2617 || (c < 2674 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2662 && c <= 2671))) - : (c <= 2676 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))))))) - : (c <= 2728 || (c < 2869 - ? (c < 2790 - ? (c < 2749 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : (c <= 2739 || (c >= 2741 && c <= 2745))) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2799 || (c < 2835 - ? (c < 2821 - ? c == 2809 - : (c <= 2828 || (c >= 2831 && c <= 2832))) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2949 - ? (c < 2918 - ? (c < 2908 - ? c == 2877 - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2927 || (c < 2947 - ? c == 2929 - : c <= 2947))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))))))))) - : (c <= 2986 || (c < 3904 - ? (c < 3412 - ? (c < 3214 - ? (c < 3133 - ? (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : (c <= 3024 || (c >= 3046 && c <= 3055))) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))) - : (c <= 3133 || (c < 3174 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3183 || (c < 3205 - ? c == 3200 - : c <= 3212))))) - : (c <= 3216 || (c < 3302 - ? (c < 3261 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3311 || (c < 3346 - ? (c < 3332 - ? (c >= 3313 && c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))) - : (c <= 3386 || (c < 3406 - ? c == 3389 - : c <= 3406))))))) - : (c <= 3414 || (c < 3713 - ? (c < 3517 - ? (c < 3461 - ? (c < 3430 - ? (c >= 3423 && c <= 3425) - : (c <= 3439 || (c >= 3450 && c <= 3455))) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3558 - ? (c >= 3520 && c <= 3526) - : (c <= 3567 || (c >= 3585 && c <= 3632))) - : (c <= 3635 || (c < 3664 - ? (c >= 3648 && c <= 3654) - : c <= 3673))))) - : (c <= 3714 || (c < 3773 - ? (c < 3749 - ? (c < 3718 - ? c == 3716 - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3763))) - : (c <= 3773 || (c < 3804 - ? (c < 3782 - ? (c >= 3776 && c <= 3780) - : (c <= 3782 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3872 - ? c == 3840 - : c <= 3881))))))))) - : (c <= 3911 || (c < 4802 - ? (c < 4295 - ? (c < 4193 - ? (c < 4159 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4169 || (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189))) - : (c <= 4193 || (c < 4238 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : (c <= 4208 || (c >= 4213 && c <= 4225))) - : (c <= 4238 || (c < 4256 - ? (c >= 4240 && c <= 4249) - : c <= 4293))))) - : (c <= 4295 || (c < 4698 - ? (c < 4682 - ? (c < 4304 - ? c == 4301 - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696))) - : (c <= 4701 || (c < 4786 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))) - : (c <= 4789 || (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800))))))) - : (c <= 4805 || (c < 5919 - ? (c < 5112 - ? (c < 4888 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : (c <= 4880 || (c >= 4882 && c <= 4885))) - : (c <= 4954 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5873 && c <= 5880) - : c <= 5905))))) - : (c <= 5937 || (c < 6112 - ? (c < 6016 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6067 || (c < 6108 - ? c == 6103 - : c <= 6108))) - : (c <= 6121 || (c < 6279 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : (c <= 6264 || (c >= 6272 && c <= 6276))) - : (c <= 6312 || (c < 6320 - ? c == 6314 - : c <= 6389))))))))))))) - : (c <= 6430 || (c < 43216 - ? (c < 8490 - ? (c < 7968 - ? (c < 7086 - ? (c < 6784 - ? (c < 6576 - ? (c < 6512 - ? (c >= 6470 && c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6617) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6793 || (c < 6981 - ? (c < 6823 - ? (c >= 6800 && c <= 6809) - : (c <= 6823 || (c >= 6917 && c <= 6963))) - : (c <= 6988 || (c < 7043 - ? (c >= 6992 && c <= 7001) - : c <= 7072))))) - : (c <= 7141 || (c < 7401 - ? (c < 7296 - ? (c < 7232 - ? (c >= 7168 && c <= 7203) - : (c <= 7241 || (c >= 7245 && c <= 7293))) - : (c <= 7304 || (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359))) - : (c <= 7404 || (c < 7424 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))))))) - : (c <= 8005 || (c < 8160 - ? (c < 8064 - ? (c < 8027 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : (c <= 8023 || c == 8025)) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))) - : (c <= 8116 || (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155))))) - : (c <= 8172 || (c < 8455 - ? (c < 8319 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8484 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : (c <= 8469 || (c >= 8473 && c <= 8477))) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))))))))) - : (c <= 8493 || (c < 12449 - ? (c < 11680 - ? (c < 11506 - ? (c < 8526 - ? (c < 8508 - ? (c >= 8495 && c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11264 - ? (c >= 8579 && c <= 8580) - : (c <= 11492 || (c >= 11499 && c <= 11502))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12347 - ? (c < 12293 - ? c == 11823 - : (c <= 12294 || (c >= 12337 && c <= 12341))) - : (c <= 12348 || (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447))))))) - : (c <= 12538 || (c < 42623 - ? (c < 19903 - ? (c < 12704 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 13312))) - : (c <= 19903 || (c < 42240 - ? (c < 40959 - ? c == 19968 - : (c <= 42124 || (c >= 42192 && c <= 42237))) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42606))))) - : (c <= 42653 || (c < 42965 - ? (c < 42891 - ? (c < 42775 - ? (c >= 42656 && c <= 42725) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43020 - ? (c < 43011 - ? (c >= 42994 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))) - : (c <= 43042 || (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187))))))))))) - : (c <= 43225 || (c < 65296 - ? (c < 43808 - ? (c < 43616 - ? (c < 43471 - ? (c < 43264 - ? (c < 43259 - ? (c >= 43250 && c <= 43255) - : (c <= 43259 || (c >= 43261 && c <= 43262))) - : (c <= 43301 || (c < 43360 - ? (c >= 43312 && c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43481 || (c < 43584 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43600 - ? (c >= 43588 && c <= 43595) - : c <= 43609))))) - : (c <= 43638 || (c < 43714 - ? (c < 43701 - ? (c < 43646 - ? c == 43642 - : (c <= 43695 || c == 43697)) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43777 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : (c <= 43754 || (c >= 43762 && c <= 43764))) - : (c <= 43782 || (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798))))))) - : (c <= 43814 || (c < 64285 - ? (c < 55203 - ? (c < 43888 - ? (c < 43824 - ? (c >= 43816 && c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 44032))) - : (c <= 55203 || (c < 64112 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279))))) - : (c <= 64285 || (c < 64326 - ? (c < 64318 - ? (c < 64298 - ? (c >= 64287 && c <= 64296) - : (c <= 64310 || (c >= 64312 && c <= 64316))) - : (c <= 64318 || (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c >= 64467 && c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65019 || (c < 65142 - ? (c >= 65136 && c <= 65140) - : c <= 65276))))))))) - : (c <= 65305 || (c < 66816 - ? (c < 65664 - ? (c < 65498 - ? (c < 65474 - ? (c < 65345 - ? (c >= 65313 && c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65596 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : (c <= 65574 || (c >= 65576 && c <= 65594))) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66432 - ? (c < 66349 - ? (c < 66208 - ? (c >= 66176 && c <= 66204) - : (c <= 66256 || (c >= 66304 && c <= 66335))) - : (c <= 66368 || (c < 66384 - ? (c >= 66370 && c <= 66377) - : c <= 66421))) - : (c <= 66461 || (c < 66720 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : (c <= 66511 || (c >= 66560 && c <= 66717))) - : (c <= 66729 || (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811))))))) - : (c <= 66855 || (c < 67463 - ? (c < 66979 - ? (c < 66956 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67392 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67647 - ? (c < 67594 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : (c <= 67589 || c == 67592)) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67828 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} +static TSCharacterRange sym__alpha_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe33}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16f1, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, + {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, + {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, + {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, + {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, + {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, + {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, + {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2183, 0x2184}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, + {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, + {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, + {0x3005, 0x3006}, {0x3031, 0x3035}, {0x303b, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, + {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, {0x4e00, 0x4e00}, {0x9fff, 0xa48c}, {0xa4d0, 0xa4fd}, + {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6e5}, {0xa717, 0xa71f}, {0xa722, 0xa788}, + {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, + {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, + {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, + {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, + {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, + {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xac00}, {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, + {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, + {0xfe76, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, + {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10280, 0x1029c}, + {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x10340}, {0x10342, 0x10349}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, + {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, + {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x1092b}, +}; -static inline bool sym__alpha_identifier_character_set_7(int32_t c) { - return (c < 6400 - ? (c < 2984 - ? (c < 2384 - ? (c < 1488 - ? (c < 880 - ? (c < 192 - ? (c < 'b' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : (c <= 'Z' || c == '_')) - : (c <= 'z' || (c < 181 - ? c == 170 - : (c <= 181 || c == 186)))) - : (c <= 214 || (c < 736 - ? (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 910 - ? (c < 902 - ? (c < 890 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1329 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))))))) - : (c <= 1514 || (c < 1984 - ? (c < 1765 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : (c <= 1610 || (c >= 1632 && c <= 1641))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1810 - ? (c < 1791 - ? (c >= 1774 && c <= 1788) - : (c <= 1791 || c == 1808)) - : (c <= 1839 || (c < 1969 - ? (c >= 1869 && c <= 1957) - : c <= 1969))))) - : (c <= 2026 || (c < 2112 - ? (c < 2074 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2208 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))) - : (c <= 2249 || (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365))))))))) - : (c <= 2384 || (c < 2707 - ? (c < 2556 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2392 && c <= 2401) - : (c <= 2415 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2524 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2534 - ? (c >= 2527 && c <= 2529) - : c <= 2545))))) - : (c <= 2556 || (c < 2616 - ? (c < 2602 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))) - : (c <= 2617 || (c < 2674 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2662 && c <= 2671))) - : (c <= 2676 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))))))) - : (c <= 2728 || (c < 2869 - ? (c < 2790 - ? (c < 2749 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : (c <= 2739 || (c >= 2741 && c <= 2745))) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2799 || (c < 2835 - ? (c < 2821 - ? c == 2809 - : (c <= 2828 || (c >= 2831 && c <= 2832))) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2949 - ? (c < 2918 - ? (c < 2908 - ? c == 2877 - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2927 || (c < 2947 - ? c == 2929 - : c <= 2947))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))))))))) - : (c <= 2986 || (c < 3904 - ? (c < 3412 - ? (c < 3214 - ? (c < 3133 - ? (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : (c <= 3024 || (c >= 3046 && c <= 3055))) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))) - : (c <= 3133 || (c < 3174 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3183 || (c < 3205 - ? c == 3200 - : c <= 3212))))) - : (c <= 3216 || (c < 3302 - ? (c < 3261 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297))) - : (c <= 3311 || (c < 3346 - ? (c < 3332 - ? (c >= 3313 && c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))) - : (c <= 3386 || (c < 3406 - ? c == 3389 - : c <= 3406))))))) - : (c <= 3414 || (c < 3713 - ? (c < 3517 - ? (c < 3461 - ? (c < 3430 - ? (c >= 3423 && c <= 3425) - : (c <= 3439 || (c >= 3450 && c <= 3455))) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3558 - ? (c >= 3520 && c <= 3526) - : (c <= 3567 || (c >= 3585 && c <= 3632))) - : (c <= 3635 || (c < 3664 - ? (c >= 3648 && c <= 3654) - : c <= 3673))))) - : (c <= 3714 || (c < 3773 - ? (c < 3749 - ? (c < 3718 - ? c == 3716 - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3763))) - : (c <= 3773 || (c < 3804 - ? (c < 3782 - ? (c >= 3776 && c <= 3780) - : (c <= 3782 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3872 - ? c == 3840 - : c <= 3881))))))))) - : (c <= 3911 || (c < 4802 - ? (c < 4295 - ? (c < 4193 - ? (c < 4159 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4169 || (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189))) - : (c <= 4193 || (c < 4238 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : (c <= 4208 || (c >= 4213 && c <= 4225))) - : (c <= 4238 || (c < 4256 - ? (c >= 4240 && c <= 4249) - : c <= 4293))))) - : (c <= 4295 || (c < 4698 - ? (c < 4682 - ? (c < 4304 - ? c == 4301 - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696))) - : (c <= 4701 || (c < 4786 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))) - : (c <= 4789 || (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800))))))) - : (c <= 4805 || (c < 5919 - ? (c < 5112 - ? (c < 4888 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : (c <= 4880 || (c >= 4882 && c <= 4885))) - : (c <= 4954 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5873 && c <= 5880) - : c <= 5905))))) - : (c <= 5937 || (c < 6112 - ? (c < 6016 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6067 || (c < 6108 - ? c == 6103 - : c <= 6108))) - : (c <= 6121 || (c < 6279 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : (c <= 6264 || (c >= 6272 && c <= 6276))) - : (c <= 6312 || (c < 6320 - ? c == 6314 - : c <= 6389))))))))))))) - : (c <= 6430 || (c < 43216 - ? (c < 8490 - ? (c < 7968 - ? (c < 7086 - ? (c < 6784 - ? (c < 6576 - ? (c < 6512 - ? (c >= 6470 && c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6617) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6793 || (c < 6981 - ? (c < 6823 - ? (c >= 6800 && c <= 6809) - : (c <= 6823 || (c >= 6917 && c <= 6963))) - : (c <= 6988 || (c < 7043 - ? (c >= 6992 && c <= 7001) - : c <= 7072))))) - : (c <= 7141 || (c < 7401 - ? (c < 7296 - ? (c < 7232 - ? (c >= 7168 && c <= 7203) - : (c <= 7241 || (c >= 7245 && c <= 7293))) - : (c <= 7304 || (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359))) - : (c <= 7404 || (c < 7424 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))))))) - : (c <= 8005 || (c < 8160 - ? (c < 8064 - ? (c < 8027 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : (c <= 8023 || c == 8025)) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))) - : (c <= 8116 || (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155))))) - : (c <= 8172 || (c < 8455 - ? (c < 8319 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8484 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : (c <= 8469 || (c >= 8473 && c <= 8477))) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))))))))) - : (c <= 8493 || (c < 12449 - ? (c < 11680 - ? (c < 11506 - ? (c < 8526 - ? (c < 8508 - ? (c >= 8495 && c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11264 - ? (c >= 8579 && c <= 8580) - : (c <= 11492 || (c >= 11499 && c <= 11502))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12347 - ? (c < 12293 - ? c == 11823 - : (c <= 12294 || (c >= 12337 && c <= 12341))) - : (c <= 12348 || (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447))))))) - : (c <= 12538 || (c < 42623 - ? (c < 19903 - ? (c < 12704 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 13312))) - : (c <= 19903 || (c < 42240 - ? (c < 40959 - ? c == 19968 - : (c <= 42124 || (c >= 42192 && c <= 42237))) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42606))))) - : (c <= 42653 || (c < 42965 - ? (c < 42891 - ? (c < 42775 - ? (c >= 42656 && c <= 42725) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43020 - ? (c < 43011 - ? (c >= 42994 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))) - : (c <= 43042 || (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187))))))))))) - : (c <= 43225 || (c < 65296 - ? (c < 43808 - ? (c < 43616 - ? (c < 43471 - ? (c < 43264 - ? (c < 43259 - ? (c >= 43250 && c <= 43255) - : (c <= 43259 || (c >= 43261 && c <= 43262))) - : (c <= 43301 || (c < 43360 - ? (c >= 43312 && c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43481 || (c < 43584 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43600 - ? (c >= 43588 && c <= 43595) - : c <= 43609))))) - : (c <= 43638 || (c < 43714 - ? (c < 43701 - ? (c < 43646 - ? c == 43642 - : (c <= 43695 || c == 43697)) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43777 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : (c <= 43754 || (c >= 43762 && c <= 43764))) - : (c <= 43782 || (c < 43793 - ? (c >= 43785 && c <= 43790) - : c <= 43798))))))) - : (c <= 43814 || (c < 64285 - ? (c < 55203 - ? (c < 43888 - ? (c < 43824 - ? (c >= 43816 && c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 44032))) - : (c <= 55203 || (c < 64112 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279))))) - : (c <= 64285 || (c < 64326 - ? (c < 64318 - ? (c < 64298 - ? (c >= 64287 && c <= 64296) - : (c <= 64310 || (c >= 64312 && c <= 64316))) - : (c <= 64318 || (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c >= 64467 && c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65019 || (c < 65142 - ? (c >= 65136 && c <= 65140) - : c <= 65276))))))))) - : (c <= 65305 || (c < 66816 - ? (c < 65664 - ? (c < 65498 - ? (c < 65474 - ? (c < 65345 - ? (c >= 65313 && c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65596 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : (c <= 65574 || (c >= 65576 && c <= 65594))) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66432 - ? (c < 66349 - ? (c < 66208 - ? (c >= 66176 && c <= 66204) - : (c <= 66256 || (c >= 66304 && c <= 66335))) - : (c <= 66368 || (c < 66384 - ? (c >= 66370 && c <= 66377) - : c <= 66421))) - : (c <= 66461 || (c < 66720 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : (c <= 66511 || (c >= 66560 && c <= 66717))) - : (c <= 66729 || (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811))))))) - : (c <= 66855 || (c < 67463 - ? (c < 66979 - ? (c < 66956 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67392 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67647 - ? (c < 67594 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : (c <= 67589 || c == 67592)) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67828 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67883))))))))))))))); -} +static TSCharacterRange sym__alpha_identifier_character_set_2[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, + {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, + {0x37a, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x660, 0x669}, + {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, + {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, + {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, + {0x950, 0x950}, {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, + {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb6f}, + {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, + {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbef}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc80, 0xc80}, {0xc85, 0xc8c}, + {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xde6, 0xdef}, + {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe40, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, + {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, {0xedc, 0xedf}, + {0xf00, 0xf00}, {0xf20, 0xf29}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x1049}, {0x1050, 0x1055}, + {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, {0x10a0, 0x10c5}, + {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, + {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, + {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, + {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16f1, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, + {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x17e0, 0x17e9}, {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, + {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19d9}, + {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, + {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, + {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, + {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, + {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, + {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, + {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, + {0x2183, 0x2184}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x3005, 0x3006}, {0x3031, 0x3035}, {0x303b, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, + {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x3400}, {0x4dbf, 0x4dbf}, + {0x4e00, 0x4e00}, {0x9fff, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6e5}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, + {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, + {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, + {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xac00}, + {0xd7a3, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, + {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, + {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x10340}, + {0x10342, 0x10349}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, + {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, + {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, + {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, + {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x1092b}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(319); - if (lookahead == '!') ADVANCE(397); - if (lookahead == '#') ADVANCE(8); - if (lookahead == '$') ADVANCE(370); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(344); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(510); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(726); - if (lookahead == 'b') ADVANCE(833); - if (lookahead == 'c') ADVANCE(818); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 'f') ADVANCE(775); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == 'l') ADVANCE(715); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 'o') ADVANCE(824); - if (lookahead == 'p') ADVANCE(829); - if (lookahead == 'r') ADVANCE(763); - if (lookahead == 's') ADVANCE(739); - if (lookahead == 't') ADVANCE(710); - if (lookahead == 'v') ADVANCE(707); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 399, + '#', 8, + '$', 372, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 338, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 512, + '[', 331, + '\\', 304, + ']', 332, + '`', 319, + 'a', 728, + 'b', 835, + 'c', 820, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 'r', 765, + 's', 741, + 't', 712, + 'v', 709, + '{', 341, + '|', 310, + '}', 342, + ); 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); + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 't') ADVANCE(537); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(1); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(588); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(2); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(510); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 't') ADVANCE(537); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(510); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(588); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 't') ADVANCE(537); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + '`', 319, + 'a', 554, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(397); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(588); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 399, + '%', 394, + '&', 19, + '\'', 520, + '(', 343, + '*', 364, + '+', 388, + ',', 344, + '-', 390, + '.', 335, + '/', 393, + '0', 516, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + '`', 319, + 'a', 557, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(399); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == '!') ADVANCE(401); + if (lookahead == '=') ADVANCE(379); + if (lookahead == 'i') ADVANCE(249); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(320); + if (lookahead == '!') ADVANCE(323); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(385); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(556); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(588); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 398, + '\'', 520, + '(', 343, + ')', 345, + '*', 363, + '+', 387, + '-', 389, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + '<', 346, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(9) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(385); - if (lookahead == '-') ADVANCE(387); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(33); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(556); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(587); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); + ADVANCE_MAP( + '!', 398, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + '-', 389, + '.', 313, + '/', 30, + '0', 516, + ':', 35, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 589, + 't', 598, + 'v', 550, + '{', 341, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(10); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(398); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(385); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(553); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 't') ADVANCE(537); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 400, + '&', 359, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + ',', 344, + '-', 392, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + ';', 350, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 555, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(398); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(385); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(556); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(588); - if (lookahead == 't') ADVANCE(596); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 400, + '&', 359, + '\'', 520, + '(', 343, + '*', 363, + '+', 387, + ',', 344, + '-', 392, + '.', 336, + '/', 30, + '0', 516, + ':', 330, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 558, + 'b', 666, + 'c', 653, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 'r', 592, + 's', 590, + 't', 598, + 'v', 550, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'c') ADVANCE(652); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 's') ADVANCE(567); - if (lookahead == 't') ADVANCE(538); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 360, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 's') ADVANCE(589); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 360, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14) + lookahead == ' ') SKIP(14); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(510); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'c') ADVANCE(652); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 's') ADVANCE(567); - if (lookahead == 't') ADVANCE(538); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(17); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(510); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 's') ADVANCE(589); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 512, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18) + lookahead == ' ') SKIP(18); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'c') ADVANCE(652); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 's') ADVANCE(567); - if (lookahead == 't') ADVANCE(538); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 554, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(17); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(7); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(19); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(345); - if (lookahead == '/') ADVANCE(391); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(34); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(555); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(705); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 's') ADVANCE(589); - if (lookahead == 'v') ADVANCE(548); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '!', 7, + '%', 394, + '&', 19, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 334, + '/', 393, + ':', 35, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 36, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 557, + 'd', 541, + 'e', 707, + 'g', 581, + 'i', 646, + 's', 591, + 'v', 550, + '{', 341, + '|', 310, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18) + lookahead == ' ') SKIP(18); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 19: - if (lookahead == '&') ADVANCE(367); + if (lookahead == '&') ADVANCE(369); END_STATE(); case 20: - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(729); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(874); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 's') ADVANCE(762); - if (lookahead == 'v') ADVANCE(722); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + '*', 337, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 764, + 'v', 724, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(20) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(21); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 21: - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(727); - if (lookahead == 'c') ADVANCE(822); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 'f') ADVANCE(775); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == 'l') ADVANCE(715); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 'o') ADVANCE(824); - if (lookahead == 'p') ADVANCE(829); - if (lookahead == 's') ADVANCE(740); - if (lookahead == 't') ADVANCE(711); - if (lookahead == 'v') ADVANCE(707); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + ']', 332, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 764, + 'v', 724, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(21) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(21); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 22: - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == 'a') ADVANCE(553); - if (lookahead == 'c') ADVANCE(652); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 's') ADVANCE(567); - if (lookahead == 't') ADVANCE(538); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '`', 319, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(22); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 23: - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '`') ADVANCE(316); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + ':', 329, + ';', 350, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + '`', 319, + 'a', 729, + 'c', 824, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 's', 742, + 't', 713, + 'v', 709, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(23); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 24: - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == 'a') ADVANCE(727); - if (lookahead == 'c') ADVANCE(822); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 'f') ADVANCE(775); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == 'l') ADVANCE(715); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 'o') ADVANCE(824); - if (lookahead == 'p') ADVANCE(829); - if (lookahead == 's') ADVANCE(760); - if (lookahead == 't') ADVANCE(711); - if (lookahead == 'v') ADVANCE(707); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + ADVANCE_MAP( + '&', 359, + '(', 343, + ')', 345, + ',', 344, + '-', 38, + '.', 333, + '/', 30, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + 'a', 555, + 'c', 654, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 's', 569, + 't', 540, + 'v', 536, + '{', 341, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(24) - if (sym__alpha_identifier_character_set_3(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(24); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '=') ADVANCE(331); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(729); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(874); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 's') ADVANCE(761); - if (lookahead == 'v') ADVANCE(722); + ADVANCE_MAP( + '&', 359, + '(', 343, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '=', 339, + '?', 361, + '@', 328, + 'a', 729, + 'c', 824, + 'd', 714, + 'e', 874, + 'f', 777, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 's', 762, + 't', 713, + 'v', 709, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(25); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 26: - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(729); - if (lookahead == 'c') ADVANCE(834); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(874); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 's') ADVANCE(761); - if (lookahead == 'v') ADVANCE(707); + ADVANCE_MAP( + '(', 343, + ')', 345, + '*', 363, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '=', 339, + '@', 328, + '`', 319, + 'a', 731, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 's', 763, + 'v', 724, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(26); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 27: - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(729); - if (lookahead == 'c') ADVANCE(834); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(874); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 's') ADVANCE(762); - if (lookahead == 'v') ADVANCE(707); + ADVANCE_MAP( + '(', 343, + ')', 345, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + '`', 319, + 'a', 731, + 'c', 836, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 'n', 825, + 's', 763, + 'v', 709, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(27) - if (sym__alpha_identifier_character_set_1(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(27); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 28: - if (lookahead == '(') ADVANCE(335); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '/') ADVANCE(29); - if (lookahead == ':') ADVANCE(326); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '@') ADVANCE(325); - if (lookahead == 'a') ADVANCE(51); - if (lookahead == 'c') ADVANCE(123); - if (lookahead == 'd') ADVANCE(39); - if (lookahead == 'e') ADVANCE(165); - if (lookahead == 'f') ADVANCE(89); - if (lookahead == 'g') ADVANCE(73); - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 'l') ADVANCE(41); - if (lookahead == 'n') ADVANCE(128); - if (lookahead == 'o') ADVANCE(129); - if (lookahead == 'p') ADVANCE(132); - if (lookahead == 's') ADVANCE(62); - if (lookahead == 't') ADVANCE(38); - if (lookahead == 'v') ADVANCE(36); - if (lookahead == '{') ADVANCE(333); + ADVANCE_MAP( + '(', 343, + ')', 345, + ',', 344, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + '`', 319, + 'a', 731, + 'c', 836, + 'd', 714, + 'e', 876, + 'g', 754, + 'i', 817, + 'n', 825, + 's', 764, + 'v', 709, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(28) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + lookahead == ' ') SKIP(28); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); case 29: - if (lookahead == '/') ADVANCE(504); + ADVANCE_MAP( + '(', 343, + '.', 333, + '/', 30, + ':', 329, + '<', 346, + '@', 328, + 'a', 54, + 'c', 126, + 'd', 42, + 'e', 168, + 'f', 92, + 'g', 76, + 'i', 111, + 'l', 44, + 'n', 131, + 'o', 132, + 'p', 135, + 's', 65, + 't', 41, + 'v', 39, + '{', 341, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(29); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 30: - if (lookahead == '/') ADVANCE(29); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '@') ADVANCE(325); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'd') ADVANCE(176); - if (lookahead == 'e') ADVANCE(305); - if (lookahead == 'f') ADVANCE(227); - if (lookahead == 'g') ADVANCE(200); - if (lookahead == 'i') ADVANCE(247); - if (lookahead == 'l') ADVANCE(177); - if (lookahead == 'n') ADVANCE(262); - if (lookahead == 'o') ADVANCE(268); - if (lookahead == 'p') ADVANCE(271); - if (lookahead == 's') ADVANCE(201); - if (lookahead == 't') ADVANCE(178); - if (lookahead == 'v') ADVANCE(174); - if (lookahead == '}') ADVANCE(334); + if (lookahead == '/') ADVANCE(506); + END_STATE(); + case 31: + if (lookahead == '/') ADVANCE(506); + if (lookahead == '=') ADVANCE(377); + END_STATE(); + case 32: + ADVANCE_MAP( + '/', 30, + ';', 350, + '@', 328, + 'a', 192, + 'c', 266, + 'd', 179, + 'e', 308, + 'f', 230, + 'g', 203, + 'i', 250, + 'l', 180, + 'n', 265, + 'o', 271, + 'p', 274, + 's', 204, + 't', 181, + 'v', 177, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30) + lookahead == ' ') SKIP(32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == 'b') ADVANCE(315); + lookahead == 'b') ADVANCE(318); END_STATE(); - case 31: - if (lookahead == '/') ADVANCE(29); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 's') ADVANCE(762); + case 33: + if (lookahead == '/') ADVANCE(30); + if (lookahead == 'g') ADVANCE(754); + if (lookahead == 's') ADVANCE(764); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(31) - if (sym__alpha_identifier_character_set_4(lookahead)) ADVANCE(875); + lookahead == ' ') SKIP(33); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); - case 32: - if (lookahead == '/') ADVANCE(520); - if (lookahead == '\\') ADVANCE(301); + case 34: + if (lookahead == '/') ADVANCE(522); + if (lookahead == '\\') ADVANCE(304); if (lookahead == '\n' || - lookahead == '\r') SKIP(32) + lookahead == '\r') SKIP(34); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(521); + lookahead == ' ') ADVANCE(523); if (lookahead != 0 && - lookahead != '\'') ADVANCE(519); - END_STATE(); - case 33: - if (lookahead == ':') ADVANCE(371); - END_STATE(); - case 34: - if (lookahead == ':') ADVANCE(366); + lookahead != '\'') ADVANCE(521); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(363); + if (lookahead == ':') ADVANCE(373); END_STATE(); case 36: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + if (lookahead == ':') ADVANCE(368); END_STATE(); case 37: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + if (lookahead == '=') ADVANCE(378); END_STATE(); case 38: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(88); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + if (lookahead == '>') ADVANCE(365); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(154); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 40: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(105); - if (lookahead == 't') ADVANCE(355); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 41: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(157); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 42: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(98); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 43: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(99); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(108); + if (lookahead == 't') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 44: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(134); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 45: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(100); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 46: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(101); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 47: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(155); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 48: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(156); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 49: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(158); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 50: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(56); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 51: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'b') ADVANCE(144); - if (lookahead == 'c') ADVANCE(147); - if (lookahead == 'n') ADVANCE(111); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 52: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'b') ADVANCE(103); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 53: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(434); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 54: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(450); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'c') ADVANCE(150); + if (lookahead == 'n') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 55: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(150); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 56: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(151); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 57: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(159); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 58: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(406); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 59: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(402); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 60: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(446); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 61: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(71); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 62: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(40); - if (lookahead == 'u') ADVANCE(142); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 63: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(109); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 64: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(137); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 65: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(55); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'u') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 66: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(58); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 67: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(422); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 68: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(462); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 69: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(438); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(61); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 70: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(490); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 71: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 72: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(494); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 73: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(148); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 74: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(140); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 75: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(54); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 76: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(133); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 77: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(60); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 78: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(112); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 79: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(57); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 80: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(93); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 81: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(141); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 82: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'f') ADVANCE(85); - if (lookahead == 'l') ADVANCE(92); - if (lookahead == 'n') ADVANCE(76); - if (lookahead == 't') ADVANCE(81); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(60); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 83: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'g') ADVANCE(486); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 84: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(164); - if (lookahead == 'o') ADVANCE(160); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 85: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(166); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'l') ADVANCE(95); + if (lookahead == 'n') ADVANCE(79); + if (lookahead == 't') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 86: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(53); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'g') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 87: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(61); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(167); + if (lookahead == 'o') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 88: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(104); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 89: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(113); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 90: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(114); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 91: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 92: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(118); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 93: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(115); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 94: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(152); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 95: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(119); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 96: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(120); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 97: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(122); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 98: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(478); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 99: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(502); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 100: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(466); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 101: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(442); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 102: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(163); - if (lookahead == 'r') ADVANCE(44); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 103: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(86); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 104: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(139); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 105: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(66); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(166); + if (lookahead == 'r') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 106: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(95); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 107: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(96); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 108: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(82); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 109: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(482); - if (lookahead == 'r') ADVANCE(47); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 110: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(410); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 111: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(125); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 112: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(59); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(484); + if (lookahead == 'r') ADVANCE(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 113: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(42); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 114: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(106); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 115: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(94); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 116: - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (lookahead == 'n') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 117: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(46); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 118: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(68); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 119: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(70); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 120: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(72); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 121: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(145); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 122: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(107); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 123: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(121); - if (lookahead == 'r') ADVANCE(124); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 124: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(143); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 125: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(161); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 126: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(135); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(124); + if (lookahead == 'r') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 127: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(110); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 128: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(90); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 129: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(63); - if (lookahead == 'v') ADVANCE(64); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 130: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(65); - if (lookahead == 't') ADVANCE(74); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 131: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(78); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 132: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(84); - if (lookahead == 'u') ADVANCE(52); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(66); + if (lookahead == 'v') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 133: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(418); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(68); + if (lookahead == 't') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 134: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(83); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 135: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(454); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(87); + if (lookahead == 'u') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 136: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(87); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 137: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(136); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 138: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(50); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 139: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(75); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 140: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(116); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 141: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(117); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 142: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(131); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 143: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(146); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 144: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(153); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 145: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(149); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 146: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(97); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 147: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(162); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 148: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(351); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 149: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(470); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 150: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(498); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 151: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(474); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 152: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(430); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 153: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(138); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 154: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(37); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 155: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(126); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 156: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 157: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(80); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 158: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(69); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 159: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(77); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 160: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(79); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 161: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(48); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 162: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(43); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 163: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(67); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 164: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'v') ADVANCE(49); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 165: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'x') ADVANCE(130); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(46); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 166: - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'x') ADVANCE(458); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 167: - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'v') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 168: - if (lookahead == '_') ADVANCE(168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 169: - if (lookahead == '_') ADVANCE(169); - if (lookahead == '0' || - lookahead == '1') ADVANCE(517); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 170: - if (lookahead == '_') ADVANCE(170); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 171: if (lookahead == '_') ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); END_STATE(); case 172: if (lookahead == '_') ADVANCE(172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + if (lookahead == '0' || + lookahead == '1') ADVANCE(519); END_STATE(); case 173: - if (lookahead == '`') ADVANCE(876); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(173); + if (lookahead == '_') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); END_STATE(); case 174: - if (lookahead == 'a') ADVANCE(240); + if (lookahead == '_') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); END_STATE(); case 175: - if (lookahead == 'a') ADVANCE(412); + if (lookahead == '_') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 176: - if (lookahead == 'a') ADVANCE(293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (lookahead == '`') ADVANCE(878); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(176); END_STATE(); case 177: - if (lookahead == 'a') ADVANCE(295); + if (lookahead == 'a') ADVANCE(243); END_STATE(); case 178: - if (lookahead == 'a') ADVANCE(226); + if (lookahead == 'a') ADVANCE(414); END_STATE(); case 179: - if (lookahead == 'a') ADVANCE(243); - if (lookahead == 't') ADVANCE(353); + if (lookahead == 'a') ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); case 180: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'a') ADVANCE(298); END_STATE(); case 181: - if (lookahead == 'a') ADVANCE(237); + if (lookahead == 'a') ADVANCE(229); END_STATE(); case 182: - if (lookahead == 'a') ADVANCE(294); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 183: - if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'a') ADVANCE(239); END_STATE(); case 184: - if (lookahead == 'a') ADVANCE(238); + if (lookahead == 'a') ADVANCE(240); END_STATE(); case 185: - if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'a') ADVANCE(297); END_STATE(); case 186: - if (lookahead == 'a') ADVANCE(239); + if (lookahead == 'a') ADVANCE(276); END_STATE(); case 187: - if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 188: - if (lookahead == 'a') ADVANCE(297); + if (lookahead == 'a') ADVANCE(299); END_STATE(); case 189: - if (lookahead == 'b') ADVANCE(282); - if (lookahead == 'c') ADVANCE(286); - if (lookahead == 'n') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (lookahead == 'a') ADVANCE(242); END_STATE(); case 190: - if (lookahead == 'b') ADVANCE(241); + if (lookahead == 'a') ADVANCE(197); END_STATE(); case 191: - if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'a') ADVANCE(300); END_STATE(); case 192: - if (lookahead == 'c') ADVANCE(448); + if (lookahead == 'b') ADVANCE(285); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'n') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); case 193: - if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'b') ADVANCE(244); END_STATE(); case 194: - if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'c') ADVANCE(434); END_STATE(); case 195: - if (lookahead == 'c') ADVANCE(298); + if (lookahead == 'c') ADVANCE(450); END_STATE(); case 196: - if (lookahead == 'd') ADVANCE(404); + if (lookahead == 'c') ADVANCE(292); END_STATE(); case 197: - if (lookahead == 'd') ADVANCE(400); + if (lookahead == 'c') ADVANCE(293); END_STATE(); case 198: - if (lookahead == 'd') ADVANCE(444); + if (lookahead == 'c') ADVANCE(301); END_STATE(); case 199: - if (lookahead == 'd') ADVANCE(210); + if (lookahead == 'd') ADVANCE(406); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'd') ADVANCE(402); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(179); - if (lookahead == 'u') ADVANCE(281); + if (lookahead == 'd') ADVANCE(446); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'd') ADVANCE(213); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(276); + if (lookahead == 'e') ADVANCE(290); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'u') ADVANCE(284); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'e') ADVANCE(251); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(420); + if (lookahead == 'e') ADVANCE(279); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(460); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 'e') ADVANCE(199); END_STATE(); case 209: - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(424); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(492); + if (lookahead == 'e') ADVANCE(438); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(279); + if (lookahead == 'e') ADVANCE(490); END_STATE(); case 213: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(426); END_STATE(); case 214: - if (lookahead == 'e') ADVANCE(272); + if (lookahead == 'e') ADVANCE(494); END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(282); END_STATE(); case 216: - if (lookahead == 'e') ADVANCE(252); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'e') ADVANCE(275); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'e') ADVANCE(255); END_STATE(); case 220: - if (lookahead == 'f') ADVANCE(223); - if (lookahead == 'l') ADVANCE(230); - if (lookahead == 'n') ADVANCE(214); - if (lookahead == 't') ADVANCE(219); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 221: - if (lookahead == 'g') ADVANCE(484); + if (lookahead == 'e') ADVANCE(234); END_STATE(); case 222: - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'o') ADVANCE(299); + if (lookahead == 'e') ADVANCE(283); END_STATE(); case 223: - if (lookahead == 'i') ADVANCE(306); + if (lookahead == 'f') ADVANCE(226); + if (lookahead == 'l') ADVANCE(233); + if (lookahead == 'n') ADVANCE(217); + if (lookahead == 't') ADVANCE(222); END_STATE(); case 224: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'g') ADVANCE(486); END_STATE(); case 225: - if (lookahead == 'i') ADVANCE(199); + if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'o') ADVANCE(302); END_STATE(); case 226: - if (lookahead == 'i') ADVANCE(242); + if (lookahead == 'i') ADVANCE(309); END_STATE(); case 227: - if (lookahead == 'i') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (lookahead == 'i') ADVANCE(194); END_STATE(); case 228: - if (lookahead == 'i') ADVANCE(254); + if (lookahead == 'i') ADVANCE(202); END_STATE(); case 229: - if (lookahead == 'i') ADVANCE(267); + if (lookahead == 'i') ADVANCE(245); END_STATE(); case 230: - if (lookahead == 'i') ADVANCE(258); + if (lookahead == 'i') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); case 231: - if (lookahead == 'i') ADVANCE(255); + if (lookahead == 'i') ADVANCE(257); END_STATE(); case 232: - if (lookahead == 'i') ADVANCE(291); + if (lookahead == 'i') ADVANCE(270); END_STATE(); case 233: - if (lookahead == 'i') ADVANCE(259); + if (lookahead == 'i') ADVANCE(261); END_STATE(); case 234: - if (lookahead == 'i') ADVANCE(260); + if (lookahead == 'i') ADVANCE(258); END_STATE(); case 235: - if (lookahead == 'i') ADVANCE(261); + if (lookahead == 'i') ADVANCE(294); END_STATE(); case 236: - if (lookahead == 'l') ADVANCE(476); + if (lookahead == 'i') ADVANCE(262); END_STATE(); case 237: - if (lookahead == 'l') ADVANCE(500); + if (lookahead == 'i') ADVANCE(263); END_STATE(); case 238: - if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'i') ADVANCE(264); END_STATE(); case 239: - if (lookahead == 'l') ADVANCE(440); + if (lookahead == 'l') ADVANCE(478); END_STATE(); case 240: - if (lookahead == 'l') ADVANCE(303); - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 'l') ADVANCE(502); END_STATE(); case 241: - if (lookahead == 'l') ADVANCE(224); + if (lookahead == 'l') ADVANCE(466); END_STATE(); case 242: - if (lookahead == 'l') ADVANCE(278); + if (lookahead == 'l') ADVANCE(442); END_STATE(); case 243: - if (lookahead == 'l') ADVANCE(205); + if (lookahead == 'l') ADVANCE(306); + if (lookahead == 'r') ADVANCE(186); END_STATE(); case 244: - if (lookahead == 'l') ADVANCE(233); + if (lookahead == 'l') ADVANCE(227); END_STATE(); case 245: - if (lookahead == 'l') ADVANCE(234); + if (lookahead == 'l') ADVANCE(281); END_STATE(); case 246: - if (lookahead == 'n') ADVANCE(383); - if (lookahead == 's') ADVANCE(384); + if (lookahead == 'l') ADVANCE(208); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(220); + if (lookahead == 'l') ADVANCE(236); END_STATE(); case 248: - if (lookahead == 'n') ADVANCE(480); - if (lookahead == 'r') ADVANCE(182); + if (lookahead == 'l') ADVANCE(237); END_STATE(); case 249: - if (lookahead == 'n') ADVANCE(408); + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 's') ADVANCE(386); END_STATE(); case 250: - if (lookahead == 'n') ADVANCE(284); + if (lookahead == 'n') ADVANCE(223); END_STATE(); case 251: - if (lookahead == 'n') ADVANCE(265); + if (lookahead == 'n') ADVANCE(482); + if (lookahead == 'r') ADVANCE(185); END_STATE(); case 252: - if (lookahead == 'n') ADVANCE(197); + if (lookahead == 'n') ADVANCE(410); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(180); + if (lookahead == 'n') ADVANCE(287); END_STATE(); case 254: - if (lookahead == 'n') ADVANCE(244); + if (lookahead == 'n') ADVANCE(268); END_STATE(); case 255: - if (lookahead == 'n') ADVANCE(232); + if (lookahead == 'n') ADVANCE(200); END_STATE(); case 256: - if (lookahead == 'n') ADVANCE(184); + if (lookahead == 'n') ADVANCE(183); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(186); + if (lookahead == 'n') ADVANCE(247); END_STATE(); case 258: - if (lookahead == 'n') ADVANCE(207); + if (lookahead == 'n') ADVANCE(235); END_STATE(); case 259: - if (lookahead == 'n') ADVANCE(209); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 260: - if (lookahead == 'n') ADVANCE(211); + if (lookahead == 'n') ADVANCE(189); END_STATE(); case 261: - if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'n') ADVANCE(210); END_STATE(); case 262: - if (lookahead == 'o') ADVANCE(228); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 263: - if (lookahead == 'o') ADVANCE(250); - if (lookahead == 'r') ADVANCE(264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (lookahead == 'n') ADVANCE(214); END_STATE(); case 264: - if (lookahead == 'o') ADVANCE(283); + if (lookahead == 'n') ADVANCE(248); END_STATE(); case 265: - if (lookahead == 'o') ADVANCE(300); + if (lookahead == 'o') ADVANCE(231); END_STATE(); case 266: - if (lookahead == 'o') ADVANCE(274); + if (lookahead == 'o') ADVANCE(253); + if (lookahead == 'r') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); case 267: - if (lookahead == 'o') ADVANCE(249); + if (lookahead == 'o') ADVANCE(286); END_STATE(); case 268: - if (lookahead == 'p') ADVANCE(202); - if (lookahead == 'v') ADVANCE(203); + if (lookahead == 'o') ADVANCE(303); END_STATE(); case 269: - if (lookahead == 'p') ADVANCE(204); - if (lookahead == 't') ADVANCE(212); + if (lookahead == 'o') ADVANCE(277); END_STATE(); case 270: - if (lookahead == 'p') ADVANCE(216); + if (lookahead == 'o') ADVANCE(252); END_STATE(); case 271: - if (lookahead == 'r') ADVANCE(222); - if (lookahead == 'u') ADVANCE(190); + if (lookahead == 'p') ADVANCE(205); + if (lookahead == 'v') ADVANCE(206); END_STATE(); case 272: - if (lookahead == 'r') ADVANCE(416); + if (lookahead == 'p') ADVANCE(207); + if (lookahead == 't') ADVANCE(215); END_STATE(); case 273: - if (lookahead == 'r') ADVANCE(221); + if (lookahead == 'p') ADVANCE(219); END_STATE(); case 274: - if (lookahead == 'r') ADVANCE(452); + if (lookahead == 'r') ADVANCE(225); + if (lookahead == 'u') ADVANCE(193); END_STATE(); case 275: - if (lookahead == 'r') ADVANCE(225); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 276: - if (lookahead == 'r') ADVANCE(275); + if (lookahead == 'r') ADVANCE(224); END_STATE(); case 277: - if (lookahead == 'r') ADVANCE(187); + if (lookahead == 'r') ADVANCE(454); END_STATE(); case 278: - if (lookahead == 'r') ADVANCE(213); + if (lookahead == 'r') ADVANCE(228); END_STATE(); case 279: - if (lookahead == 'r') ADVANCE(256); + if (lookahead == 'r') ADVANCE(278); END_STATE(); case 280: - if (lookahead == 'r') ADVANCE(257); + if (lookahead == 'r') ADVANCE(190); END_STATE(); case 281: - if (lookahead == 's') ADVANCE(270); + if (lookahead == 'r') ADVANCE(216); END_STATE(); case 282: - if (lookahead == 's') ADVANCE(292); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + if (lookahead == 'r') ADVANCE(259); END_STATE(); case 283: - if (lookahead == 's') ADVANCE(285); + if (lookahead == 'r') ADVANCE(260); END_STATE(); case 284: - if (lookahead == 's') ADVANCE(288); + if (lookahead == 's') ADVANCE(273); END_STATE(); case 285: - if (lookahead == 's') ADVANCE(235); - END_STATE(); - case 286: - if (lookahead == 't') ADVANCE(302); + if (lookahead == 's') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); + END_STATE(); + case 286: + if (lookahead == 's') ADVANCE(288); END_STATE(); case 287: - if (lookahead == 't') ADVANCE(349); + if (lookahead == 's') ADVANCE(291); END_STATE(); case 288: - if (lookahead == 't') ADVANCE(468); + if (lookahead == 's') ADVANCE(238); END_STATE(); case 289: - if (lookahead == 't') ADVANCE(496); + if (lookahead == 't') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); case 290: - if (lookahead == 't') ADVANCE(472); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 291: - if (lookahead == 't') ADVANCE(428); + if (lookahead == 't') ADVANCE(470); END_STATE(); case 292: - if (lookahead == 't') ADVANCE(277); + if (lookahead == 't') ADVANCE(498); END_STATE(); case 293: - if (lookahead == 't') ADVANCE(175); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + if (lookahead == 't') ADVANCE(474); END_STATE(); case 294: - if (lookahead == 't') ADVANCE(266); + if (lookahead == 't') ADVANCE(430); END_STATE(); case 295: - if (lookahead == 't') ADVANCE(218); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 296: - if (lookahead == 't') ADVANCE(229); + if (lookahead == 't') ADVANCE(178); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); case 297: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 't') ADVANCE(269); END_STATE(); case 298: - if (lookahead == 't') ADVANCE(215); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 299: - if (lookahead == 't') ADVANCE(217); + if (lookahead == 't') ADVANCE(232); END_STATE(); case 300: - if (lookahead == 't') ADVANCE(185); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 301: - if (lookahead == 'u') ADVANCE(877); - if (lookahead == '"' || - lookahead == '$' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(879); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 302: - if (lookahead == 'u') ADVANCE(181); + if (lookahead == 't') ADVANCE(220); END_STATE(); case 303: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 't') ADVANCE(188); END_STATE(); case 304: - if (lookahead == 'v') ADVANCE(188); + ADVANCE_MAP( + 'u', 879, + '"', 881, + '$', 881, + '\'', 881, + '\\', 881, + 'b', 881, + 'n', 881, + 'r', 881, + 't', 881, + ); END_STATE(); case 305: - if (lookahead == 'x') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + if (lookahead == 'u') ADVANCE(184); END_STATE(); case 306: - if (lookahead == 'x') ADVANCE(456); + if (lookahead == 'u') ADVANCE(209); END_STATE(); case 307: - if (lookahead == '|') ADVANCE(368); + if (lookahead == 'v') ADVANCE(191); END_STATE(); case 308: - if (lookahead == '+' || - lookahead == '-') ADVANCE(311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + if (lookahead == 'x') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); case 309: - if (lookahead == '0' || - lookahead == '1') ADVANCE(517); + if (lookahead == 'x') ADVANCE(458); END_STATE(); case 310: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + if (lookahead == '|') ADVANCE(370); END_STATE(); case 311: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); case 312: + if (lookahead == '0' || + lookahead == '1') ADVANCE(519); + END_STATE(); + case 313: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); + END_STATE(); + case 314: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + END_STATE(); + case 315: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); END_STATE(); - case 313: + case 316: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(878); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(880); END_STATE(); - case 314: + case 317: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); - case 315: + case 318: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); END_STATE(); - case 316: + case 319: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '`') ADVANCE(173); + lookahead != '`') ADVANCE(176); END_STATE(); - case 317: - if (eof) ADVANCE(319); - if (lookahead == '!') ADVANCE(397); - if (lookahead == '#') ADVANCE(8); - if (lookahead == '$') ADVANCE(370); - if (lookahead == '%') ADVANCE(392); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(386); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '.') ADVANCE(344); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(339); - if (lookahead == '=') ADVANCE(332); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(360); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == ']') ADVANCE(329); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(726); - if (lookahead == 'b') ADVANCE(833); - if (lookahead == 'c') ADVANCE(818); - if (lookahead == 'd') ADVANCE(712); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 'f') ADVANCE(775); - if (lookahead == 'g') ADVANCE(752); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == 'l') ADVANCE(715); - if (lookahead == 'n') ADVANCE(823); - if (lookahead == 'o') ADVANCE(824); - if (lookahead == 'p') ADVANCE(829); - if (lookahead == 'r') ADVANCE(763); - if (lookahead == 's') ADVANCE(739); - if (lookahead == 't') ADVANCE(710); - if (lookahead == 'v') ADVANCE(707); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '|') ADVANCE(307); - if (lookahead == '}') ADVANCE(334); + case 320: + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 399, + '#', 8, + '$', 372, + '%', 394, + '&', 360, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 335, + '/', 393, + '0', 516, + ':', 330, + ';', 350, + '<', 347, + '=', 340, + '>', 349, + '?', 362, + '@', 328, + '[', 331, + '\\', 304, + ']', 332, + '`', 319, + 'a', 728, + 'b', 835, + 'c', 820, + 'd', 714, + 'e', 874, + 'f', 777, + 'g', 754, + 'i', 799, + 'l', 717, + 'n', 825, + 'o', 826, + 'p', 831, + 'r', 765, + 's', 741, + 't', 712, + 'v', 709, + '{', 341, + '|', 310, + '}', 342, + ); 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); + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); - case 318: - if (eof) ADVANCE(319); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '#') ADVANCE(8); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(518); - if (lookahead == '(') ADVANCE(335); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(385); - if (lookahead == ',') ADVANCE(336); - if (lookahead == '-') ADVANCE(390); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(514); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(348); - if (lookahead == '<') ADVANCE(338); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(359); - if (lookahead == '@') ADVANCE(325); - if (lookahead == '[') ADVANCE(328); - if (lookahead == '`') ADVANCE(316); - if (lookahead == 'a') ADVANCE(553); - if (lookahead == 'b') ADVANCE(664); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'd') ADVANCE(539); - if (lookahead == 'e') ADVANCE(703); - if (lookahead == 'f') ADVANCE(603); - if (lookahead == 'g') ADVANCE(579); - if (lookahead == 'i') ADVANCE(625); - if (lookahead == 'l') ADVANCE(541); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(654); - if (lookahead == 'p') ADVANCE(660); - if (lookahead == 'r') ADVANCE(590); - if (lookahead == 's') ADVANCE(566); - if (lookahead == 't') ADVANCE(537); - if (lookahead == 'v') ADVANCE(534); - if (lookahead == '{') ADVANCE(333); - if (lookahead == '}') ADVANCE(334); + case 321: + if (eof) ADVANCE(322); + ADVANCE_MAP( + '!', 398, + '#', 8, + '%', 37, + '&', 359, + '\'', 520, + '(', 343, + ')', 345, + '*', 364, + '+', 388, + ',', 344, + '-', 391, + '.', 336, + '/', 31, + '0', 516, + ':', 330, + ';', 350, + '<', 346, + '=', 339, + '>', 348, + '?', 361, + '@', 328, + '[', 331, + '`', 319, + 'a', 555, + 'b', 666, + 'c', 649, + 'd', 541, + 'e', 705, + 'f', 605, + 'g', 581, + 'i', 627, + 'l', 543, + 'n', 655, + 'o', 656, + 'p', 662, + 'r', 592, + 's', 568, + 't', 539, + 'v', 536, + '{', 341, + '}', 342, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(318) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == ' ') SKIP(321); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_2(lookahead)) ADVANCE(875); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_1, 431, lookahead)) ADVANCE(877); END_STATE(); - case 319: + case 322: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 320: + case 323: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 321: + case 324: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '\r') ADVANCE(504); + if (lookahead == '\r') ADVANCE(506); if (lookahead != 0 && - lookahead != '\n') ADVANCE(321); + lookahead != '\n') ADVANCE(324); END_STATE(); - case 322: + case 325: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(323); + if (lookahead == '/') ADVANCE(326); if (lookahead == '\t' || - lookahead == 11 || + lookahead == 0x0b || lookahead == '\f' || - lookahead == ' ') ADVANCE(322); + lookahead == ' ') ADVANCE(325); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(324); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(327); END_STATE(); - case 323: + case 326: ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(321); + if (lookahead == '/') ADVANCE(324); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(324); + lookahead != '\r') ADVANCE(327); END_STATE(); - case 324: + case 327: ACCEPT_TOKEN(aux_sym_shebang_line_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(324); - END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 326: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(371); + lookahead != '\r') ADVANCE(327); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_DOT_STAR); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(373); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(367); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym_wildcard_import); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(sym_wildcard_import); + if (lookahead == '=') ADVANCE(376); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(381); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(381); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(382); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(330); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(330); - if (lookahead == '.') ADVANCE(365); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(365); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(365); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(383); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_get); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(384); END_STATE(); case 350: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 351: ACCEPT_TOKEN(anon_sym_get); - if (lookahead == '@') ADVANCE(364); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_get); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 351: + case 353: ACCEPT_TOKEN(anon_sym_get); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 352: + case 354: ACCEPT_TOKEN(anon_sym_get); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 353: + case 355: ACCEPT_TOKEN(anon_sym_set); END_STATE(); - case 354: + case 356: ACCEPT_TOKEN(anon_sym_set); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 355: + case 357: ACCEPT_TOKEN(anon_sym_set); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_set); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_AMP); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(367); + ACCEPT_TOKEN(anon_sym_set); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 359: - ACCEPT_TOKEN(sym__quest); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 360: - ACCEPT_TOKEN(sym__quest); - if (lookahead == ':') ADVANCE(366); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(369); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(sym__quest); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(374); + ACCEPT_TOKEN(sym__quest); + if (lookahead == ':') ADVANCE(368); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 364: - ACCEPT_TOKEN(sym_label); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(376); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_QMARK_COLON); + ACCEPT_TOKEN(sym_label); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(369); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') ADVANCE(371); END_STATE(); case 373: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 376: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 377: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 378: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 379: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '=') ADVANCE(380); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(382); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 383: - ACCEPT_TOKEN(anon_sym_BANGin); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_BANGis); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(394); + ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(394); - if (lookahead == '=') ADVANCE(372); + ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(395); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(396); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(395); - if (lookahead == '=') ADVANCE(373); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(396); + if (lookahead == '=') ADVANCE(374); END_STATE(); case 389: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(395); - if (lookahead == '=') ADVANCE(373); - if (lookahead == '>') ADVANCE(363); + if (lookahead == '-') ADVANCE(397); END_STATE(); case 390: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(395); - if (lookahead == '>') ADVANCE(363); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(504); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(365); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(376); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '>') ADVANCE(365); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym_as_QMARK); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '=') ADVANCE(377); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(378); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_as_QMARK); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 397: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(399); - if (lookahead == '=') ADVANCE(377); - if (lookahead == 'i') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 398: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == 'i') ADVANCE(246); END_STATE(); case 399: - ACCEPT_TOKEN(anon_sym_BANG_BANG); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '!') ADVANCE(401); + if (lookahead == '=') ADVANCE(379); + if (lookahead == 'i') ADVANCE(249); END_STATE(); case 400: - ACCEPT_TOKEN(anon_sym_suspend); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == 'i') ADVANCE(249); END_STATE(); case 401: + ACCEPT_TOKEN(anon_sym_BANG_BANG); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_suspend); + END_STATE(); + case 403: ACCEPT_TOKEN(anon_sym_suspend); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 402: + case 404: ACCEPT_TOKEN(anon_sym_suspend); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 403: + case 405: ACCEPT_TOKEN(anon_sym_suspend); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 404: + case 406: ACCEPT_TOKEN(anon_sym_sealed); END_STATE(); - case 405: + case 407: ACCEPT_TOKEN(anon_sym_sealed); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 406: + case 408: ACCEPT_TOKEN(anon_sym_sealed); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 407: + case 409: ACCEPT_TOKEN(anon_sym_sealed); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 408: + case 410: ACCEPT_TOKEN(anon_sym_annotation); END_STATE(); - case 409: + case 411: ACCEPT_TOKEN(anon_sym_annotation); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 410: + case 412: ACCEPT_TOKEN(anon_sym_annotation); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 411: + case 413: ACCEPT_TOKEN(anon_sym_annotation); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 412: + case 414: ACCEPT_TOKEN(anon_sym_data); END_STATE(); - case 413: + case 415: ACCEPT_TOKEN(anon_sym_data); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 414: + case 416: ACCEPT_TOKEN(anon_sym_data); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 415: + case 417: ACCEPT_TOKEN(anon_sym_data); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 416: + case 418: ACCEPT_TOKEN(anon_sym_inner); END_STATE(); - case 417: + case 419: ACCEPT_TOKEN(anon_sym_inner); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 418: + case 420: ACCEPT_TOKEN(anon_sym_inner); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 419: + case 421: ACCEPT_TOKEN(anon_sym_inner); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 420: + case 422: ACCEPT_TOKEN(anon_sym_value); END_STATE(); - case 421: + case 423: ACCEPT_TOKEN(anon_sym_value); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 422: + case 424: ACCEPT_TOKEN(anon_sym_value); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 423: + case 425: ACCEPT_TOKEN(anon_sym_value); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 424: + case 426: ACCEPT_TOKEN(anon_sym_override); END_STATE(); - case 425: + case 427: ACCEPT_TOKEN(anon_sym_override); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 426: + case 428: ACCEPT_TOKEN(anon_sym_override); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 427: + case 429: ACCEPT_TOKEN(anon_sym_override); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 428: + case 430: ACCEPT_TOKEN(anon_sym_lateinit); END_STATE(); - case 429: + case 431: ACCEPT_TOKEN(anon_sym_lateinit); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 430: + case 432: ACCEPT_TOKEN(anon_sym_lateinit); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 431: + case 433: ACCEPT_TOKEN(anon_sym_lateinit); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 432: + case 434: ACCEPT_TOKEN(anon_sym_public); END_STATE(); - case 433: + case 435: ACCEPT_TOKEN(anon_sym_public); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 434: + case 436: ACCEPT_TOKEN(anon_sym_public); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 435: + case 437: ACCEPT_TOKEN(anon_sym_public); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 436: + case 438: ACCEPT_TOKEN(anon_sym_private); END_STATE(); - case 437: + case 439: ACCEPT_TOKEN(anon_sym_private); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 438: + case 440: ACCEPT_TOKEN(anon_sym_private); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 439: + case 441: ACCEPT_TOKEN(anon_sym_private); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 440: + case 442: ACCEPT_TOKEN(anon_sym_internal); END_STATE(); - case 441: + case 443: ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 442: + case 444: ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 443: + case 445: ACCEPT_TOKEN(anon_sym_internal); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 444: + case 446: ACCEPT_TOKEN(anon_sym_protected); END_STATE(); - case 445: + case 447: ACCEPT_TOKEN(anon_sym_protected); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 446: + case 448: ACCEPT_TOKEN(anon_sym_protected); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 447: + case 449: ACCEPT_TOKEN(anon_sym_protected); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 448: + case 450: ACCEPT_TOKEN(anon_sym_tailrec); END_STATE(); - case 449: + case 451: ACCEPT_TOKEN(anon_sym_tailrec); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 450: + case 452: ACCEPT_TOKEN(anon_sym_tailrec); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 451: + case 453: ACCEPT_TOKEN(anon_sym_tailrec); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 452: + case 454: ACCEPT_TOKEN(anon_sym_operator); END_STATE(); - case 453: + case 455: ACCEPT_TOKEN(anon_sym_operator); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 454: + case 456: ACCEPT_TOKEN(anon_sym_operator); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 455: + case 457: ACCEPT_TOKEN(anon_sym_operator); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 456: + case 458: ACCEPT_TOKEN(anon_sym_infix); END_STATE(); - case 457: + case 459: ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 458: + case 460: ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 459: + case 461: ACCEPT_TOKEN(anon_sym_infix); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 460: + case 462: ACCEPT_TOKEN(anon_sym_inline); END_STATE(); - case 461: + case 463: ACCEPT_TOKEN(anon_sym_inline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 462: + case 464: ACCEPT_TOKEN(anon_sym_inline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 463: + case 465: ACCEPT_TOKEN(anon_sym_inline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 464: + case 466: ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 465: + case 467: ACCEPT_TOKEN(anon_sym_external); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 466: + case 468: ACCEPT_TOKEN(anon_sym_external); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 467: + case 469: ACCEPT_TOKEN(anon_sym_external); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 468: + case 470: ACCEPT_TOKEN(sym_property_modifier); END_STATE(); - case 469: + case 471: ACCEPT_TOKEN(sym_property_modifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 470: + case 472: ACCEPT_TOKEN(sym_property_modifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 471: + case 473: ACCEPT_TOKEN(sym_property_modifier); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 472: + case 474: ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); - case 473: + case 475: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 474: + case 476: ACCEPT_TOKEN(anon_sym_abstract); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 475: + case 477: ACCEPT_TOKEN(anon_sym_abstract); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 476: + case 478: ACCEPT_TOKEN(anon_sym_final); END_STATE(); - case 477: + case 479: ACCEPT_TOKEN(anon_sym_final); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 478: + case 480: ACCEPT_TOKEN(anon_sym_final); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 479: + case 481: ACCEPT_TOKEN(anon_sym_final); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 480: + case 482: ACCEPT_TOKEN(anon_sym_open); END_STATE(); - case 481: + case 483: ACCEPT_TOKEN(anon_sym_open); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 482: + case 484: ACCEPT_TOKEN(anon_sym_open); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 483: + case 485: ACCEPT_TOKEN(anon_sym_open); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 484: + case 486: ACCEPT_TOKEN(anon_sym_vararg); END_STATE(); - case 485: + case 487: ACCEPT_TOKEN(anon_sym_vararg); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 486: + case 488: ACCEPT_TOKEN(anon_sym_vararg); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 487: + case 489: ACCEPT_TOKEN(anon_sym_vararg); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 488: + case 490: ACCEPT_TOKEN(anon_sym_noinline); END_STATE(); - case 489: + case 491: ACCEPT_TOKEN(anon_sym_noinline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 490: + case 492: ACCEPT_TOKEN(anon_sym_noinline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 491: + case 493: ACCEPT_TOKEN(anon_sym_noinline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 492: + case 494: ACCEPT_TOKEN(anon_sym_crossinline); END_STATE(); - case 493: + case 495: ACCEPT_TOKEN(anon_sym_crossinline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 494: + case 496: ACCEPT_TOKEN(anon_sym_crossinline); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 495: + case 497: ACCEPT_TOKEN(anon_sym_crossinline); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 496: + case 498: ACCEPT_TOKEN(anon_sym_expect); END_STATE(); - case 497: + case 499: ACCEPT_TOKEN(anon_sym_expect); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 498: + case 500: ACCEPT_TOKEN(anon_sym_expect); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 499: + case 501: ACCEPT_TOKEN(anon_sym_expect); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 500: + case 502: ACCEPT_TOKEN(anon_sym_actual); END_STATE(); - case 501: + case 503: ACCEPT_TOKEN(anon_sym_actual); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 502: + case 504: ACCEPT_TOKEN(anon_sym_actual); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(170); END_STATE(); - case 503: + case 505: ACCEPT_TOKEN(anon_sym_actual); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); - case 504: + case 506: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(504); + lookahead != '\n') ADVANCE(506); END_STATE(); - case 505: + case 507: ACCEPT_TOKEN(anon_sym_return_AT); END_STATE(); - case 506: + case 508: ACCEPT_TOKEN(anon_sym_continue_AT); END_STATE(); - case 507: + case 509: ACCEPT_TOKEN(anon_sym_break_AT); END_STATE(); - case 508: + case 510: ACCEPT_TOKEN(anon_sym_this_AT); END_STATE(); - case 509: + case 511: ACCEPT_TOKEN(anon_sym_super_AT); END_STATE(); - case 510: + case 512: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 511: + case 513: ACCEPT_TOKEN(sym_real_literal); END_STATE(); - case 512: + case 514: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(171); + if (lookahead == '_') ADVANCE(174); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(308); + lookahead == 'e') ADVANCE(311); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(514); END_STATE(); - case 513: + case 515: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(172); + if (lookahead == '_') ADVANCE(175); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(513); + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); END_STATE(); - case 514: + case 516: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '_') ADVANCE(168); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(309); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(308); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(511); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(312); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + ADVANCE_MAP( + '.', 313, + '_', 171, + 'B', 312, + 'b', 312, + 'E', 311, + 'e', 311, + 'F', 513, + 'f', 513, + 'X', 315, + 'x', 315, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); END_STATE(); - case 515: + case 517: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '_') ADVANCE(168); + if (lookahead == '.') ADVANCE(313); + if (lookahead == '_') ADVANCE(171); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(308); + lookahead == 'e') ADVANCE(311); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(515); + lookahead == 'f') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); END_STATE(); - case 516: + case 518: ACCEPT_TOKEN(sym_hex_literal); - if (lookahead == '_') ADVANCE(170); + if (lookahead == '_') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); END_STATE(); - case 517: + case 519: ACCEPT_TOKEN(sym_bin_literal); - if (lookahead == '_') ADVANCE(169); + if (lookahead == '_') ADVANCE(172); END_STATE(); - case 518: + case 520: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 519: + case 521: ACCEPT_TOKEN(aux_sym_character_literal_token1); END_STATE(); - case 520: + case 522: ACCEPT_TOKEN(aux_sym_character_literal_token1); - if (lookahead == '/') ADVANCE(504); + if (lookahead == '/') ADVANCE(506); END_STATE(); - case 521: + case 523: ACCEPT_TOKEN(aux_sym_character_literal_token1); - if (lookahead == '/') ADVANCE(520); + if (lookahead == '/') ADVANCE(522); if (lookahead == '\t' || - lookahead == 11 || + lookahead == 0x0b || lookahead == '\f' || - lookahead == ' ') ADVANCE(521); + lookahead == ' ') ADVANCE(523); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(519); - END_STATE(); - case 522: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '?') ADVANCE(393); - if (lookahead == '@') ADVANCE(364); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); - END_STATE(); - case 523: - ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '?') ADVANCE(393); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + lookahead != '\\') ADVANCE(521); END_STATE(); case 524: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(508); + if (lookahead == '?') ADVANCE(395); + if (lookahead == '@') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 525: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(508); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == '?') ADVANCE(395); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 526: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(507); + if (lookahead == '@') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 527: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(507); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(510); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 528: ACCEPT_TOKEN(sym__alpha_identifier); @@ -20167,2674 +16789,2688 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 529: ACCEPT_TOKEN(sym__alpha_identifier); if (lookahead == '@') ADVANCE(509); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 530: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(505); + if (lookahead == '@') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 531: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(505); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(511); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 532: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(506); + if (lookahead == '@') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 533: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(506); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(507); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 534: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(618); + if (lookahead == '@') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 535: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(613); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(508); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 536: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(413); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 537: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(602); - if (lookahead == 'h') ADVANCE(601); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 538: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(602); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 539: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(689); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(604); + if (lookahead == 'h') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 540: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(621); - if (lookahead == 't') ADVANCE(354); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 541: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(692); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 542: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(614); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(623); + if (lookahead == 't') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 543: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(615); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 544: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (lookahead == 'a') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 545: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(662); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 546: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(617); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 547: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(690); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 548: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (lookahead == 'a') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 549: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(691); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 550: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'a') ADVANCE(560); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 551: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (lookahead == 'a') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 552: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'b') ADVANCE(676); - if (lookahead == 'c') ADVANCE(680); - if (lookahead == 'n') ADVANCE(629); - if (lookahead == 's') ADVANCE(522); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 553: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'b') ADVANCE(676); - if (lookahead == 'c') ADVANCE(680); - if (lookahead == 'n') ADVANCE(629); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'a') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 554: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'b') ADVANCE(620); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(678); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'n') ADVANCE(631); + if (lookahead == 's') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 555: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(680); - if (lookahead == 's') ADVANCE(522); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(678); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'n') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 556: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(680); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'b') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 557: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(433); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 's') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 558: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(449); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 559: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(684); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 560: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(685); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 561: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'c') ADVANCE(694); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 562: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(405); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(687); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 563: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(401); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'c') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 564: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(445); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 565: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'd') ADVANCE(575); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 566: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(540); - if (lookahead == 'u') ADVANCE(657); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 567: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(540); - if (lookahead == 'u') ADVANCE(673); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'd') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 568: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(627); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'u') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 569: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(559); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'u') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 570: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(562); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 571: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(421); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 572: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(461); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 573: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(437); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 574: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(489); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 575: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(425); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 576: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(493); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 577: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(666); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 578: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(535); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 579: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(681); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(668); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 580: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(558); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 581: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(671); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 582: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(564); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 583: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(661); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 584: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(532); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 585: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(665); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 586: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(630); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 587: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(682); - if (lookahead == 'u') ADVANCE(657); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 588: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(682); - if (lookahead == 'u') ADVANCE(658); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 589: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(682); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'u') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 590: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(687); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'u') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 591: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(561); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 592: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(608); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 593: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'e') ADVANCE(672); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 594: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'f') ADVANCE(598); - if (lookahead == 'l') ADVANCE(606); - if (lookahead == 'n') ADVANCE(583); - if (lookahead == 't') ADVANCE(593); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(610); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 595: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'g') ADVANCE(485); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'e') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 596: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'h') ADVANCE(601); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'f') ADVANCE(600); + if (lookahead == 'l') ADVANCE(608); + if (lookahead == 'n') ADVANCE(585); + if (lookahead == 't') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 597: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(702); - if (lookahead == 'o') ADVANCE(695); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'g') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 598: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(704); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'h') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 599: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(557); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(704); + if (lookahead == 'o') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 600: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(565); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 601: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(674); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 602: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(622); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 603: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(631); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 604: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(633); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 605: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(650); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 606: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(638); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 607: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(643); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(652); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 608: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(634); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 609: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(686); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 610: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(640); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 611: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(641); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 612: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'i') ADVANCE(645); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 613: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'k') ADVANCE(526); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 614: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(477); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'i') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 615: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(501); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'k') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 616: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(465); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 617: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(441); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 618: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(699); - if (lookahead == 'r') ADVANCE(545); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 619: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(699); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 620: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(599); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(701); + if (lookahead == 'r') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 621: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(570); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(701); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 622: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(670); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 623: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(610); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 624: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'l') ADVANCE(611); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 625: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(594); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 626: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(677); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'l') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 627: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(481); - if (lookahead == 'r') ADVANCE(547); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 628: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(409); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 629: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(648); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(483); + if (lookahead == 'r') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 630: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(563); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 631: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(542); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 632: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(530); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 633: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(623); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 634: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(609); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 635: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(583); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 636: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(544); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(611); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 637: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(546); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 638: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(572); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 639: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(696); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 640: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); if (lookahead == 'n') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 641: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(576); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 642: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(678); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 643: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(700); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 644: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(635); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 645: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'n') ADVANCE(624); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 646: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(675); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 647: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(626); - if (lookahead == 'r') ADVANCE(646); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'n') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 648: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(697); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 649: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(663); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(628); + if (lookahead == 'r') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 650: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(628); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 651: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(639); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 652: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(642); - if (lookahead == 'r') ADVANCE(646); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 653: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'o') ADVANCE(604); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 654: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(568); - if (lookahead == 'v') ADVANCE(577); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(644); + if (lookahead == 'r') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 655: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(569); - if (lookahead == 't') ADVANCE(581); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'o') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 656: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(569); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(570); + if (lookahead == 'v') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 657: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(585); - if (lookahead == 's') ADVANCE(659); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(571); + if (lookahead == 't') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 658: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(585); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 659: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'p') ADVANCE(586); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(587); + if (lookahead == 's') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 660: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(597); - if (lookahead == 'u') ADVANCE(554); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 661: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(417); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'p') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 662: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(599); + if (lookahead == 'u') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 663: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 664: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(578); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 665: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(528); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 666: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(667); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 667: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(600); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 668: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(550); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 669: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(632); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 670: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(580); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 671: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(636); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 672: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'r') ADVANCE(637); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 673: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(659); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 674: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(524); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'r') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 675: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(679); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 676: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(688); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 677: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(683); - if (lookahead == 't') ADVANCE(607); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 678: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(683); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 679: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 's') ADVANCE(612); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(685); + if (lookahead == 't') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 680: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(698); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 681: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(350); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 's') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 682: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(354); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 683: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(469); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 684: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(497); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 685: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(473); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 686: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(429); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 687: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(701); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 688: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(668); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 689: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(536); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 690: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(649); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 691: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(605); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 692: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(592); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 693: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(573); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 694: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(582); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 695: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(591); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 696: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(607); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 697: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 't') ADVANCE(549); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 698: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(543); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 699: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(571); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 't') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 700: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(584); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 701: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'u') ADVANCE(669); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 702: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'v') ADVANCE(551); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 703: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'x') ADVANCE(655); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'u') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 704: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'x') ADVANCE(457); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'v') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 705: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); - if (lookahead == 'x') ADVANCE(656); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 706: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == '@') ADVANCE(364); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (sym__alpha_identifier_character_set_5(lookahead)) ADVANCE(875); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 707: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(790); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(366); + if (lookahead == 'x') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 708: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(785); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == '@') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(708); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 709: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(415); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(792); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 710: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(774); - if (lookahead == 'h') ADVANCE(773); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(787); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 711: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(774); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(417); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 712: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(859); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(776); + if (lookahead == 'h') ADVANCE(775); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 713: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(793); - if (lookahead == 't') ADVANCE(356); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(776); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 714: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(793); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(861); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 715: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(862); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(795); + if (lookahead == 't') ADVANCE(358); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 716: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(786); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(795); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 717: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(787); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(864); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 718: ACCEPT_TOKEN(sym__alpha_identifier); if (lookahead == 'a') ADVANCE(788); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 719: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(831); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(789); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 720: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(789); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(790); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 721: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(860); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(833); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 722: ACCEPT_TOKEN(sym__alpha_identifier); if (lookahead == 'a') ADVANCE(791); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 723: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(861); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(862); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 724: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'a') ADVANCE(733); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(793); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 725: ACCEPT_TOKEN(sym__alpha_identifier); if (lookahead == 'a') ADVANCE(863); - if (sym__alpha_identifier_character_set_7(lookahead)) ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 726: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(846); - if (lookahead == 'c') ADVANCE(850); - if (lookahead == 'n') ADVANCE(801); - if (lookahead == 's') ADVANCE(523); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(735); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 727: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(846); - if (lookahead == 'c') ADVANCE(850); - if (lookahead == 'n') ADVANCE(801); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'a') ADVANCE(865); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 728: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'b') ADVANCE(792); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'b') ADVANCE(848); + if (lookahead == 'c') ADVANCE(852); + if (lookahead == 'n') ADVANCE(803); + if (lookahead == 's') ADVANCE(525); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 729: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(850); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'b') ADVANCE(848); + if (lookahead == 'c') ADVANCE(852); + if (lookahead == 'n') ADVANCE(803); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 730: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(435); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'b') ADVANCE(794); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 731: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(451); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(852); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 732: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(854); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(437); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 733: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(855); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(453); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 734: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'c') ADVANCE(864); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(856); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 735: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(407); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(857); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 736: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(403); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'c') ADVANCE(866); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 737: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(447); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'd') ADVANCE(409); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 738: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'd') ADVANCE(748); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'd') ADVANCE(405); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 739: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(713); - if (lookahead == 'u') ADVANCE(827); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'd') ADVANCE(449); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 740: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(713); - if (lookahead == 'u') ADVANCE(843); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'd') ADVANCE(750); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 741: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(799); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(715); + if (lookahead == 'u') ADVANCE(829); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 742: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(732); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(715); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 743: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(735); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(801); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 744: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(423); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(734); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 745: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(463); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(737); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 746: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(439); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(425); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 747: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(491); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(465); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 748: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(427); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(441); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 749: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(495); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(493); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 750: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(836); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(429); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 751: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(708); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(497); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 752: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(851); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(838); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 753: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(731); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(710); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 754: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(841); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(853); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 755: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(737); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(733); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 756: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(830); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(843); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 757: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(533); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(739); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 758: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(835); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(832); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 759: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(802); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(535); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 760: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(714); - if (lookahead == 'u') ADVANCE(843); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(837); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 761: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(852); - if (lookahead == 'u') ADVANCE(843); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(804); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 762: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(852); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(716); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 763: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(857); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(854); + if (lookahead == 'u') ADVANCE(845); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 764: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(734); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(854); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 765: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(780); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(859); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 766: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'e') ADVANCE(842); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(736); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 767: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'f') ADVANCE(770); - if (lookahead == 'l') ADVANCE(778); - if (lookahead == 'n') ADVANCE(756); - if (lookahead == 't') ADVANCE(766); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(782); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 768: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'g') ADVANCE(487); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'e') ADVANCE(844); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 769: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(871); - if (lookahead == 'o') ADVANCE(865); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'f') ADVANCE(772); + if (lookahead == 'l') ADVANCE(780); + if (lookahead == 'n') ADVANCE(758); + if (lookahead == 't') ADVANCE(768); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 770: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(873); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'g') ADVANCE(489); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 771: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(730); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(873); + if (lookahead == 'o') ADVANCE(867); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 772: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(738); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(875); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 773: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(844); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(732); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 774: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(794); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(740); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 775: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(804); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(846); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 776: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(805); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(796); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 777: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(821); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(806); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 778: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(810); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(807); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 779: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(814); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(823); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 780: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(806); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(812); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 781: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(856); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(816); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 782: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(811); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(808); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 783: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(812); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(858); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 784: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'i') ADVANCE(816); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(813); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 785: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'k') ADVANCE(527); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(814); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 786: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(479); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'i') ADVANCE(818); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 787: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(503); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'k') ADVANCE(529); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 788: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(467); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(481); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 789: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(443); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(505); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 790: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(868); - if (lookahead == 'r') ADVANCE(719); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(469); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 791: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(868); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(445); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 792: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(771); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(870); + if (lookahead == 'r') ADVANCE(721); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 793: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(743); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(870); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 794: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(840); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(773); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 795: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(782); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(745); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 796: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'l') ADVANCE(783); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(842); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 797: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(767); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(784); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 798: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(847); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'l') ADVANCE(785); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 799: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(483); - if (lookahead == 'r') ADVANCE(721); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(769); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 800: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(411); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(849); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 801: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(819); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(485); + if (lookahead == 'r') ADVANCE(723); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 802: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(736); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(413); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 803: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(531); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(821); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 804: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(716); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(738); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 805: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(795); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(533); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 806: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(781); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(718); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 807: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(756); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(797); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 808: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(718); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(783); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 809: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(720); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(758); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 810: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(745); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(720); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 811: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(747); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(722); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 812: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(749); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(747); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 813: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(848); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(749); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 814: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(869); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(751); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 815: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(807); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(850); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 816: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'n') ADVANCE(796); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(871); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 817: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(845); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(809); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 818: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(798); - if (lookahead == 'r') ADVANCE(817); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'n') ADVANCE(798); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 819: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(866); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(847); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 820: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(832); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(800); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 821: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(800); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(868); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 822: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(813); - if (lookahead == 'r') ADVANCE(817); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(834); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 823: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'o') ADVANCE(776); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(802); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 824: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(741); - if (lookahead == 'v') ADVANCE(750); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(815); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 825: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(742); - if (lookahead == 't') ADVANCE(754); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'o') ADVANCE(778); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 826: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(742); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'p') ADVANCE(743); + if (lookahead == 'v') ADVANCE(752); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 827: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(758); - if (lookahead == 's') ADVANCE(828); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'p') ADVANCE(744); + if (lookahead == 't') ADVANCE(756); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 828: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'p') ADVANCE(759); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'p') ADVANCE(744); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 829: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(769); - if (lookahead == 'u') ADVANCE(728); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'p') ADVANCE(760); + if (lookahead == 's') ADVANCE(830); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 830: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(419); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'p') ADVANCE(761); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 831: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(768); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(771); + if (lookahead == 'u') ADVANCE(730); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 832: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(455); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(421); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 833: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(751); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(770); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 834: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(817); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(457); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 835: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(529); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(753); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 836: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(837); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(819); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 837: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(772); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(531); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 838: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(724); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(839); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 839: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(803); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(774); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 840: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(753); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(726); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 841: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(808); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(805); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 842: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'r') ADVANCE(809); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(755); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 843: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(828); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(810); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 844: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(525); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'r') ADVANCE(811); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 845: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(849); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(830); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 846: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(858); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(527); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 847: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(853); - if (lookahead == 't') ADVANCE(779); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(851); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 848: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(853); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(860); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 849: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 's') ADVANCE(784); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(855); + if (lookahead == 't') ADVANCE(781); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 850: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(867); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(855); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 851: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(352); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 's') ADVANCE(786); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 852: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(356); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(869); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 853: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(471); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(354); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 854: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(499); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(358); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 855: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(475); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(473); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 856: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(431); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(501); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 857: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(870); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(477); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 858: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(838); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(433); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 859: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(709); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(872); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 860: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(820); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(840); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 861: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(777); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(711); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 862: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(765); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(822); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 863: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(746); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(779); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 864: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(755); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(767); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 865: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(764); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(748); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 866: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 't') ADVANCE(723); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(757); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 867: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(717); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(766); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 868: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(744); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 't') ADVANCE(725); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 869: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(757); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'u') ADVANCE(719); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 870: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'u') ADVANCE(839); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'u') ADVANCE(746); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 871: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'v') ADVANCE(725); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'u') ADVANCE(759); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 872: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(825); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'u') ADVANCE(841); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 873: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(459); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'v') ADVANCE(727); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 874: ACCEPT_TOKEN(sym__alpha_identifier); - if (lookahead == 'x') ADVANCE(826); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'x') ADVANCE(827); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 875: ACCEPT_TOKEN(sym__alpha_identifier); - if (sym__alpha_identifier_character_set_6(lookahead)) ADVANCE(875); + if (lookahead == 'x') ADVANCE(461); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 876: - ACCEPT_TOKEN(sym__backtick_identifier); + ACCEPT_TOKEN(sym__alpha_identifier); + if (lookahead == 'x') ADVANCE(828); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 877: - ACCEPT_TOKEN(anon_sym_BSLASHu); + ACCEPT_TOKEN(sym__alpha_identifier); + if (set_contains(sym__alpha_identifier_character_set_2, 453, lookahead)) ADVANCE(877); END_STATE(); case 878: - ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + ACCEPT_TOKEN(sym__backtick_identifier); END_STATE(); case 879: + ACCEPT_TOKEN(anon_sym_BSLASHu); + END_STATE(); + case 880: + ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + END_STATE(); + case 881: ACCEPT_TOKEN(sym__escaped_identifier); END_STATE(); default: @@ -22847,26 +19483,28 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'L') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'n') ADVANCE(9); - if (lookahead == 'o') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'v') ADVANCE(15); - if (lookahead == 'w') ADVANCE(16); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(17); + ADVANCE_MAP( + 'L', 1, + 'a', 2, + 'b', 3, + 'c', 4, + 'd', 5, + 'e', 6, + 'f', 7, + 'i', 8, + 'n', 9, + 'o', 10, + 'p', 11, + 'r', 12, + 's', 13, + 't', 14, + 'v', 15, + 'w', 16, + 'U', 17, + 'u', 17, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(0); END_STATE(); case 1: ACCEPT_TOKEN(anon_sym_L); @@ -23479,7 +20117,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 318, .external_lex_state = 2}, + [1] = {.lex_state = 321, .external_lex_state = 2}, [2] = {.lex_state = 1, .external_lex_state = 3}, [3] = {.lex_state = 1, .external_lex_state = 3}, [4] = {.lex_state = 1, .external_lex_state = 3}, @@ -23496,16 +20134,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [15] = {.lex_state = 1, .external_lex_state = 4}, [16] = {.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 = 4}, + [18] = {.lex_state = 1, .external_lex_state = 4}, + [19] = {.lex_state = 1, .external_lex_state = 3}, [20] = {.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}, + [22] = {.lex_state = 1, .external_lex_state = 4}, + [23] = {.lex_state = 1, .external_lex_state = 4}, [24] = {.lex_state = 1, .external_lex_state = 4}, - [25] = {.lex_state = 1, .external_lex_state = 4}, + [25] = {.lex_state = 1, .external_lex_state = 3}, [26] = {.lex_state = 1, .external_lex_state = 4}, - [27] = {.lex_state = 1, .external_lex_state = 4}, + [27] = {.lex_state = 1, .external_lex_state = 3}, [28] = {.lex_state = 1, .external_lex_state = 3}, [29] = {.lex_state = 1, .external_lex_state = 3}, [30] = {.lex_state = 1, .external_lex_state = 3}, @@ -23522,222 +20160,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [45] = {.lex_state = 1, .external_lex_state = 3}, + [44] = {.lex_state = 1, .external_lex_state = 4}, + [45] = {.lex_state = 1, .external_lex_state = 4}, [46] = {.lex_state = 1, .external_lex_state = 3}, [47] = {.lex_state = 1, .external_lex_state = 3}, - [48] = {.lex_state = 1, .external_lex_state = 4}, + [48] = {.lex_state = 1, .external_lex_state = 3}, [49] = {.lex_state = 1, .external_lex_state = 4}, [50] = {.lex_state = 1, .external_lex_state = 4}, - [51] = {.lex_state = 1, .external_lex_state = 4}, - [52] = {.lex_state = 318, .external_lex_state = 2}, - [53] = {.lex_state = 318, .external_lex_state = 2}, - [54] = {.lex_state = 318, .external_lex_state = 2}, + [51] = {.lex_state = 1, .external_lex_state = 3}, + [52] = {.lex_state = 321, .external_lex_state = 2}, + [53] = {.lex_state = 321, .external_lex_state = 2}, + [54] = {.lex_state = 321, .external_lex_state = 2}, [55] = {.lex_state = 11, .external_lex_state = 5}, [56] = {.lex_state = 11, .external_lex_state = 5}, [57] = {.lex_state = 11, .external_lex_state = 5}, - [58] = {.lex_state = 318, .external_lex_state = 2}, - [59] = {.lex_state = 318, .external_lex_state = 2}, - [60] = {.lex_state = 318, .external_lex_state = 2}, - [61] = {.lex_state = 318, .external_lex_state = 2}, - [62] = {.lex_state = 318, .external_lex_state = 2}, - [63] = {.lex_state = 318, .external_lex_state = 2}, - [64] = {.lex_state = 318, .external_lex_state = 2}, - [65] = {.lex_state = 318, .external_lex_state = 2}, - [66] = {.lex_state = 318, .external_lex_state = 2}, - [67] = {.lex_state = 318, .external_lex_state = 2}, - [68] = {.lex_state = 318, .external_lex_state = 2}, - [69] = {.lex_state = 318, .external_lex_state = 2}, - [70] = {.lex_state = 318, .external_lex_state = 2}, - [71] = {.lex_state = 318, .external_lex_state = 2}, - [72] = {.lex_state = 318, .external_lex_state = 2}, - [73] = {.lex_state = 318, .external_lex_state = 2}, - [74] = {.lex_state = 318, .external_lex_state = 2}, - [75] = {.lex_state = 318, .external_lex_state = 2}, - [76] = {.lex_state = 318, .external_lex_state = 2}, - [77] = {.lex_state = 318, .external_lex_state = 2}, - [78] = {.lex_state = 318, .external_lex_state = 2}, - [79] = {.lex_state = 318, .external_lex_state = 2}, - [80] = {.lex_state = 318, .external_lex_state = 2}, - [81] = {.lex_state = 318, .external_lex_state = 2}, - [82] = {.lex_state = 318, .external_lex_state = 2}, - [83] = {.lex_state = 318, .external_lex_state = 2}, - [84] = {.lex_state = 318, .external_lex_state = 2}, - [85] = {.lex_state = 318, .external_lex_state = 2}, - [86] = {.lex_state = 318, .external_lex_state = 5}, - [87] = {.lex_state = 318, .external_lex_state = 2}, - [88] = {.lex_state = 318, .external_lex_state = 2}, - [89] = {.lex_state = 318, .external_lex_state = 2}, - [90] = {.lex_state = 318, .external_lex_state = 2}, - [91] = {.lex_state = 318, .external_lex_state = 2}, - [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 = 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}, - [99] = {.lex_state = 318, .external_lex_state = 2}, - [100] = {.lex_state = 318, .external_lex_state = 2}, - [101] = {.lex_state = 318, .external_lex_state = 2}, - [102] = {.lex_state = 318, .external_lex_state = 2}, - [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 = 5}, - [107] = {.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}, - [113] = {.lex_state = 318, .external_lex_state = 2}, - [114] = {.lex_state = 318, .external_lex_state = 2}, - [115] = {.lex_state = 318, .external_lex_state = 2}, - [116] = {.lex_state = 318, .external_lex_state = 2}, - [117] = {.lex_state = 318, .external_lex_state = 2}, - [118] = {.lex_state = 318, .external_lex_state = 2}, - [119] = {.lex_state = 318, .external_lex_state = 2}, - [120] = {.lex_state = 318, .external_lex_state = 2}, - [121] = {.lex_state = 318, .external_lex_state = 2}, - [122] = {.lex_state = 318, .external_lex_state = 2}, - [123] = {.lex_state = 318, .external_lex_state = 2}, - [124] = {.lex_state = 318, .external_lex_state = 2}, - [125] = {.lex_state = 318, .external_lex_state = 2}, - [126] = {.lex_state = 318, .external_lex_state = 2}, - [127] = {.lex_state = 318, .external_lex_state = 2}, - [128] = {.lex_state = 318, .external_lex_state = 2}, - [129] = {.lex_state = 318, .external_lex_state = 2}, - [130] = {.lex_state = 318, .external_lex_state = 2}, - [131] = {.lex_state = 318, .external_lex_state = 2}, - [132] = {.lex_state = 318, .external_lex_state = 2}, - [133] = {.lex_state = 318, .external_lex_state = 2}, - [134] = {.lex_state = 318, .external_lex_state = 2}, - [135] = {.lex_state = 318, .external_lex_state = 2}, - [136] = {.lex_state = 318, .external_lex_state = 2}, - [137] = {.lex_state = 318, .external_lex_state = 2}, - [138] = {.lex_state = 318, .external_lex_state = 2}, - [139] = {.lex_state = 318, .external_lex_state = 2}, - [140] = {.lex_state = 318, .external_lex_state = 2}, - [141] = {.lex_state = 318, .external_lex_state = 2}, - [142] = {.lex_state = 318, .external_lex_state = 2}, - [143] = {.lex_state = 318, .external_lex_state = 2}, - [144] = {.lex_state = 318, .external_lex_state = 2}, - [145] = {.lex_state = 318, .external_lex_state = 2}, - [146] = {.lex_state = 318, .external_lex_state = 2}, - [147] = {.lex_state = 318, .external_lex_state = 2}, - [148] = {.lex_state = 318, .external_lex_state = 2}, - [149] = {.lex_state = 318, .external_lex_state = 2}, - [150] = {.lex_state = 318, .external_lex_state = 2}, - [151] = {.lex_state = 318, .external_lex_state = 2}, - [152] = {.lex_state = 318, .external_lex_state = 2}, - [153] = {.lex_state = 318, .external_lex_state = 2}, - [154] = {.lex_state = 318, .external_lex_state = 2}, - [155] = {.lex_state = 318, .external_lex_state = 2}, - [156] = {.lex_state = 318, .external_lex_state = 2}, - [157] = {.lex_state = 318, .external_lex_state = 2}, - [158] = {.lex_state = 318, .external_lex_state = 2}, - [159] = {.lex_state = 318, .external_lex_state = 2}, - [160] = {.lex_state = 318, .external_lex_state = 2}, - [161] = {.lex_state = 318, .external_lex_state = 2}, - [162] = {.lex_state = 318, .external_lex_state = 2}, - [163] = {.lex_state = 318, .external_lex_state = 2}, - [164] = {.lex_state = 318, .external_lex_state = 2}, - [165] = {.lex_state = 318, .external_lex_state = 2}, - [166] = {.lex_state = 318, .external_lex_state = 2}, - [167] = {.lex_state = 318, .external_lex_state = 2}, - [168] = {.lex_state = 318, .external_lex_state = 2}, - [169] = {.lex_state = 318, .external_lex_state = 2}, - [170] = {.lex_state = 318, .external_lex_state = 2}, - [171] = {.lex_state = 318, .external_lex_state = 2}, - [172] = {.lex_state = 318, .external_lex_state = 2}, - [173] = {.lex_state = 318, .external_lex_state = 2}, - [174] = {.lex_state = 318, .external_lex_state = 2}, - [175] = {.lex_state = 318, .external_lex_state = 2}, - [176] = {.lex_state = 318, .external_lex_state = 2}, - [177] = {.lex_state = 318, .external_lex_state = 2}, - [178] = {.lex_state = 318, .external_lex_state = 2}, - [179] = {.lex_state = 318, .external_lex_state = 2}, - [180] = {.lex_state = 318, .external_lex_state = 2}, - [181] = {.lex_state = 318, .external_lex_state = 2}, - [182] = {.lex_state = 318, .external_lex_state = 2}, - [183] = {.lex_state = 318, .external_lex_state = 2}, - [184] = {.lex_state = 318, .external_lex_state = 2}, - [185] = {.lex_state = 318, .external_lex_state = 2}, - [186] = {.lex_state = 318, .external_lex_state = 2}, - [187] = {.lex_state = 318, .external_lex_state = 2}, - [188] = {.lex_state = 318, .external_lex_state = 2}, - [189] = {.lex_state = 318, .external_lex_state = 2}, - [190] = {.lex_state = 318, .external_lex_state = 2}, - [191] = {.lex_state = 318, .external_lex_state = 2}, - [192] = {.lex_state = 318, .external_lex_state = 2}, - [193] = {.lex_state = 318, .external_lex_state = 2}, - [194] = {.lex_state = 318, .external_lex_state = 2}, - [195] = {.lex_state = 318, .external_lex_state = 2}, - [196] = {.lex_state = 318, .external_lex_state = 2}, - [197] = {.lex_state = 318, .external_lex_state = 2}, - [198] = {.lex_state = 318, .external_lex_state = 2}, - [199] = {.lex_state = 318, .external_lex_state = 2}, - [200] = {.lex_state = 318, .external_lex_state = 2}, - [201] = {.lex_state = 318, .external_lex_state = 2}, - [202] = {.lex_state = 318, .external_lex_state = 2}, - [203] = {.lex_state = 318, .external_lex_state = 2}, - [204] = {.lex_state = 318, .external_lex_state = 2}, - [205] = {.lex_state = 318, .external_lex_state = 2}, - [206] = {.lex_state = 318, .external_lex_state = 2}, - [207] = {.lex_state = 318, .external_lex_state = 2}, - [208] = {.lex_state = 318, .external_lex_state = 2}, - [209] = {.lex_state = 318, .external_lex_state = 2}, - [210] = {.lex_state = 318, .external_lex_state = 2}, - [211] = {.lex_state = 318, .external_lex_state = 2}, - [212] = {.lex_state = 318, .external_lex_state = 2}, - [213] = {.lex_state = 318, .external_lex_state = 2}, - [214] = {.lex_state = 318, .external_lex_state = 2}, - [215] = {.lex_state = 318, .external_lex_state = 2}, - [216] = {.lex_state = 318, .external_lex_state = 2}, - [217] = {.lex_state = 318, .external_lex_state = 2}, - [218] = {.lex_state = 318, .external_lex_state = 2}, - [219] = {.lex_state = 318, .external_lex_state = 2}, - [220] = {.lex_state = 318, .external_lex_state = 2}, - [221] = {.lex_state = 318, .external_lex_state = 2}, - [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 = 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}, - [229] = {.lex_state = 318, .external_lex_state = 2}, - [230] = {.lex_state = 318, .external_lex_state = 2}, - [231] = {.lex_state = 318, .external_lex_state = 2}, - [232] = {.lex_state = 318, .external_lex_state = 2}, - [233] = {.lex_state = 318, .external_lex_state = 2}, - [234] = {.lex_state = 318, .external_lex_state = 2}, - [235] = {.lex_state = 318, .external_lex_state = 2}, - [236] = {.lex_state = 318, .external_lex_state = 2}, - [237] = {.lex_state = 318, .external_lex_state = 2}, - [238] = {.lex_state = 318, .external_lex_state = 2}, - [239] = {.lex_state = 318, .external_lex_state = 2}, - [240] = {.lex_state = 318, .external_lex_state = 2}, - [241] = {.lex_state = 318, .external_lex_state = 2}, - [242] = {.lex_state = 318, .external_lex_state = 2}, - [243] = {.lex_state = 318, .external_lex_state = 2}, - [244] = {.lex_state = 318, .external_lex_state = 2}, - [245] = {.lex_state = 318, .external_lex_state = 2}, - [246] = {.lex_state = 318, .external_lex_state = 2}, - [247] = {.lex_state = 318, .external_lex_state = 2}, - [248] = {.lex_state = 318, .external_lex_state = 2}, - [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 = 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}, - [256] = {.lex_state = 318, .external_lex_state = 2}, - [257] = {.lex_state = 318, .external_lex_state = 2}, - [258] = {.lex_state = 318, .external_lex_state = 2}, - [259] = {.lex_state = 318, .external_lex_state = 2}, + [58] = {.lex_state = 321, .external_lex_state = 2}, + [59] = {.lex_state = 321, .external_lex_state = 2}, + [60] = {.lex_state = 321, .external_lex_state = 2}, + [61] = {.lex_state = 321, .external_lex_state = 2}, + [62] = {.lex_state = 321, .external_lex_state = 2}, + [63] = {.lex_state = 321, .external_lex_state = 2}, + [64] = {.lex_state = 321, .external_lex_state = 2}, + [65] = {.lex_state = 321, .external_lex_state = 2}, + [66] = {.lex_state = 321, .external_lex_state = 2}, + [67] = {.lex_state = 321, .external_lex_state = 2}, + [68] = {.lex_state = 321, .external_lex_state = 2}, + [69] = {.lex_state = 321, .external_lex_state = 2}, + [70] = {.lex_state = 321, .external_lex_state = 2}, + [71] = {.lex_state = 321, .external_lex_state = 2}, + [72] = {.lex_state = 321, .external_lex_state = 2}, + [73] = {.lex_state = 321, .external_lex_state = 2}, + [74] = {.lex_state = 321, .external_lex_state = 2}, + [75] = {.lex_state = 321, .external_lex_state = 2}, + [76] = {.lex_state = 321, .external_lex_state = 2}, + [77] = {.lex_state = 321, .external_lex_state = 2}, + [78] = {.lex_state = 321, .external_lex_state = 2}, + [79] = {.lex_state = 321, .external_lex_state = 2}, + [80] = {.lex_state = 321, .external_lex_state = 2}, + [81] = {.lex_state = 321, .external_lex_state = 2}, + [82] = {.lex_state = 321, .external_lex_state = 2}, + [83] = {.lex_state = 321, .external_lex_state = 2}, + [84] = {.lex_state = 321, .external_lex_state = 2}, + [85] = {.lex_state = 321, .external_lex_state = 2}, + [86] = {.lex_state = 321, .external_lex_state = 5}, + [87] = {.lex_state = 321, .external_lex_state = 2}, + [88] = {.lex_state = 321, .external_lex_state = 2}, + [89] = {.lex_state = 321, .external_lex_state = 2}, + [90] = {.lex_state = 321, .external_lex_state = 2}, + [91] = {.lex_state = 321, .external_lex_state = 2}, + [92] = {.lex_state = 321, .external_lex_state = 2}, + [93] = {.lex_state = 321, .external_lex_state = 2}, + [94] = {.lex_state = 321, .external_lex_state = 2}, + [95] = {.lex_state = 321, .external_lex_state = 2}, + [96] = {.lex_state = 321, .external_lex_state = 2}, + [97] = {.lex_state = 321, .external_lex_state = 2}, + [98] = {.lex_state = 321, .external_lex_state = 2}, + [99] = {.lex_state = 321, .external_lex_state = 5}, + [100] = {.lex_state = 321, .external_lex_state = 2}, + [101] = {.lex_state = 321, .external_lex_state = 2}, + [102] = {.lex_state = 321, .external_lex_state = 2}, + [103] = {.lex_state = 321, .external_lex_state = 2}, + [104] = {.lex_state = 321, .external_lex_state = 2}, + [105] = {.lex_state = 321, .external_lex_state = 2}, + [106] = {.lex_state = 321, .external_lex_state = 5}, + [107] = {.lex_state = 321, .external_lex_state = 2}, + [108] = {.lex_state = 321, .external_lex_state = 2}, + [109] = {.lex_state = 321, .external_lex_state = 2}, + [110] = {.lex_state = 321, .external_lex_state = 2}, + [111] = {.lex_state = 321, .external_lex_state = 2}, + [112] = {.lex_state = 321, .external_lex_state = 2}, + [113] = {.lex_state = 321, .external_lex_state = 2}, + [114] = {.lex_state = 321, .external_lex_state = 2}, + [115] = {.lex_state = 321, .external_lex_state = 2}, + [116] = {.lex_state = 321, .external_lex_state = 2}, + [117] = {.lex_state = 321, .external_lex_state = 2}, + [118] = {.lex_state = 321, .external_lex_state = 2}, + [119] = {.lex_state = 321, .external_lex_state = 2}, + [120] = {.lex_state = 321, .external_lex_state = 2}, + [121] = {.lex_state = 321, .external_lex_state = 2}, + [122] = {.lex_state = 321, .external_lex_state = 2}, + [123] = {.lex_state = 321, .external_lex_state = 2}, + [124] = {.lex_state = 321, .external_lex_state = 2}, + [125] = {.lex_state = 321, .external_lex_state = 2}, + [126] = {.lex_state = 321, .external_lex_state = 2}, + [127] = {.lex_state = 321, .external_lex_state = 2}, + [128] = {.lex_state = 321, .external_lex_state = 2}, + [129] = {.lex_state = 321, .external_lex_state = 2}, + [130] = {.lex_state = 321, .external_lex_state = 2}, + [131] = {.lex_state = 321, .external_lex_state = 2}, + [132] = {.lex_state = 321, .external_lex_state = 2}, + [133] = {.lex_state = 321, .external_lex_state = 2}, + [134] = {.lex_state = 321, .external_lex_state = 2}, + [135] = {.lex_state = 321, .external_lex_state = 2}, + [136] = {.lex_state = 321, .external_lex_state = 2}, + [137] = {.lex_state = 321, .external_lex_state = 2}, + [138] = {.lex_state = 321, .external_lex_state = 2}, + [139] = {.lex_state = 321, .external_lex_state = 2}, + [140] = {.lex_state = 321, .external_lex_state = 2}, + [141] = {.lex_state = 321, .external_lex_state = 2}, + [142] = {.lex_state = 321, .external_lex_state = 2}, + [143] = {.lex_state = 321, .external_lex_state = 2}, + [144] = {.lex_state = 321, .external_lex_state = 2}, + [145] = {.lex_state = 321, .external_lex_state = 2}, + [146] = {.lex_state = 321, .external_lex_state = 2}, + [147] = {.lex_state = 321, .external_lex_state = 2}, + [148] = {.lex_state = 321, .external_lex_state = 2}, + [149] = {.lex_state = 321, .external_lex_state = 2}, + [150] = {.lex_state = 321, .external_lex_state = 2}, + [151] = {.lex_state = 321, .external_lex_state = 2}, + [152] = {.lex_state = 321, .external_lex_state = 2}, + [153] = {.lex_state = 321, .external_lex_state = 2}, + [154] = {.lex_state = 321, .external_lex_state = 2}, + [155] = {.lex_state = 321, .external_lex_state = 2}, + [156] = {.lex_state = 321, .external_lex_state = 2}, + [157] = {.lex_state = 321, .external_lex_state = 2}, + [158] = {.lex_state = 321, .external_lex_state = 2}, + [159] = {.lex_state = 321, .external_lex_state = 2}, + [160] = {.lex_state = 321, .external_lex_state = 2}, + [161] = {.lex_state = 321, .external_lex_state = 2}, + [162] = {.lex_state = 321, .external_lex_state = 2}, + [163] = {.lex_state = 321, .external_lex_state = 2}, + [164] = {.lex_state = 321, .external_lex_state = 2}, + [165] = {.lex_state = 321, .external_lex_state = 2}, + [166] = {.lex_state = 321, .external_lex_state = 2}, + [167] = {.lex_state = 321, .external_lex_state = 2}, + [168] = {.lex_state = 321, .external_lex_state = 2}, + [169] = {.lex_state = 321, .external_lex_state = 2}, + [170] = {.lex_state = 321, .external_lex_state = 2}, + [171] = {.lex_state = 321, .external_lex_state = 2}, + [172] = {.lex_state = 321, .external_lex_state = 2}, + [173] = {.lex_state = 321, .external_lex_state = 2}, + [174] = {.lex_state = 321, .external_lex_state = 2}, + [175] = {.lex_state = 321, .external_lex_state = 2}, + [176] = {.lex_state = 321, .external_lex_state = 2}, + [177] = {.lex_state = 321, .external_lex_state = 2}, + [178] = {.lex_state = 321, .external_lex_state = 2}, + [179] = {.lex_state = 321, .external_lex_state = 2}, + [180] = {.lex_state = 321, .external_lex_state = 2}, + [181] = {.lex_state = 321, .external_lex_state = 2}, + [182] = {.lex_state = 321, .external_lex_state = 2}, + [183] = {.lex_state = 321, .external_lex_state = 2}, + [184] = {.lex_state = 321, .external_lex_state = 2}, + [185] = {.lex_state = 321, .external_lex_state = 2}, + [186] = {.lex_state = 321, .external_lex_state = 2}, + [187] = {.lex_state = 321, .external_lex_state = 2}, + [188] = {.lex_state = 321, .external_lex_state = 2}, + [189] = {.lex_state = 321, .external_lex_state = 2}, + [190] = {.lex_state = 321, .external_lex_state = 2}, + [191] = {.lex_state = 321, .external_lex_state = 2}, + [192] = {.lex_state = 321, .external_lex_state = 2}, + [193] = {.lex_state = 321, .external_lex_state = 2}, + [194] = {.lex_state = 321, .external_lex_state = 2}, + [195] = {.lex_state = 321, .external_lex_state = 2}, + [196] = {.lex_state = 321, .external_lex_state = 2}, + [197] = {.lex_state = 321, .external_lex_state = 2}, + [198] = {.lex_state = 321, .external_lex_state = 2}, + [199] = {.lex_state = 321, .external_lex_state = 2}, + [200] = {.lex_state = 321, .external_lex_state = 2}, + [201] = {.lex_state = 321, .external_lex_state = 2}, + [202] = {.lex_state = 321, .external_lex_state = 2}, + [203] = {.lex_state = 321, .external_lex_state = 2}, + [204] = {.lex_state = 321, .external_lex_state = 2}, + [205] = {.lex_state = 321, .external_lex_state = 2}, + [206] = {.lex_state = 321, .external_lex_state = 2}, + [207] = {.lex_state = 321, .external_lex_state = 2}, + [208] = {.lex_state = 321, .external_lex_state = 2}, + [209] = {.lex_state = 321, .external_lex_state = 2}, + [210] = {.lex_state = 321, .external_lex_state = 2}, + [211] = {.lex_state = 321, .external_lex_state = 2}, + [212] = {.lex_state = 321, .external_lex_state = 2}, + [213] = {.lex_state = 321, .external_lex_state = 2}, + [214] = {.lex_state = 321, .external_lex_state = 2}, + [215] = {.lex_state = 321, .external_lex_state = 2}, + [216] = {.lex_state = 321, .external_lex_state = 2}, + [217] = {.lex_state = 321, .external_lex_state = 2}, + [218] = {.lex_state = 321, .external_lex_state = 2}, + [219] = {.lex_state = 321, .external_lex_state = 2}, + [220] = {.lex_state = 321, .external_lex_state = 2}, + [221] = {.lex_state = 321, .external_lex_state = 2}, + [222] = {.lex_state = 321, .external_lex_state = 2}, + [223] = {.lex_state = 321, .external_lex_state = 2}, + [224] = {.lex_state = 321, .external_lex_state = 2}, + [225] = {.lex_state = 321, .external_lex_state = 2}, + [226] = {.lex_state = 321, .external_lex_state = 2}, + [227] = {.lex_state = 321, .external_lex_state = 2}, + [228] = {.lex_state = 321, .external_lex_state = 2}, + [229] = {.lex_state = 321, .external_lex_state = 2}, + [230] = {.lex_state = 321, .external_lex_state = 2}, + [231] = {.lex_state = 321, .external_lex_state = 2}, + [232] = {.lex_state = 321, .external_lex_state = 2}, + [233] = {.lex_state = 321, .external_lex_state = 2}, + [234] = {.lex_state = 321, .external_lex_state = 2}, + [235] = {.lex_state = 321, .external_lex_state = 2}, + [236] = {.lex_state = 321, .external_lex_state = 2}, + [237] = {.lex_state = 321, .external_lex_state = 2}, + [238] = {.lex_state = 321, .external_lex_state = 2}, + [239] = {.lex_state = 321, .external_lex_state = 2}, + [240] = {.lex_state = 321, .external_lex_state = 2}, + [241] = {.lex_state = 321, .external_lex_state = 2}, + [242] = {.lex_state = 321, .external_lex_state = 2}, + [243] = {.lex_state = 321, .external_lex_state = 2}, + [244] = {.lex_state = 321, .external_lex_state = 2}, + [245] = {.lex_state = 321, .external_lex_state = 2}, + [246] = {.lex_state = 321, .external_lex_state = 2}, + [247] = {.lex_state = 321, .external_lex_state = 2}, + [248] = {.lex_state = 1, .external_lex_state = 3}, + [249] = {.lex_state = 321, .external_lex_state = 2}, + [250] = {.lex_state = 321, .external_lex_state = 2}, + [251] = {.lex_state = 321, .external_lex_state = 2}, + [252] = {.lex_state = 321, .external_lex_state = 2}, + [253] = {.lex_state = 321, .external_lex_state = 2}, + [254] = {.lex_state = 321, .external_lex_state = 2}, + [255] = {.lex_state = 321, .external_lex_state = 2}, + [256] = {.lex_state = 321, .external_lex_state = 2}, + [257] = {.lex_state = 321, .external_lex_state = 2}, + [258] = {.lex_state = 321, .external_lex_state = 2}, + [259] = {.lex_state = 321, .external_lex_state = 2}, [260] = {.lex_state = 1, .external_lex_state = 4}, [261] = {.lex_state = 1, .external_lex_state = 4}, [262] = {.lex_state = 1, .external_lex_state = 3}, @@ -23777,15 +20415,15 @@ 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 = 1, .external_lex_state = 4}, + [299] = {.lex_state = 2, .external_lex_state = 4}, [300] = {.lex_state = 1, .external_lex_state = 4}, [301] = {.lex_state = 1, .external_lex_state = 4}, - [302] = {.lex_state = 2, .external_lex_state = 4}, - [303] = {.lex_state = 2, .external_lex_state = 4}, + [302] = {.lex_state = 1, .external_lex_state = 4}, + [303] = {.lex_state = 1, .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}, + [307] = {.lex_state = 2, .external_lex_state = 4}, [308] = {.lex_state = 1, .external_lex_state = 4}, [309] = {.lex_state = 1, .external_lex_state = 4}, [310] = {.lex_state = 1, .external_lex_state = 4}, @@ -23810,51 +20448,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [329] = {.lex_state = 1, .external_lex_state = 4}, [330] = {.lex_state = 1, .external_lex_state = 4}, [331] = {.lex_state = 1, .external_lex_state = 4}, - [332] = {.lex_state = 318, .external_lex_state = 2}, - [333] = {.lex_state = 318, .external_lex_state = 2}, - [334] = {.lex_state = 318, .external_lex_state = 2}, - [335] = {.lex_state = 318, .external_lex_state = 2}, - [336] = {.lex_state = 318, .external_lex_state = 2}, - [337] = {.lex_state = 318, .external_lex_state = 2}, - [338] = {.lex_state = 318, .external_lex_state = 2}, - [339] = {.lex_state = 318, .external_lex_state = 2}, - [340] = {.lex_state = 318, .external_lex_state = 2}, - [341] = {.lex_state = 318, .external_lex_state = 2}, - [342] = {.lex_state = 318, .external_lex_state = 2}, - [343] = {.lex_state = 318, .external_lex_state = 2}, - [344] = {.lex_state = 318, .external_lex_state = 2}, - [345] = {.lex_state = 318, .external_lex_state = 2}, - [346] = {.lex_state = 318, .external_lex_state = 2}, - [347] = {.lex_state = 318, .external_lex_state = 2}, - [348] = {.lex_state = 318, .external_lex_state = 2}, - [349] = {.lex_state = 318, .external_lex_state = 2}, - [350] = {.lex_state = 318, .external_lex_state = 2}, - [351] = {.lex_state = 318, .external_lex_state = 2}, - [352] = {.lex_state = 318, .external_lex_state = 2}, - [353] = {.lex_state = 318, .external_lex_state = 2}, - [354] = {.lex_state = 318, .external_lex_state = 2}, - [355] = {.lex_state = 318, .external_lex_state = 2}, + [332] = {.lex_state = 321, .external_lex_state = 2}, + [333] = {.lex_state = 321, .external_lex_state = 2}, + [334] = {.lex_state = 321, .external_lex_state = 2}, + [335] = {.lex_state = 321, .external_lex_state = 2}, + [336] = {.lex_state = 321, .external_lex_state = 2}, + [337] = {.lex_state = 321, .external_lex_state = 2}, + [338] = {.lex_state = 321, .external_lex_state = 2}, + [339] = {.lex_state = 321, .external_lex_state = 2}, + [340] = {.lex_state = 321, .external_lex_state = 2}, + [341] = {.lex_state = 321, .external_lex_state = 2}, + [342] = {.lex_state = 321, .external_lex_state = 2}, + [343] = {.lex_state = 321, .external_lex_state = 2}, + [344] = {.lex_state = 321, .external_lex_state = 2}, + [345] = {.lex_state = 321, .external_lex_state = 2}, + [346] = {.lex_state = 321, .external_lex_state = 2}, + [347] = {.lex_state = 321, .external_lex_state = 2}, + [348] = {.lex_state = 321, .external_lex_state = 2}, + [349] = {.lex_state = 321, .external_lex_state = 2}, + [350] = {.lex_state = 321, .external_lex_state = 2}, + [351] = {.lex_state = 321, .external_lex_state = 2}, + [352] = {.lex_state = 321, .external_lex_state = 2}, + [353] = {.lex_state = 321, .external_lex_state = 2}, + [354] = {.lex_state = 321, .external_lex_state = 2}, + [355] = {.lex_state = 321, .external_lex_state = 2}, [356] = {.lex_state = 2, .external_lex_state = 4}, [357] = {.lex_state = 2, .external_lex_state = 4}, [358] = {.lex_state = 2, .external_lex_state = 3}, [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 = 2, .external_lex_state = 4}, + [362] = {.lex_state = 1, .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}, - [366] = {.lex_state = 1, .external_lex_state = 4}, + [366] = {.lex_state = 2, .external_lex_state = 4}, [367] = {.lex_state = 1, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, + [371] = {.lex_state = 1, .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 = 1, .external_lex_state = 4}, - [376] = {.lex_state = 1, .external_lex_state = 4}, + [376] = {.lex_state = 2, .external_lex_state = 4}, [377] = {.lex_state = 1, .external_lex_state = 4}, [378] = {.lex_state = 1, .external_lex_state = 4}, [379] = {.lex_state = 1, .external_lex_state = 4}, @@ -24153,24 +20791,24 @@ 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 = 13, .external_lex_state = 7}, - [676] = {.lex_state = 13, .external_lex_state = 7}, - [677] = {.lex_state = 13, .external_lex_state = 7}, + [675] = {.lex_state = 12, .external_lex_state = 2}, + [676] = {.lex_state = 12, .external_lex_state = 2}, + [677] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [682] = {.lex_state = 12, .external_lex_state = 2}, [683] = {.lex_state = 12, .external_lex_state = 2}, - [684] = {.lex_state = 13, .external_lex_state = 7}, + [684] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [688] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [690] = {.lex_state = 13, .external_lex_state = 7}, + [691] = {.lex_state = 12, .external_lex_state = 2}, + [692] = {.lex_state = 13, .external_lex_state = 7}, [693] = {.lex_state = 12, .external_lex_state = 2}, [694] = {.lex_state = 12, .external_lex_state = 2}, [695] = {.lex_state = 12, .external_lex_state = 2}, @@ -24178,24 +20816,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [697] = {.lex_state = 12, .external_lex_state = 2}, [698] = {.lex_state = 12, .external_lex_state = 2}, [699] = {.lex_state = 12, .external_lex_state = 2}, - [700] = {.lex_state = 12, .external_lex_state = 2}, + [700] = {.lex_state = 13, .external_lex_state = 7}, [701] = {.lex_state = 12, .external_lex_state = 2}, - [702] = {.lex_state = 12, .external_lex_state = 2}, - [703] = {.lex_state = 12, .external_lex_state = 2}, + [702] = {.lex_state = 13, .external_lex_state = 7}, + [703] = {.lex_state = 13, .external_lex_state = 7}, [704] = {.lex_state = 13, .external_lex_state = 7}, - [705] = {.lex_state = 12, .external_lex_state = 2}, + [705] = {.lex_state = 13, .external_lex_state = 7}, [706] = {.lex_state = 13, .external_lex_state = 7}, - [707] = {.lex_state = 13, .external_lex_state = 7}, + [707] = {.lex_state = 12, .external_lex_state = 2}, [708] = {.lex_state = 13, .external_lex_state = 7}, - [709] = {.lex_state = 12, .external_lex_state = 2}, + [709] = {.lex_state = 13, .external_lex_state = 7}, [710] = {.lex_state = 12, .external_lex_state = 2}, - [711] = {.lex_state = 12, .external_lex_state = 2}, - [712] = {.lex_state = 13, .external_lex_state = 6}, + [711] = {.lex_state = 13, .external_lex_state = 7}, + [712] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [714] = {.lex_state = 1, .external_lex_state = 4}, + [715] = {.lex_state = 1, .external_lex_state = 4}, + [716] = {.lex_state = 1, .external_lex_state = 4}, + [717] = {.lex_state = 1, .external_lex_state = 4}, [718] = {.lex_state = 1, .external_lex_state = 4}, [719] = {.lex_state = 1, .external_lex_state = 4}, [720] = {.lex_state = 1, .external_lex_state = 4}, @@ -24204,88 +20842,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [726] = {.lex_state = 1, .external_lex_state = 4}, [727] = {.lex_state = 1, .external_lex_state = 4}, - [728] = {.lex_state = 1, .external_lex_state = 4}, - [729] = {.lex_state = 13, .external_lex_state = 6}, + [728] = {.lex_state = 13, .external_lex_state = 6}, + [729] = {.lex_state = 1, .external_lex_state = 4}, [730] = {.lex_state = 1, .external_lex_state = 4}, - [731] = {.lex_state = 1, .external_lex_state = 4}, + [731] = {.lex_state = 13, .external_lex_state = 6}, [732] = {.lex_state = 1, .external_lex_state = 4}, [733] = {.lex_state = 1, .external_lex_state = 4}, - [734] = {.lex_state = 13, .external_lex_state = 6}, - [735] = {.lex_state = 13, .external_lex_state = 6}, + [734] = {.lex_state = 1, .external_lex_state = 4}, + [735] = {.lex_state = 1, .external_lex_state = 4}, [736] = {.lex_state = 1, .external_lex_state = 4}, [737] = {.lex_state = 1, .external_lex_state = 4}, - [738] = {.lex_state = 13, .external_lex_state = 6}, + [738] = {.lex_state = 1, .external_lex_state = 4}, [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 = 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}, + [741] = {.lex_state = 13, .external_lex_state = 6}, + [742] = {.lex_state = 13, .external_lex_state = 6}, + [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}, [747] = {.lex_state = 1, .external_lex_state = 4}, - [748] = {.lex_state = 1, .external_lex_state = 4}, - [749] = {.lex_state = 1, .external_lex_state = 4}, + [748] = {.lex_state = 13, .external_lex_state = 6}, + [749] = {.lex_state = 13, .external_lex_state = 6}, [750] = {.lex_state = 1, .external_lex_state = 4}, [751] = {.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}, + [754] = {.lex_state = 13, .external_lex_state = 7}, [755] = {.lex_state = 9, .external_lex_state = 2}, - [756] = {.lex_state = 13, .external_lex_state = 7}, - [757] = {.lex_state = 13, .external_lex_state = 7}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [761] = {.lex_state = 9, .external_lex_state = 2}, + [762] = {.lex_state = 13, .external_lex_state = 7}, + [763] = {.lex_state = 13, .external_lex_state = 7}, + [764] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [769] = {.lex_state = 13, .external_lex_state = 7}, + [770] = {.lex_state = 1, .external_lex_state = 4}, [771] = {.lex_state = 9, .external_lex_state = 2}, [772] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [775] = {.lex_state = 1, .external_lex_state = 4}, + [776] = {.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 = 9, .external_lex_state = 2}, + [778] = {.lex_state = 9, .external_lex_state = 2}, + [779] = {.lex_state = 13, .external_lex_state = 7}, + [780] = {.lex_state = 13, .external_lex_state = 7}, [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 = 9, .external_lex_state = 2}, - [785] = {.lex_state = 1, .external_lex_state = 4}, + [783] = {.lex_state = 1, .external_lex_state = 4}, + [784] = {.lex_state = 1, .external_lex_state = 4}, + [785] = {.lex_state = 9, .external_lex_state = 2}, [786] = {.lex_state = 9, .external_lex_state = 2}, [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 = 9, .external_lex_state = 2}, - [792] = {.lex_state = 9, .external_lex_state = 2}, + [792] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, - [798] = {.lex_state = 1, .external_lex_state = 4}, + [797] = {.lex_state = 9, .external_lex_state = 2}, + [798] = {.lex_state = 9, .external_lex_state = 2}, [799] = {.lex_state = 13, .external_lex_state = 6}, [800] = {.lex_state = 13, .external_lex_state = 6}, - [801] = {.lex_state = 1, .external_lex_state = 4}, + [801] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [807] = {.lex_state = 1, .external_lex_state = 4}, [808] = {.lex_state = 13, .external_lex_state = 6}, [809] = {.lex_state = 13, .external_lex_state = 6}, [810] = {.lex_state = 13, .external_lex_state = 6}, @@ -24294,8 +20932,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [816] = {.lex_state = 12, .external_lex_state = 2}, + [817] = {.lex_state = 1, .external_lex_state = 4}, [818] = {.lex_state = 1, .external_lex_state = 4}, [819] = {.lex_state = 1, .external_lex_state = 4}, [820] = {.lex_state = 1, .external_lex_state = 4}, @@ -24304,7 +20942,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [826] = {.lex_state = 1, .external_lex_state = 3}, [827] = {.lex_state = 1, .external_lex_state = 4}, [828] = {.lex_state = 1, .external_lex_state = 4}, [829] = {.lex_state = 1, .external_lex_state = 4}, @@ -24318,17 +20956,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [840] = {.lex_state = 1, .external_lex_state = 4}, [841] = {.lex_state = 1, .external_lex_state = 4}, - [842] = {.lex_state = 1, .external_lex_state = 3}, + [842] = {.lex_state = 1, .external_lex_state = 4}, [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 = 3}, - [848] = {.lex_state = 1, .external_lex_state = 4}, + [847] = {.lex_state = 1, .external_lex_state = 4}, + [848] = {.lex_state = 1, .external_lex_state = 3}, [849] = {.lex_state = 1, .external_lex_state = 4}, - [850] = {.lex_state = 1, .external_lex_state = 4}, + [850] = {.lex_state = 1, .external_lex_state = 3}, [851] = {.lex_state = 1, .external_lex_state = 4}, [852] = {.lex_state = 1, .external_lex_state = 4}, [853] = {.lex_state = 1, .external_lex_state = 4}, @@ -24340,7 +20978,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [859] = {.lex_state = 1, .external_lex_state = 4}, [860] = {.lex_state = 1, .external_lex_state = 4}, [861] = {.lex_state = 1, .external_lex_state = 4}, - [862] = {.lex_state = 1, .external_lex_state = 4}, + [862] = {.lex_state = 13, .external_lex_state = 7}, [863] = {.lex_state = 1, .external_lex_state = 4}, [864] = {.lex_state = 1, .external_lex_state = 4}, [865] = {.lex_state = 1, .external_lex_state = 4}, @@ -24348,20 +20986,20 @@ 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 = 13, .external_lex_state = 7}, + [870] = {.lex_state = 1, .external_lex_state = 4}, [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 = 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}, + [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 = 4}, + [876] = {.lex_state = 1, .external_lex_state = 4}, + [877] = {.lex_state = 13, .external_lex_state = 7}, + [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}, [884] = {.lex_state = 1, .external_lex_state = 4}, [885] = {.lex_state = 1, .external_lex_state = 4}, [886] = {.lex_state = 1, .external_lex_state = 4}, @@ -24369,32 +21007,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 4}, + [891] = {.lex_state = 13, .external_lex_state = 7}, [892] = {.lex_state = 1, .external_lex_state = 4}, [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}, [897] = {.lex_state = 1, .external_lex_state = 4}, - [898] = {.lex_state = 1, .external_lex_state = 4}, + [898] = {.lex_state = 13, .external_lex_state = 7}, [899] = {.lex_state = 1, .external_lex_state = 4}, - [900] = {.lex_state = 1, .external_lex_state = 4}, + [900] = {.lex_state = 13, .external_lex_state = 7}, [901] = {.lex_state = 1, .external_lex_state = 4}, [902] = {.lex_state = 1, .external_lex_state = 4}, [903] = {.lex_state = 1, .external_lex_state = 4}, - [904] = {.lex_state = 1, .external_lex_state = 4}, + [904] = {.lex_state = 13, .external_lex_state = 7}, [905] = {.lex_state = 1, .external_lex_state = 4}, [906] = {.lex_state = 1, .external_lex_state = 4}, [907] = {.lex_state = 1, .external_lex_state = 4}, [908] = {.lex_state = 1, .external_lex_state = 4}, [909] = {.lex_state = 1, .external_lex_state = 4}, [910] = {.lex_state = 1, .external_lex_state = 4}, - [911] = {.lex_state = 1, .external_lex_state = 4}, - [912] = {.lex_state = 1, .external_lex_state = 4}, - [913] = {.lex_state = 1, .external_lex_state = 4}, - [914] = {.lex_state = 1, .external_lex_state = 4}, - [915] = {.lex_state = 1, .external_lex_state = 4}, - [916] = {.lex_state = 1, .external_lex_state = 4}, + [911] = {.lex_state = 13, .external_lex_state = 7}, + [912] = {.lex_state = 13, .external_lex_state = 7}, + [913] = {.lex_state = 13, .external_lex_state = 7}, + [914] = {.lex_state = 13, .external_lex_state = 7}, + [915] = {.lex_state = 13, .external_lex_state = 7}, + [916] = {.lex_state = 13, .external_lex_state = 7}, [917] = {.lex_state = 1, .external_lex_state = 4}, [918] = {.lex_state = 1, .external_lex_state = 4}, [919] = {.lex_state = 1, .external_lex_state = 4}, @@ -24404,7 +21042,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 = 13, .external_lex_state = 6}, + [926] = {.lex_state = 1, .external_lex_state = 4}, [927] = {.lex_state = 1, .external_lex_state = 4}, [928] = {.lex_state = 1, .external_lex_state = 4}, [929] = {.lex_state = 1, .external_lex_state = 4}, @@ -24412,7 +21050,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [931] = {.lex_state = 1, .external_lex_state = 4}, [932] = {.lex_state = 1, .external_lex_state = 4}, [933] = {.lex_state = 1, .external_lex_state = 4}, - [934] = {.lex_state = 1, .external_lex_state = 4}, + [934] = {.lex_state = 2, .external_lex_state = 4}, [935] = {.lex_state = 1, .external_lex_state = 4}, [936] = {.lex_state = 1, .external_lex_state = 4}, [937] = {.lex_state = 1, .external_lex_state = 4}, @@ -24421,77 +21059,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [940] = {.lex_state = 1, .external_lex_state = 4}, [941] = {.lex_state = 1, .external_lex_state = 4}, [942] = {.lex_state = 1, .external_lex_state = 4}, - [943] = {.lex_state = 1, .external_lex_state = 4}, - [944] = {.lex_state = 1, .external_lex_state = 4}, - [945] = {.lex_state = 1, .external_lex_state = 4}, + [943] = {.lex_state = 13, .external_lex_state = 6}, + [944] = {.lex_state = 13, .external_lex_state = 6}, + [945] = {.lex_state = 2, .external_lex_state = 4}, [946] = {.lex_state = 1, .external_lex_state = 4}, [947] = {.lex_state = 1, .external_lex_state = 4}, - [948] = {.lex_state = 2, .external_lex_state = 4}, - [949] = {.lex_state = 2, .external_lex_state = 4}, - [950] = {.lex_state = 2, .external_lex_state = 4}, - [951] = {.lex_state = 2, .external_lex_state = 4}, + [948] = {.lex_state = 13, .external_lex_state = 6}, + [949] = {.lex_state = 13, .external_lex_state = 6}, + [950] = {.lex_state = 13, .external_lex_state = 6}, + [951] = {.lex_state = 1, .external_lex_state = 4}, [952] = {.lex_state = 1, .external_lex_state = 4}, - [953] = {.lex_state = 13, .external_lex_state = 6}, + [953] = {.lex_state = 2, .external_lex_state = 4}, [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 = 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}, + [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}, + [960] = {.lex_state = 13, .external_lex_state = 6}, + [961] = {.lex_state = 1, .external_lex_state = 4}, + [962] = {.lex_state = 2, .external_lex_state = 4}, + [963] = {.lex_state = 2, .external_lex_state = 4}, + [964] = {.lex_state = 1, .external_lex_state = 4}, + [965] = {.lex_state = 1, .external_lex_state = 4}, + [966] = {.lex_state = 2, .external_lex_state = 4}, + [967] = {.lex_state = 2, .external_lex_state = 4}, [968] = {.lex_state = 1, .external_lex_state = 4}, [969] = {.lex_state = 1, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 6}, + [970] = {.lex_state = 1, .external_lex_state = 4}, [971] = {.lex_state = 1, .external_lex_state = 4}, - [972] = {.lex_state = 1, .external_lex_state = 4}, + [972] = {.lex_state = 2, .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 = 13, .external_lex_state = 6}, - [977] = {.lex_state = 13, .external_lex_state = 6}, + [976] = {.lex_state = 1, .external_lex_state = 4}, + [977] = {.lex_state = 1, .external_lex_state = 4}, [978] = {.lex_state = 1, .external_lex_state = 4}, - [979] = {.lex_state = 1, .external_lex_state = 4}, - [980] = {.lex_state = 13, .external_lex_state = 6}, + [979] = {.lex_state = 2, .external_lex_state = 4}, + [980] = {.lex_state = 1, .external_lex_state = 4}, [981] = {.lex_state = 1, .external_lex_state = 4}, - [982] = {.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}, + [982] = {.lex_state = 2, .external_lex_state = 4}, + [983] = {.lex_state = 2, .external_lex_state = 4}, + [984] = {.lex_state = 1, .external_lex_state = 4}, + [985] = {.lex_state = 13, .external_lex_state = 6}, [986] = {.lex_state = 13, .external_lex_state = 6}, - [987] = {.lex_state = 1, .external_lex_state = 4}, - [988] = {.lex_state = 1, .external_lex_state = 4}, + [987] = {.lex_state = 13, .external_lex_state = 6}, + [988] = {.lex_state = 2, .external_lex_state = 4}, [989] = {.lex_state = 13, .external_lex_state = 6}, - [990] = {.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}, + [990] = {.lex_state = 2, .external_lex_state = 4}, + [991] = {.lex_state = 13, .external_lex_state = 6}, + [992] = {.lex_state = 13, .external_lex_state = 6}, + [993] = {.lex_state = 2, .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}, + [996] = {.lex_state = 1, .external_lex_state = 4}, [997] = {.lex_state = 1, .external_lex_state = 4}, [998] = {.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}, + [1002] = {.lex_state = 1, .external_lex_state = 4}, + [1003] = {.lex_state = 1, .external_lex_state = 4}, [1004] = {.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}, + [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 = 2, .external_lex_state = 4}, - [1010] = {.lex_state = 2, .external_lex_state = 4}, + [1010] = {.lex_state = 1, .external_lex_state = 4}, [1011] = {.lex_state = 2, .external_lex_state = 4}, - [1012] = {.lex_state = 1, .external_lex_state = 4}, - [1013] = {.lex_state = 2, .external_lex_state = 4}, + [1012] = {.lex_state = 3, .external_lex_state = 4}, + [1013] = {.lex_state = 1, .external_lex_state = 4}, [1014] = {.lex_state = 1, .external_lex_state = 4}, [1015] = {.lex_state = 1, .external_lex_state = 4}, [1016] = {.lex_state = 1, .external_lex_state = 4}, @@ -24510,7 +21148,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1029] = {.lex_state = 1, .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}, + [1032] = {.lex_state = 13, .external_lex_state = 7}, [1033] = {.lex_state = 1, .external_lex_state = 4}, [1034] = {.lex_state = 1, .external_lex_state = 4}, [1035] = {.lex_state = 1, .external_lex_state = 4}, @@ -24537,14 +21175,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1056] = {.lex_state = 1, .external_lex_state = 4}, [1057] = {.lex_state = 1, .external_lex_state = 4}, [1058] = {.lex_state = 1, .external_lex_state = 4}, - [1059] = {.lex_state = 1, .external_lex_state = 4}, + [1059] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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}, + [1066] = {.lex_state = 13, .external_lex_state = 7}, [1067] = {.lex_state = 1, .external_lex_state = 4}, [1068] = {.lex_state = 1, .external_lex_state = 4}, [1069] = {.lex_state = 1, .external_lex_state = 4}, @@ -24552,10 +21190,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1071] = {.lex_state = 1, .external_lex_state = 4}, [1072] = {.lex_state = 1, .external_lex_state = 4}, [1073] = {.lex_state = 1, .external_lex_state = 4}, - [1074] = {.lex_state = 1, .external_lex_state = 4}, + [1074] = {.lex_state = 13, .external_lex_state = 7}, [1075] = {.lex_state = 1, .external_lex_state = 4}, [1076] = {.lex_state = 1, .external_lex_state = 4}, - [1077] = {.lex_state = 1, .external_lex_state = 4}, + [1077] = {.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}, @@ -24564,12 +21202,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 = 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}, + [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}, [1092] = {.lex_state = 1, .external_lex_state = 4}, [1093] = {.lex_state = 1, .external_lex_state = 4}, [1094] = {.lex_state = 1, .external_lex_state = 4}, @@ -24582,7 +21220,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1101] = {.lex_state = 1, .external_lex_state = 4}, [1102] = {.lex_state = 1, .external_lex_state = 4}, [1103] = {.lex_state = 1, .external_lex_state = 4}, - [1104] = {.lex_state = 1, .external_lex_state = 4}, + [1104] = {.lex_state = 13, .external_lex_state = 7}, [1105] = {.lex_state = 1, .external_lex_state = 4}, [1106] = {.lex_state = 1, .external_lex_state = 4}, [1107] = {.lex_state = 1, .external_lex_state = 4}, @@ -24620,192 +21258,192 @@ 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 = 13, .external_lex_state = 7}, + [1142] = {.lex_state = 1, .external_lex_state = 4}, [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 = 13, .external_lex_state = 7}, + [1146] = {.lex_state = 1, .external_lex_state = 4}, [1147] = {.lex_state = 1, .external_lex_state = 4}, [1148] = {.lex_state = 1, .external_lex_state = 4}, [1149] = {.lex_state = 1, .external_lex_state = 4}, [1150] = {.lex_state = 1, .external_lex_state = 4}, [1151] = {.lex_state = 1, .external_lex_state = 4}, - [1152] = {.lex_state = 13, .external_lex_state = 7}, + [1152] = {.lex_state = 1, .external_lex_state = 4}, [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 = 13, .external_lex_state = 7}, + [1156] = {.lex_state = 1, .external_lex_state = 4}, [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 = 1, .external_lex_state = 4}, + [1159] = {.lex_state = 13, .external_lex_state = 7}, + [1160] = {.lex_state = 13, .external_lex_state = 7}, + [1161] = {.lex_state = 13, .external_lex_state = 7}, [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}, - [1167] = {.lex_state = 1, .external_lex_state = 4}, + [1167] = {.lex_state = 13, .external_lex_state = 7}, [1168] = {.lex_state = 1, .external_lex_state = 4}, [1169] = {.lex_state = 1, .external_lex_state = 4}, [1170] = {.lex_state = 1, .external_lex_state = 4}, - [1171] = {.lex_state = 1, .external_lex_state = 4}, - [1172] = {.lex_state = 1, .external_lex_state = 4}, + [1171] = {.lex_state = 13, .external_lex_state = 7}, + [1172] = {.lex_state = 13, .external_lex_state = 7}, [1173] = {.lex_state = 1, .external_lex_state = 4}, [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 = 13, .external_lex_state = 7}, + [1178] = {.lex_state = 1, .external_lex_state = 4}, [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 = 1, .external_lex_state = 4}, [1183] = {.lex_state = 1, .external_lex_state = 4}, - [1184] = {.lex_state = 13, .external_lex_state = 7}, + [1184] = {.lex_state = 1, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, - [1189] = {.lex_state = 2, .external_lex_state = 4}, - [1190] = {.lex_state = 13, .external_lex_state = 7}, + [1189] = {.lex_state = 13, .external_lex_state = 6}, + [1190] = {.lex_state = 13, .external_lex_state = 6}, [1191] = {.lex_state = 2, .external_lex_state = 4}, - [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 13, .external_lex_state = 6}, [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 = 2, .external_lex_state = 4}, - [1200] = {.lex_state = 2, .external_lex_state = 4}, - [1201] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 13, .external_lex_state = 6}, + [1195] = {.lex_state = 13, .external_lex_state = 6}, + [1196] = {.lex_state = 1, .external_lex_state = 4}, + [1197] = {.lex_state = 13, .external_lex_state = 6}, + [1198] = {.lex_state = 13, .external_lex_state = 6}, + [1199] = {.lex_state = 13, .external_lex_state = 7}, + [1200] = {.lex_state = 13, .external_lex_state = 6}, + [1201] = {.lex_state = 1, .external_lex_state = 4}, [1202] = {.lex_state = 13, .external_lex_state = 6}, - [1203] = {.lex_state = 13, .external_lex_state = 7}, + [1203] = {.lex_state = 1, .external_lex_state = 4}, [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 = 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}, + [1207] = {.lex_state = 13, .external_lex_state = 6}, + [1208] = {.lex_state = 13, .external_lex_state = 6}, + [1209] = {.lex_state = 13, .external_lex_state = 6}, + [1210] = {.lex_state = 1, .external_lex_state = 4}, + [1211] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [1213] = {.lex_state = 1, .external_lex_state = 3}, + [1214] = {.lex_state = 1, .external_lex_state = 4}, + [1215] = {.lex_state = 1, .external_lex_state = 3}, [1216] = {.lex_state = 13, .external_lex_state = 6}, - [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}, + [1217] = {.lex_state = 13, .external_lex_state = 7}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 2, .external_lex_state = 4}, + [1220] = {.lex_state = 2, .external_lex_state = 4}, + [1221] = {.lex_state = 2, .external_lex_state = 4}, [1222] = {.lex_state = 13, .external_lex_state = 6}, [1223] = {.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}, + [1224] = {.lex_state = 13, .external_lex_state = 7}, + [1225] = {.lex_state = 2, .external_lex_state = 4}, + [1226] = {.lex_state = 13, .external_lex_state = 7}, + [1227] = {.lex_state = 13, .external_lex_state = 6}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 4}, [1230] = {.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 = 1, .external_lex_state = 4}, - [1236] = {.lex_state = 1, .external_lex_state = 3}, - [1237] = {.lex_state = 1, .external_lex_state = 4}, + [1231] = {.lex_state = 2, .external_lex_state = 4}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 4}, + [1234] = {.lex_state = 13, .external_lex_state = 7}, + [1235] = {.lex_state = 2, .external_lex_state = 4}, + [1236] = {.lex_state = 2, .external_lex_state = 4}, + [1237] = {.lex_state = 9, .external_lex_state = 2}, [1238] = {.lex_state = 9, .external_lex_state = 2}, - [1239] = {.lex_state = 9, .external_lex_state = 2}, + [1239] = {.lex_state = 1, .external_lex_state = 4}, [1240] = {.lex_state = 1, .external_lex_state = 4}, - [1241] = {.lex_state = 9, .external_lex_state = 2}, + [1241] = {.lex_state = 1, .external_lex_state = 4}, [1242] = {.lex_state = 9, .external_lex_state = 2}, - [1243] = {.lex_state = 13, .external_lex_state = 6}, - [1244] = {.lex_state = 1, .external_lex_state = 4}, + [1243] = {.lex_state = 1, .external_lex_state = 4}, + [1244] = {.lex_state = 9, .external_lex_state = 2}, [1245] = {.lex_state = 9, .external_lex_state = 2}, [1246] = {.lex_state = 9, .external_lex_state = 2}, - [1247] = {.lex_state = 9, .external_lex_state = 2}, + [1247] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [1249] = {.lex_state = 13, .external_lex_state = 6}, + [1250] = {.lex_state = 9, .external_lex_state = 2}, + [1251] = {.lex_state = 9, .external_lex_state = 2}, + [1252] = {.lex_state = 9, .external_lex_state = 2}, + [1253] = {.lex_state = 9, .external_lex_state = 2}, + [1254] = {.lex_state = 9, .external_lex_state = 2}, + [1255] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [1259] = {.lex_state = 9, .external_lex_state = 2}, [1260] = {.lex_state = 9, .external_lex_state = 2}, - [1261] = {.lex_state = 13, .external_lex_state = 6}, + [1261] = {.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}, + [1266] = {.lex_state = 9, .external_lex_state = 2}, [1267] = {.lex_state = 1, .external_lex_state = 4}, [1268] = {.lex_state = 1, .external_lex_state = 4}, - [1269] = {.lex_state = 9, .external_lex_state = 2}, + [1269] = {.lex_state = 13, .external_lex_state = 6}, [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 = 9, .external_lex_state = 2}, - [1276] = {.lex_state = 9, .external_lex_state = 2}, + [1271] = {.lex_state = 1, .external_lex_state = 4}, + [1272] = {.lex_state = 13, .external_lex_state = 6}, + [1273] = {.lex_state = 13, .external_lex_state = 6}, + [1274] = {.lex_state = 13, .external_lex_state = 6}, + [1275] = {.lex_state = 1, .external_lex_state = 4}, + [1276] = {.lex_state = 1, .external_lex_state = 4}, [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 = 13, .external_lex_state = 6}, + [1280] = {.lex_state = 1, .external_lex_state = 4}, [1281] = {.lex_state = 1, .external_lex_state = 4}, [1282] = {.lex_state = 9, .external_lex_state = 2}, - [1283] = {.lex_state = 13, .external_lex_state = 6}, + [1283] = {.lex_state = 1, .external_lex_state = 4}, [1284] = {.lex_state = 1, .external_lex_state = 4}, - [1285] = {.lex_state = 9, .external_lex_state = 2}, - [1286] = {.lex_state = 9, .external_lex_state = 2}, - [1287] = {.lex_state = 1, .external_lex_state = 4}, + [1285] = {.lex_state = 1, .external_lex_state = 4}, + [1286] = {.lex_state = 1, .external_lex_state = 4}, + [1287] = {.lex_state = 9, .external_lex_state = 2}, [1288] = {.lex_state = 9, .external_lex_state = 2}, [1289] = {.lex_state = 1, .external_lex_state = 4}, [1290] = {.lex_state = 1, .external_lex_state = 4}, - [1291] = {.lex_state = 1, .external_lex_state = 4}, + [1291] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [1293] = {.lex_state = 1, .external_lex_state = 4}, + [1294] = {.lex_state = 13, .external_lex_state = 6}, + [1295] = {.lex_state = 9, .external_lex_state = 2}, [1296] = {.lex_state = 9, .external_lex_state = 2}, [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 = 1, .external_lex_state = 4}, + [1299] = {.lex_state = 1, .external_lex_state = 4}, + [1300] = {.lex_state = 9, .external_lex_state = 2}, [1301] = {.lex_state = 9, .external_lex_state = 2}, - [1302] = {.lex_state = 9, .external_lex_state = 2}, + [1302] = {.lex_state = 13, .external_lex_state = 6}, [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 = 9, .external_lex_state = 2}, + [1304] = {.lex_state = 9, .external_lex_state = 2}, + [1305] = {.lex_state = 13, .external_lex_state = 6}, + [1306] = {.lex_state = 9, .external_lex_state = 2}, + [1307] = {.lex_state = 13, .external_lex_state = 6}, [1308] = {.lex_state = 9, .external_lex_state = 2}, - [1309] = {.lex_state = 9, .external_lex_state = 2}, + [1309] = {.lex_state = 1, .external_lex_state = 4}, [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 = 9, .external_lex_state = 2}, - [1314] = {.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}, + [1313] = {.lex_state = 1, .external_lex_state = 4}, + [1314] = {.lex_state = 1, .external_lex_state = 4}, + [1315] = {.lex_state = 1, .external_lex_state = 4}, + [1316] = {.lex_state = 1, .external_lex_state = 4}, + [1317] = {.lex_state = 9, .external_lex_state = 2}, [1318] = {.lex_state = 9, .external_lex_state = 2}, [1319] = {.lex_state = 9, .external_lex_state = 2}, [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 = 13, .external_lex_state = 6}, + [1323] = {.lex_state = 1, .external_lex_state = 4}, [1324] = {.lex_state = 9, .external_lex_state = 2}, [1325] = {.lex_state = 9, .external_lex_state = 2}, - [1326] = {.lex_state = 1, .external_lex_state = 4}, - [1327] = {.lex_state = 1, .external_lex_state = 4}, + [1326] = {.lex_state = 9, .external_lex_state = 2}, + [1327] = {.lex_state = 9, .external_lex_state = 2}, [1328] = {.lex_state = 9, .external_lex_state = 2}, [1329] = {.lex_state = 9, .external_lex_state = 2}, [1330] = {.lex_state = 9, .external_lex_state = 2}, @@ -24815,96 +21453,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 9, .external_lex_state = 2}, [1335] = {.lex_state = 9, .external_lex_state = 2}, [1336] = {.lex_state = 9, .external_lex_state = 2}, - [1337] = {.lex_state = 1, .external_lex_state = 3}, + [1337] = {.lex_state = 9, .external_lex_state = 2}, [1338] = {.lex_state = 9, .external_lex_state = 2}, [1339] = {.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}, + [1340] = {.lex_state = 9, .external_lex_state = 2}, + [1341] = {.lex_state = 9, .external_lex_state = 2}, + [1342] = {.lex_state = 9, .external_lex_state = 2}, + [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 = 1, .external_lex_state = 4}, - [1347] = {.lex_state = 1, .external_lex_state = 4}, + [1347] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [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 = 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}, + [1354] = {.lex_state = 1, .external_lex_state = 4}, + [1355] = {.lex_state = 1, .external_lex_state = 4}, [1356] = {.lex_state = 9, .external_lex_state = 2}, [1357] = {.lex_state = 9, .external_lex_state = 2}, - [1358] = {.lex_state = 13, .external_lex_state = 6}, - [1359] = {.lex_state = 13, .external_lex_state = 6}, + [1358] = {.lex_state = 9, .external_lex_state = 2}, + [1359] = {.lex_state = 9, .external_lex_state = 2}, [1360] = {.lex_state = 9, .external_lex_state = 2}, [1361] = {.lex_state = 9, .external_lex_state = 2}, - [1362] = {.lex_state = 1, .external_lex_state = 4}, + [1362] = {.lex_state = 9, .external_lex_state = 2}, [1363] = {.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}, + [1366] = {.lex_state = 1, .external_lex_state = 4}, [1367] = {.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}, + [1368] = {.lex_state = 13, .external_lex_state = 6}, + [1369] = {.lex_state = 1, .external_lex_state = 3}, + [1370] = {.lex_state = 1, .external_lex_state = 4}, [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 = 9, .external_lex_state = 2}, + [1373] = {.lex_state = 13, .external_lex_state = 6}, + [1374] = {.lex_state = 13, .external_lex_state = 6}, [1375] = {.lex_state = 9, .external_lex_state = 2}, [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 = 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}, + [1378] = {.lex_state = 1, .external_lex_state = 4}, + [1379] = {.lex_state = 1, .external_lex_state = 4}, + [1380] = {.lex_state = 1, .external_lex_state = 4}, + [1381] = {.lex_state = 1, .external_lex_state = 4}, + [1382] = {.lex_state = 1, .external_lex_state = 4}, + [1383] = {.lex_state = 1, .external_lex_state = 3}, + [1384] = {.lex_state = 1, .external_lex_state = 4}, + [1385] = {.lex_state = 13, .external_lex_state = 6}, + [1386] = {.lex_state = 13, .external_lex_state = 6}, + [1387] = {.lex_state = 13, .external_lex_state = 6}, + [1388] = {.lex_state = 13, .external_lex_state = 6}, + [1389] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [1393] = {.lex_state = 13, .external_lex_state = 7}, + [1394] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [1398] = {.lex_state = 1, .external_lex_state = 4}, + [1399] = {.lex_state = 1, .external_lex_state = 4}, + [1400] = {.lex_state = 1, .external_lex_state = 4}, + [1401] = {.lex_state = 1, .external_lex_state = 4}, + [1402] = {.lex_state = 13, .external_lex_state = 7}, [1403] = {.lex_state = 13, .external_lex_state = 7}, - [1404] = {.lex_state = 13, .external_lex_state = 7}, - [1405] = {.lex_state = 13, .external_lex_state = 6}, + [1404] = {.lex_state = 1, .external_lex_state = 4}, + [1405] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [1408] = {.lex_state = 13, .external_lex_state = 7}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, [1410] = {.lex_state = 13, .external_lex_state = 7}, - [1411] = {.lex_state = 1, .external_lex_state = 4}, + [1411] = {.lex_state = 13, .external_lex_state = 7}, [1412] = {.lex_state = 9, .external_lex_state = 2}, - [1413] = {.lex_state = 13, .external_lex_state = 7}, + [1413] = {.lex_state = 1, .external_lex_state = 4}, [1414] = {.lex_state = 1, .external_lex_state = 4}, - [1415] = {.lex_state = 13, .external_lex_state = 7}, + [1415] = {.lex_state = 13, .external_lex_state = 6}, [1416] = {.lex_state = 13, .external_lex_state = 7}, - [1417] = {.lex_state = 9, .external_lex_state = 2}, + [1417] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [1419] = {.lex_state = 13, .external_lex_state = 7}, + [1420] = {.lex_state = 13, .external_lex_state = 7}, + [1421] = {.lex_state = 1, .external_lex_state = 4}, [1422] = {.lex_state = 13, .external_lex_state = 6}, - [1423] = {.lex_state = 1, .external_lex_state = 4}, - [1424] = {.lex_state = 1, .external_lex_state = 4}, - [1425] = {.lex_state = 13, .external_lex_state = 6}, - [1426] = {.lex_state = 1, .external_lex_state = 4}, + [1423] = {.lex_state = 13, .external_lex_state = 7}, + [1424] = {.lex_state = 9, .external_lex_state = 2}, + [1425] = {.lex_state = 13, .external_lex_state = 7}, + [1426] = {.lex_state = 13, .external_lex_state = 7}, [1427] = {.lex_state = 1, .external_lex_state = 4}, [1428] = {.lex_state = 9, .external_lex_state = 2}, [1429] = {.lex_state = 9, .external_lex_state = 2}, @@ -24915,7 +21553,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, [1438] = {.lex_state = 9, .external_lex_state = 2}, [1439] = {.lex_state = 9, .external_lex_state = 2}, [1440] = {.lex_state = 9, .external_lex_state = 2}, @@ -24924,12 +21562,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1446] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [1451] = {.lex_state = 9, .external_lex_state = 2}, [1452] = {.lex_state = 9, .external_lex_state = 2}, [1453] = {.lex_state = 9, .external_lex_state = 2}, [1454] = {.lex_state = 9, .external_lex_state = 2}, @@ -24958,7 +21596,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1477] = {.lex_state = 9, .external_lex_state = 2}, [1478] = {.lex_state = 9, .external_lex_state = 2}, [1479] = {.lex_state = 9, .external_lex_state = 2}, - [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 1, .external_lex_state = 4}, [1481] = {.lex_state = 9, .external_lex_state = 2}, [1482] = {.lex_state = 9, .external_lex_state = 2}, [1483] = {.lex_state = 9, .external_lex_state = 2}, @@ -25053,7 +21691,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 = 2, .external_lex_state = 4}, + [1575] = {.lex_state = 9, .external_lex_state = 2}, [1576] = {.lex_state = 9, .external_lex_state = 2}, [1577] = {.lex_state = 9, .external_lex_state = 2}, [1578] = {.lex_state = 9, .external_lex_state = 2}, @@ -25088,7 +21726,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1607] = {.lex_state = 9, .external_lex_state = 2}, [1608] = {.lex_state = 9, .external_lex_state = 2}, [1609] = {.lex_state = 9, .external_lex_state = 2}, - [1610] = {.lex_state = 9, .external_lex_state = 2}, + [1610] = {.lex_state = 2, .external_lex_state = 4}, [1611] = {.lex_state = 9, .external_lex_state = 2}, [1612] = {.lex_state = 9, .external_lex_state = 2}, [1613] = {.lex_state = 9, .external_lex_state = 2}, @@ -25096,25 +21734,25 @@ 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 = 13, .external_lex_state = 6}, + [1618] = {.lex_state = 9, .external_lex_state = 2}, [1619] = {.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}, + [1620] = {.lex_state = 9, .external_lex_state = 2}, + [1621] = {.lex_state = 9, .external_lex_state = 2}, + [1622] = {.lex_state = 9, .external_lex_state = 2}, + [1623] = {.lex_state = 9, .external_lex_state = 2}, [1624] = {.lex_state = 9, .external_lex_state = 2}, [1625] = {.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}, + [1626] = {.lex_state = 2, .external_lex_state = 4}, + [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}, [1632] = {.lex_state = 9, .external_lex_state = 2}, - [1633] = {.lex_state = 13, .external_lex_state = 6}, + [1633] = {.lex_state = 9, .external_lex_state = 2}, [1634] = {.lex_state = 9, .external_lex_state = 2}, [1635] = {.lex_state = 9, .external_lex_state = 2}, - [1636] = {.lex_state = 13, .external_lex_state = 6}, + [1636] = {.lex_state = 9, .external_lex_state = 2}, [1637] = {.lex_state = 9, .external_lex_state = 2}, [1638] = {.lex_state = 9, .external_lex_state = 2}, [1639] = {.lex_state = 9, .external_lex_state = 2}, @@ -25138,7 +21776,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 9, .external_lex_state = 2}, + [1660] = {.lex_state = 13, .external_lex_state = 6}, [1661] = {.lex_state = 9, .external_lex_state = 2}, [1662] = {.lex_state = 9, .external_lex_state = 2}, [1663] = {.lex_state = 9, .external_lex_state = 2}, @@ -25146,13 +21784,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 6}, + [1668] = {.lex_state = 9, .external_lex_state = 2}, [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 = 2, .external_lex_state = 4}, - [1674] = {.lex_state = 2, .external_lex_state = 4}, + [1672] = {.lex_state = 13, .external_lex_state = 6}, + [1673] = {.lex_state = 9, .external_lex_state = 2}, + [1674] = {.lex_state = 9, .external_lex_state = 2}, [1675] = {.lex_state = 9, .external_lex_state = 2}, [1676] = {.lex_state = 9, .external_lex_state = 2}, [1677] = {.lex_state = 9, .external_lex_state = 2}, @@ -25162,14 +21800,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 4}, + [1684] = {.lex_state = 9, .external_lex_state = 2}, [1685] = {.lex_state = 9, .external_lex_state = 2}, - [1686] = {.lex_state = 2, .external_lex_state = 4}, + [1686] = {.lex_state = 9, .external_lex_state = 2}, [1687] = {.lex_state = 9, .external_lex_state = 2}, - [1688] = {.lex_state = 2, .external_lex_state = 4}, + [1688] = {.lex_state = 13, .external_lex_state = 6}, [1689] = {.lex_state = 9, .external_lex_state = 2}, [1690] = {.lex_state = 9, .external_lex_state = 2}, - [1691] = {.lex_state = 2, .external_lex_state = 4}, + [1691] = {.lex_state = 9, .external_lex_state = 2}, [1692] = {.lex_state = 9, .external_lex_state = 2}, [1693] = {.lex_state = 9, .external_lex_state = 2}, [1694] = {.lex_state = 9, .external_lex_state = 2}, @@ -25186,7 +21824,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 4}, + [1708] = {.lex_state = 9, .external_lex_state = 2}, [1709] = {.lex_state = 9, .external_lex_state = 2}, [1710] = {.lex_state = 9, .external_lex_state = 2}, [1711] = {.lex_state = 9, .external_lex_state = 2}, @@ -25201,14 +21839,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1720] = {.lex_state = 9, .external_lex_state = 2}, [1721] = {.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}, + [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}, [1727] = {.lex_state = 9, .external_lex_state = 2}, [1728] = {.lex_state = 9, .external_lex_state = 2}, - [1729] = {.lex_state = 13, .external_lex_state = 6}, - [1730] = {.lex_state = 9, .external_lex_state = 2}, + [1729] = {.lex_state = 9, .external_lex_state = 2}, + [1730] = {.lex_state = 1, .external_lex_state = 4}, [1731] = {.lex_state = 9, .external_lex_state = 2}, [1732] = {.lex_state = 9, .external_lex_state = 2}, [1733] = {.lex_state = 9, .external_lex_state = 2}, @@ -25217,25 +21855,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1736] = {.lex_state = 9, .external_lex_state = 2}, [1737] = {.lex_state = 9, .external_lex_state = 2}, [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}, - [1742] = {.lex_state = 9, .external_lex_state = 2}, - [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 = 13, .external_lex_state = 6}, - [1747] = {.lex_state = 13, .external_lex_state = 6}, + [1739] = {.lex_state = 13, .external_lex_state = 6}, + [1740] = {.lex_state = 2, .external_lex_state = 4}, + [1741] = {.lex_state = 2, .external_lex_state = 4}, + [1742] = {.lex_state = 2, .external_lex_state = 4}, + [1743] = {.lex_state = 2, .external_lex_state = 4}, + [1744] = {.lex_state = 2, .external_lex_state = 4}, + [1745] = {.lex_state = 2, .external_lex_state = 4}, + [1746] = {.lex_state = 9, .external_lex_state = 2}, + [1747] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [1749] = {.lex_state = 2, .external_lex_state = 4}, + [1750] = {.lex_state = 2, .external_lex_state = 4}, + [1751] = {.lex_state = 2, .external_lex_state = 4}, [1752] = {.lex_state = 9, .external_lex_state = 2}, - [1753] = {.lex_state = 13, .external_lex_state = 6}, + [1753] = {.lex_state = 9, .external_lex_state = 2}, [1754] = {.lex_state = 9, .external_lex_state = 2}, - [1755] = {.lex_state = 9, .external_lex_state = 2}, + [1755] = {.lex_state = 13, .external_lex_state = 6}, [1756] = {.lex_state = 9, .external_lex_state = 2}, - [1757] = {.lex_state = 2, .external_lex_state = 4}, + [1757] = {.lex_state = 9, .external_lex_state = 2}, [1758] = {.lex_state = 9, .external_lex_state = 2}, [1759] = {.lex_state = 9, .external_lex_state = 2}, [1760] = {.lex_state = 9, .external_lex_state = 2}, @@ -25249,7 +21887,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1768] = {.lex_state = 9, .external_lex_state = 2}, [1769] = {.lex_state = 9, .external_lex_state = 2}, [1770] = {.lex_state = 9, .external_lex_state = 2}, - [1771] = {.lex_state = 9, .external_lex_state = 2}, + [1771] = {.lex_state = 13, .external_lex_state = 6}, [1772] = {.lex_state = 9, .external_lex_state = 2}, [1773] = {.lex_state = 9, .external_lex_state = 2}, [1774] = {.lex_state = 9, .external_lex_state = 2}, @@ -25258,8 +21896,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1777] = {.lex_state = 9, .external_lex_state = 2}, [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}, + [1780] = {.lex_state = 13, .external_lex_state = 6}, + [1781] = {.lex_state = 13, .external_lex_state = 6}, [1782] = {.lex_state = 9, .external_lex_state = 2}, [1783] = {.lex_state = 9, .external_lex_state = 2}, [1784] = {.lex_state = 9, .external_lex_state = 2}, @@ -25268,34 +21906,34 @@ 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 = 2, .external_lex_state = 4}, - [1791] = {.lex_state = 9, .external_lex_state = 2}, - [1792] = {.lex_state = 2, .external_lex_state = 4}, + [1790] = {.lex_state = 9, .external_lex_state = 2}, + [1791] = {.lex_state = 13, .external_lex_state = 6}, + [1792] = {.lex_state = 9, .external_lex_state = 2}, [1793] = {.lex_state = 9, .external_lex_state = 2}, - [1794] = {.lex_state = 9, .external_lex_state = 2}, + [1794] = {.lex_state = 13, .external_lex_state = 6}, [1795] = {.lex_state = 9, .external_lex_state = 2}, [1796] = {.lex_state = 9, .external_lex_state = 2}, - [1797] = {.lex_state = 9, .external_lex_state = 2}, + [1797] = {.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 = 9, .external_lex_state = 2}, + [1800] = {.lex_state = 13, .external_lex_state = 6}, [1801] = {.lex_state = 9, .external_lex_state = 2}, - [1802] = {.lex_state = 9, .external_lex_state = 2}, - [1803] = {.lex_state = 9, .external_lex_state = 2}, + [1802] = {.lex_state = 1, .external_lex_state = 4}, + [1803] = {.lex_state = 13, .external_lex_state = 6}, [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 = 1, .external_lex_state = 4}, - [1808] = {.lex_state = 9, .external_lex_state = 2}, - [1809] = {.lex_state = 9, .external_lex_state = 2}, - [1810] = {.lex_state = 1, .external_lex_state = 4}, + [1806] = {.lex_state = 13, .external_lex_state = 6}, + [1807] = {.lex_state = 13, .external_lex_state = 6}, + [1808] = {.lex_state = 13, .external_lex_state = 6}, + [1809] = {.lex_state = 13, .external_lex_state = 6}, + [1810] = {.lex_state = 13, .external_lex_state = 6}, [1811] = {.lex_state = 9, .external_lex_state = 2}, [1812] = {.lex_state = 9, .external_lex_state = 2}, [1813] = {.lex_state = 9, .external_lex_state = 2}, [1814] = {.lex_state = 9, .external_lex_state = 2}, [1815] = {.lex_state = 9, .external_lex_state = 2}, [1816] = {.lex_state = 9, .external_lex_state = 2}, - [1817] = {.lex_state = 9, .external_lex_state = 2}, + [1817] = {.lex_state = 13, .external_lex_state = 6}, [1818] = {.lex_state = 9, .external_lex_state = 2}, [1819] = {.lex_state = 9, .external_lex_state = 2}, [1820] = {.lex_state = 9, .external_lex_state = 2}, @@ -25308,7 +21946,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1827] = {.lex_state = 9, .external_lex_state = 2}, [1828] = {.lex_state = 9, .external_lex_state = 2}, [1829] = {.lex_state = 9, .external_lex_state = 2}, - [1830] = {.lex_state = 9, .external_lex_state = 2}, + [1830] = {.lex_state = 13, .external_lex_state = 6}, [1831] = {.lex_state = 9, .external_lex_state = 2}, [1832] = {.lex_state = 9, .external_lex_state = 2}, [1833] = {.lex_state = 9, .external_lex_state = 2}, @@ -25317,16 +21955,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1836] = {.lex_state = 9, .external_lex_state = 2}, [1837] = {.lex_state = 9, .external_lex_state = 2}, [1838] = {.lex_state = 9, .external_lex_state = 2}, - [1839] = {.lex_state = 9, .external_lex_state = 2}, + [1839] = {.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 = 13, .external_lex_state = 6}, + [1845] = {.lex_state = 9, .external_lex_state = 2}, [1846] = {.lex_state = 9, .external_lex_state = 2}, - [1847] = {.lex_state = 13, .external_lex_state = 6}, - [1848] = {.lex_state = 13, .external_lex_state = 6}, + [1847] = {.lex_state = 9, .external_lex_state = 2}, + [1848] = {.lex_state = 9, .external_lex_state = 2}, [1849] = {.lex_state = 9, .external_lex_state = 2}, [1850] = {.lex_state = 9, .external_lex_state = 2}, [1851] = {.lex_state = 9, .external_lex_state = 2}, @@ -25343,14 +21981,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 9, .external_lex_state = 2}, [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 = 1, .external_lex_state = 4}, + [1865] = {.lex_state = 13, .external_lex_state = 6}, + [1866] = {.lex_state = 9, .external_lex_state = 2}, [1867] = {.lex_state = 9, .external_lex_state = 2}, - [1868] = {.lex_state = 1, .external_lex_state = 4}, + [1868] = {.lex_state = 9, .external_lex_state = 2}, [1869] = {.lex_state = 9, .external_lex_state = 2}, [1870] = {.lex_state = 9, .external_lex_state = 2}, - [1871] = {.lex_state = 2, .external_lex_state = 4}, - [1872] = {.lex_state = 2, .external_lex_state = 4}, + [1871] = {.lex_state = 9, .external_lex_state = 2}, + [1872] = {.lex_state = 9, .external_lex_state = 2}, [1873] = {.lex_state = 9, .external_lex_state = 2}, [1874] = {.lex_state = 9, .external_lex_state = 2}, [1875] = {.lex_state = 9, .external_lex_state = 2}, @@ -25370,31 +22008,31 @@ 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 = 2, .external_lex_state = 4}, + [1892] = {.lex_state = 9, .external_lex_state = 2}, [1893] = {.lex_state = 9, .external_lex_state = 2}, [1894] = {.lex_state = 9, .external_lex_state = 2}, [1895] = {.lex_state = 9, .external_lex_state = 2}, [1896] = {.lex_state = 9, .external_lex_state = 2}, - [1897] = {.lex_state = 9, .external_lex_state = 2}, - [1898] = {.lex_state = 9, .external_lex_state = 2}, + [1897] = {.lex_state = 13, .external_lex_state = 6}, + [1898] = {.lex_state = 13, .external_lex_state = 6}, [1899] = {.lex_state = 9, .external_lex_state = 2}, [1900] = {.lex_state = 9, .external_lex_state = 2}, [1901] = {.lex_state = 9, .external_lex_state = 2}, [1902] = {.lex_state = 9, .external_lex_state = 2}, - [1903] = {.lex_state = 9, .external_lex_state = 2}, + [1903] = {.lex_state = 1, .external_lex_state = 4}, [1904] = {.lex_state = 9, .external_lex_state = 2}, - [1905] = {.lex_state = 9, .external_lex_state = 2}, + [1905] = {.lex_state = 1, .external_lex_state = 4}, [1906] = {.lex_state = 9, .external_lex_state = 2}, [1907] = {.lex_state = 9, .external_lex_state = 2}, [1908] = {.lex_state = 9, .external_lex_state = 2}, [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 = 1, .external_lex_state = 4}, - [1913] = {.lex_state = 1, .external_lex_state = 4}, + [1912] = {.lex_state = 9, .external_lex_state = 2}, + [1913] = {.lex_state = 9, .external_lex_state = 2}, [1914] = {.lex_state = 9, .external_lex_state = 2}, [1915] = {.lex_state = 9, .external_lex_state = 2}, - [1916] = {.lex_state = 9, .external_lex_state = 2}, + [1916] = {.lex_state = 1, .external_lex_state = 4}, [1917] = {.lex_state = 9, .external_lex_state = 2}, [1918] = {.lex_state = 1, .external_lex_state = 4}, [1919] = {.lex_state = 9, .external_lex_state = 2}, @@ -25420,7 +22058,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1939] = {.lex_state = 9, .external_lex_state = 2}, [1940] = {.lex_state = 9, .external_lex_state = 2}, [1941] = {.lex_state = 9, .external_lex_state = 2}, - [1942] = {.lex_state = 9, .external_lex_state = 2}, + [1942] = {.lex_state = 1, .external_lex_state = 4}, [1943] = {.lex_state = 9, .external_lex_state = 2}, [1944] = {.lex_state = 9, .external_lex_state = 2}, [1945] = {.lex_state = 9, .external_lex_state = 2}, @@ -25434,10 +22072,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1953] = {.lex_state = 9, .external_lex_state = 2}, [1954] = {.lex_state = 9, .external_lex_state = 2}, [1955] = {.lex_state = 9, .external_lex_state = 2}, - [1956] = {.lex_state = 9, .external_lex_state = 2}, + [1956] = {.lex_state = 1, .external_lex_state = 4}, [1957] = {.lex_state = 9, .external_lex_state = 2}, [1958] = {.lex_state = 9, .external_lex_state = 2}, - [1959] = {.lex_state = 9, .external_lex_state = 2}, + [1959] = {.lex_state = 1, .external_lex_state = 4}, [1960] = {.lex_state = 9, .external_lex_state = 2}, [1961] = {.lex_state = 9, .external_lex_state = 2}, [1962] = {.lex_state = 9, .external_lex_state = 2}, @@ -25480,7 +22118,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 = 1, .external_lex_state = 4}, + [2002] = {.lex_state = 9, .external_lex_state = 2}, [2003] = {.lex_state = 9, .external_lex_state = 2}, [2004] = {.lex_state = 9, .external_lex_state = 2}, [2005] = {.lex_state = 9, .external_lex_state = 2}, @@ -25508,13 +22146,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2027] = {.lex_state = 9, .external_lex_state = 2}, [2028] = {.lex_state = 9, .external_lex_state = 2}, [2029] = {.lex_state = 9, .external_lex_state = 2}, - [2030] = {.lex_state = 9, .external_lex_state = 2}, - [2031] = {.lex_state = 9, .external_lex_state = 2}, + [2030] = {.lex_state = 13, .external_lex_state = 6}, + [2031] = {.lex_state = 2, .external_lex_state = 4}, [2032] = {.lex_state = 9, .external_lex_state = 2}, [2033] = {.lex_state = 9, .external_lex_state = 2}, [2034] = {.lex_state = 9, .external_lex_state = 2}, [2035] = {.lex_state = 9, .external_lex_state = 2}, - [2036] = {.lex_state = 9, .external_lex_state = 2}, + [2036] = {.lex_state = 2, .external_lex_state = 4}, [2037] = {.lex_state = 9, .external_lex_state = 2}, [2038] = {.lex_state = 9, .external_lex_state = 2}, [2039] = {.lex_state = 9, .external_lex_state = 2}, @@ -25535,18 +22173,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2054] = {.lex_state = 9, .external_lex_state = 2}, [2055] = {.lex_state = 9, .external_lex_state = 2}, [2056] = {.lex_state = 9, .external_lex_state = 2}, - [2057] = {.lex_state = 9, .external_lex_state = 2}, - [2058] = {.lex_state = 9, .external_lex_state = 2}, - [2059] = {.lex_state = 9, .external_lex_state = 2}, + [2057] = {.lex_state = 2, .external_lex_state = 4}, + [2058] = {.lex_state = 1, .external_lex_state = 4}, + [2059] = {.lex_state = 1, .external_lex_state = 4}, [2060] = {.lex_state = 9, .external_lex_state = 2}, [2061] = {.lex_state = 9, .external_lex_state = 2}, [2062] = {.lex_state = 9, .external_lex_state = 2}, [2063] = {.lex_state = 9, .external_lex_state = 2}, [2064] = {.lex_state = 9, .external_lex_state = 2}, [2065] = {.lex_state = 9, .external_lex_state = 2}, - [2066] = {.lex_state = 9, .external_lex_state = 2}, + [2066] = {.lex_state = 13, .external_lex_state = 6}, [2067] = {.lex_state = 9, .external_lex_state = 2}, - [2068] = {.lex_state = 13, .external_lex_state = 6}, + [2068] = {.lex_state = 9, .external_lex_state = 2}, [2069] = {.lex_state = 9, .external_lex_state = 2}, [2070] = {.lex_state = 9, .external_lex_state = 2}, [2071] = {.lex_state = 9, .external_lex_state = 2}, @@ -25559,9 +22197,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2078] = {.lex_state = 9, .external_lex_state = 2}, [2079] = {.lex_state = 9, .external_lex_state = 2}, [2080] = {.lex_state = 9, .external_lex_state = 2}, - [2081] = {.lex_state = 9, .external_lex_state = 2}, + [2081] = {.lex_state = 1, .external_lex_state = 4}, [2082] = {.lex_state = 9, .external_lex_state = 2}, - [2083] = {.lex_state = 9, .external_lex_state = 2}, + [2083] = {.lex_state = 13, .external_lex_state = 6}, [2084] = {.lex_state = 9, .external_lex_state = 2}, [2085] = {.lex_state = 9, .external_lex_state = 2}, [2086] = {.lex_state = 9, .external_lex_state = 2}, @@ -25575,19 +22213,19 @@ 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 = 1, .external_lex_state = 4}, - [2098] = {.lex_state = 9, .external_lex_state = 2}, - [2099] = {.lex_state = 9, .external_lex_state = 2}, + [2097] = {.lex_state = 9, .external_lex_state = 2}, + [2098] = {.lex_state = 13, .external_lex_state = 6}, + [2099] = {.lex_state = 2, .external_lex_state = 4}, [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 = 1, .external_lex_state = 4}, - [2104] = {.lex_state = 9, .external_lex_state = 2}, + [2103] = {.lex_state = 9, .external_lex_state = 2}, + [2104] = {.lex_state = 2, .external_lex_state = 4}, [2105] = {.lex_state = 9, .external_lex_state = 2}, [2106] = {.lex_state = 9, .external_lex_state = 2}, [2107] = {.lex_state = 9, .external_lex_state = 2}, [2108] = {.lex_state = 9, .external_lex_state = 2}, - [2109] = {.lex_state = 9, .external_lex_state = 2}, + [2109] = {.lex_state = 2, .external_lex_state = 4}, [2110] = {.lex_state = 9, .external_lex_state = 2}, [2111] = {.lex_state = 9, .external_lex_state = 2}, [2112] = {.lex_state = 9, .external_lex_state = 2}, @@ -25613,14 +22251,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 6}, + [2135] = {.lex_state = 9, .external_lex_state = 2}, [2136] = {.lex_state = 9, .external_lex_state = 2}, [2137] = {.lex_state = 9, .external_lex_state = 2}, [2138] = {.lex_state = 9, .external_lex_state = 2}, [2139] = {.lex_state = 9, .external_lex_state = 2}, [2140] = {.lex_state = 9, .external_lex_state = 2}, [2141] = {.lex_state = 9, .external_lex_state = 2}, - [2142] = {.lex_state = 9, .external_lex_state = 2}, + [2142] = {.lex_state = 1, .external_lex_state = 4}, [2143] = {.lex_state = 9, .external_lex_state = 2}, [2144] = {.lex_state = 9, .external_lex_state = 2}, [2145] = {.lex_state = 9, .external_lex_state = 2}, @@ -25635,7 +22273,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 = 1, .external_lex_state = 4}, + [2157] = {.lex_state = 9, .external_lex_state = 2}, [2158] = {.lex_state = 9, .external_lex_state = 2}, [2159] = {.lex_state = 9, .external_lex_state = 2}, [2160] = {.lex_state = 9, .external_lex_state = 2}, @@ -25647,259 +22285,259 @@ 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 = 13, .external_lex_state = 6}, - [2170] = {.lex_state = 13, .external_lex_state = 6}, + [2169] = {.lex_state = 9, .external_lex_state = 2}, + [2170] = {.lex_state = 9, .external_lex_state = 2}, [2171] = {.lex_state = 9, .external_lex_state = 2}, [2172] = {.lex_state = 9, .external_lex_state = 2}, - [2173] = {.lex_state = 13, .external_lex_state = 6}, + [2173] = {.lex_state = 9, .external_lex_state = 2}, [2174] = {.lex_state = 9, .external_lex_state = 2}, [2175] = {.lex_state = 9, .external_lex_state = 2}, [2176] = {.lex_state = 9, .external_lex_state = 2}, [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 = 13, .external_lex_state = 6}, - [2181] = {.lex_state = 13, .external_lex_state = 6}, + [2180] = {.lex_state = 9, .external_lex_state = 2}, + [2181] = {.lex_state = 9, .external_lex_state = 2}, [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 = 13, .external_lex_state = 6}, - [2187] = {.lex_state = 1, .external_lex_state = 4}, + [2186] = {.lex_state = 9, .external_lex_state = 2}, + [2187] = {.lex_state = 9, .external_lex_state = 2}, [2188] = {.lex_state = 9, .external_lex_state = 2}, - [2189] = {.lex_state = 1, .external_lex_state = 4}, + [2189] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2196] = {.lex_state = 1, .external_lex_state = 4}, [2197] = {.lex_state = 13, .external_lex_state = 6}, - [2198] = {.lex_state = 13, .external_lex_state = 7}, + [2198] = {.lex_state = 13, .external_lex_state = 6}, [2199] = {.lex_state = 13, .external_lex_state = 7}, [2200] = {.lex_state = 13, .external_lex_state = 6}, - [2201] = {.lex_state = 13, .external_lex_state = 7}, + [2201] = {.lex_state = 1, .external_lex_state = 4}, [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 = 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}, + [2203] = {.lex_state = 13, .external_lex_state = 6}, + [2204] = {.lex_state = 11, .external_lex_state = 5}, + [2205] = {.lex_state = 1, .external_lex_state = 4}, + [2206] = {.lex_state = 1, .external_lex_state = 4}, + [2207] = {.lex_state = 13, .external_lex_state = 6}, + [2208] = {.lex_state = 1, .external_lex_state = 4}, + [2209] = {.lex_state = 13, .external_lex_state = 7}, + [2210] = {.lex_state = 13, .external_lex_state = 6}, + [2211] = {.lex_state = 1, .external_lex_state = 4}, + [2212] = {.lex_state = 1, .external_lex_state = 4}, + [2213] = {.lex_state = 13, .external_lex_state = 7}, + [2214] = {.lex_state = 13, .external_lex_state = 7}, + [2215] = {.lex_state = 13, .external_lex_state = 7}, + [2216] = {.lex_state = 1, .external_lex_state = 4}, + [2217] = {.lex_state = 13, .external_lex_state = 6}, + [2218] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [2220] = {.lex_state = 13, .external_lex_state = 7}, + [2221] = {.lex_state = 11, .external_lex_state = 5}, + [2222] = {.lex_state = 13, .external_lex_state = 7}, + [2223] = {.lex_state = 13, .external_lex_state = 7}, + [2224] = {.lex_state = 13, .external_lex_state = 6}, + [2225] = {.lex_state = 13, .external_lex_state = 7}, [2226] = {.lex_state = 13, .external_lex_state = 7}, - [2227] = {.lex_state = 13, .external_lex_state = 6}, + [2227] = {.lex_state = 13, .external_lex_state = 7}, [2228] = {.lex_state = 13, .external_lex_state = 7}, - [2229] = {.lex_state = 13, .external_lex_state = 6}, + [2229] = {.lex_state = 13, .external_lex_state = 7}, [2230] = {.lex_state = 13, .external_lex_state = 7}, - [2231] = {.lex_state = 1, .external_lex_state = 4}, + [2231] = {.lex_state = 13, .external_lex_state = 7}, [2232] = {.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 = 7}, + [2234] = {.lex_state = 13, .external_lex_state = 6}, + [2235] = {.lex_state = 13, .external_lex_state = 6}, [2236] = {.lex_state = 13, .external_lex_state = 7}, - [2237] = {.lex_state = 1, .external_lex_state = 4}, - [2238] = {.lex_state = 1, .external_lex_state = 4}, + [2237] = {.lex_state = 13, .external_lex_state = 6}, + [2238] = {.lex_state = 13, .external_lex_state = 7}, [2239] = {.lex_state = 13, .external_lex_state = 7}, - [2240] = {.lex_state = 13, .external_lex_state = 7}, - [2241] = {.lex_state = 1, .external_lex_state = 4}, - [2242] = {.lex_state = 13, .external_lex_state = 6}, + [2240] = {.lex_state = 1, .external_lex_state = 4}, + [2241] = {.lex_state = 13, .external_lex_state = 7}, + [2242] = {.lex_state = 13, .external_lex_state = 7}, [2243] = {.lex_state = 13, .external_lex_state = 7}, - [2244] = {.lex_state = 1, .external_lex_state = 4}, + [2244] = {.lex_state = 13, .external_lex_state = 6}, [2245] = {.lex_state = 13, .external_lex_state = 7}, - [2246] = {.lex_state = 13, .external_lex_state = 7}, + [2246] = {.lex_state = 13, .external_lex_state = 6}, [2247] = {.lex_state = 13, .external_lex_state = 6}, [2248] = {.lex_state = 13, .external_lex_state = 6}, - [2249] = {.lex_state = 1, .external_lex_state = 3}, + [2249] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2251] = {.lex_state = 2, .external_lex_state = 4}, + [2252] = {.lex_state = 13, .external_lex_state = 6}, + [2253] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2256] = {.lex_state = 13, .external_lex_state = 7}, + [2257] = {.lex_state = 13, .external_lex_state = 6}, + [2258] = {.lex_state = 13, .external_lex_state = 7}, [2259] = {.lex_state = 13, .external_lex_state = 7}, - [2260] = {.lex_state = 13, .external_lex_state = 7}, - [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}, + [2260] = {.lex_state = 13, .external_lex_state = 6}, + [2261] = {.lex_state = 13, .external_lex_state = 6}, + [2262] = {.lex_state = 13, .external_lex_state = 6}, + [2263] = {.lex_state = 13, .external_lex_state = 7}, + [2264] = {.lex_state = 13, .external_lex_state = 7}, + [2265] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2267] = {.lex_state = 13, .external_lex_state = 7}, + [2268] = {.lex_state = 13, .external_lex_state = 7}, + [2269] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2273] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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 = 2, .external_lex_state = 4}, - [2282] = {.lex_state = 13, .external_lex_state = 7}, - [2283] = {.lex_state = 11, .external_lex_state = 5}, - [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}, + [2276] = {.lex_state = 2, .external_lex_state = 4}, + [2277] = {.lex_state = 2, .external_lex_state = 4}, + [2278] = {.lex_state = 13, .external_lex_state = 7}, + [2279] = {.lex_state = 2, .external_lex_state = 4}, + [2280] = {.lex_state = 2, .external_lex_state = 4}, + [2281] = {.lex_state = 13, .external_lex_state = 7}, + [2282] = {.lex_state = 13, .external_lex_state = 6}, + [2283] = {.lex_state = 2, .external_lex_state = 4}, + [2284] = {.lex_state = 13, .external_lex_state = 7}, + [2285] = {.lex_state = 13, .external_lex_state = 7}, + [2286] = {.lex_state = 11, .external_lex_state = 5}, + [2287] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2289] = {.lex_state = 13, .external_lex_state = 7}, + [2290] = {.lex_state = 13, .external_lex_state = 6}, + [2291] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2293] = {.lex_state = 11, .external_lex_state = 5}, + [2294] = {.lex_state = 2, .external_lex_state = 4}, + [2295] = {.lex_state = 13, .external_lex_state = 6}, [2296] = {.lex_state = 13, .external_lex_state = 6}, - [2297] = {.lex_state = 2, .external_lex_state = 4}, - [2298] = {.lex_state = 13, .external_lex_state = 6}, + [2297] = {.lex_state = 13, .external_lex_state = 7}, + [2298] = {.lex_state = 13, .external_lex_state = 7}, [2299] = {.lex_state = 13, .external_lex_state = 6}, - [2300] = {.lex_state = 13, .external_lex_state = 7}, + [2300] = {.lex_state = 2, .external_lex_state = 4}, [2301] = {.lex_state = 13, .external_lex_state = 6}, - [2302] = {.lex_state = 13, .external_lex_state = 6}, + [2302] = {.lex_state = 11, .external_lex_state = 5}, [2303] = {.lex_state = 13, .external_lex_state = 6}, - [2304] = {.lex_state = 11, .external_lex_state = 5}, + [2304] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 7}, - [2311] = {.lex_state = 13, .external_lex_state = 6}, + [2306] = {.lex_state = 13, .external_lex_state = 7}, + [2307] = {.lex_state = 13, .external_lex_state = 6}, + [2308] = {.lex_state = 1, .external_lex_state = 3}, + [2309] = {.lex_state = 1, .external_lex_state = 3}, + [2310] = {.lex_state = 13, .external_lex_state = 6}, + [2311] = {.lex_state = 11, .external_lex_state = 5}, [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}, + [2313] = {.lex_state = 11, .external_lex_state = 5}, + [2314] = {.lex_state = 13, .external_lex_state = 6}, + [2315] = {.lex_state = 2, .external_lex_state = 4}, [2316] = {.lex_state = 11, .external_lex_state = 5}, - [2317] = {.lex_state = 1, .external_lex_state = 4}, + [2317] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 6}, + [2321] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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}, + [2328] = {.lex_state = 1, .external_lex_state = 4}, + [2329] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 6}, + [2333] = {.lex_state = 11, .external_lex_state = 5}, + [2334] = {.lex_state = 11, .external_lex_state = 5}, + [2335] = {.lex_state = 1, .external_lex_state = 4}, + [2336] = {.lex_state = 1, .external_lex_state = 4}, + [2337] = {.lex_state = 13, .external_lex_state = 7}, [2338] = {.lex_state = 13, .external_lex_state = 6}, - [2339] = {.lex_state = 13, .external_lex_state = 6}, + [2339] = {.lex_state = 13, .external_lex_state = 7}, [2340] = {.lex_state = 13, .external_lex_state = 6}, - [2341] = {.lex_state = 13, .external_lex_state = 7}, + [2341] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2343] = {.lex_state = 1, .external_lex_state = 4}, + [2344] = {.lex_state = 13, .external_lex_state = 6}, + [2345] = {.lex_state = 13, .external_lex_state = 6}, [2346] = {.lex_state = 13, .external_lex_state = 7}, - [2347] = {.lex_state = 13, .external_lex_state = 7}, - [2348] = {.lex_state = 13, .external_lex_state = 6}, - [2349] = {.lex_state = 1, .external_lex_state = 4}, + [2347] = {.lex_state = 1, .external_lex_state = 4}, + [2348] = {.lex_state = 1, .external_lex_state = 4}, + [2349] = {.lex_state = 13, .external_lex_state = 7}, [2350] = {.lex_state = 13, .external_lex_state = 7}, - [2351] = {.lex_state = 13, .external_lex_state = 6}, + [2351] = {.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 = 1, .external_lex_state = 4}, - [2357] = {.lex_state = 13, .external_lex_state = 7}, - [2358] = {.lex_state = 13, .external_lex_state = 6}, + [2354] = {.lex_state = 13, .external_lex_state = 6}, + [2355] = {.lex_state = 1, .external_lex_state = 4}, + [2356] = {.lex_state = 13, .external_lex_state = 7}, + [2357] = {.lex_state = 11, .external_lex_state = 5}, + [2358] = {.lex_state = 1, .external_lex_state = 4}, [2359] = {.lex_state = 13, .external_lex_state = 7}, - [2360] = {.lex_state = 13, .external_lex_state = 6}, + [2360] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2363] = {.lex_state = 13, .external_lex_state = 7}, + [2364] = {.lex_state = 13, .external_lex_state = 6}, [2365] = {.lex_state = 13, .external_lex_state = 7}, [2366] = {.lex_state = 13, .external_lex_state = 6}, - [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}, + [2367] = {.lex_state = 13, .external_lex_state = 6}, + [2368] = {.lex_state = 13, .external_lex_state = 6}, + [2369] = {.lex_state = 13, .external_lex_state = 6}, + [2370] = {.lex_state = 13, .external_lex_state = 6}, [2371] = {.lex_state = 13, .external_lex_state = 6}, [2372] = {.lex_state = 13, .external_lex_state = 6}, - [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}, + [2373] = {.lex_state = 13, .external_lex_state = 7}, + [2374] = {.lex_state = 13, .external_lex_state = 6}, + [2375] = {.lex_state = 13, .external_lex_state = 6}, + [2376] = {.lex_state = 13, .external_lex_state = 7}, [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 = 11, .external_lex_state = 5}, - [2381] = {.lex_state = 13, .external_lex_state = 6}, + [2378] = {.lex_state = 13, .external_lex_state = 6}, + [2379] = {.lex_state = 13, .external_lex_state = 6}, + [2380] = {.lex_state = 13, .external_lex_state = 6}, + [2381] = {.lex_state = 1, .external_lex_state = 4}, [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 = 1, .external_lex_state = 4}, - [2386] = {.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}, + [2384] = {.lex_state = 13, .external_lex_state = 7}, + [2385] = {.lex_state = 13, .external_lex_state = 6}, + [2386] = {.lex_state = 13, .external_lex_state = 7}, + [2387] = {.lex_state = 13, .external_lex_state = 7}, + [2388] = {.lex_state = 13, .external_lex_state = 6}, + [2389] = {.lex_state = 13, .external_lex_state = 7}, + [2390] = {.lex_state = 11, .external_lex_state = 5}, [2391] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2396] = {.lex_state = 13, .external_lex_state = 6}, + [2397] = {.lex_state = 11, .external_lex_state = 5}, [2398] = {.lex_state = 13, .external_lex_state = 7}, [2399] = {.lex_state = 13, .external_lex_state = 6}, - [2400] = {.lex_state = 11, .external_lex_state = 5}, + [2400] = {.lex_state = 13, .external_lex_state = 6}, [2401] = {.lex_state = 13, .external_lex_state = 7}, - [2402] = {.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 = 6}, + [2402] = {.lex_state = 13, .external_lex_state = 7}, + [2403] = {.lex_state = 13, .external_lex_state = 6}, + [2404] = {.lex_state = 13, .external_lex_state = 6}, + [2405] = {.lex_state = 11, .external_lex_state = 5}, [2406] = {.lex_state = 13, .external_lex_state = 7}, - [2407] = {.lex_state = 13, .external_lex_state = 7}, + [2407] = {.lex_state = 13, .external_lex_state = 6}, [2408] = {.lex_state = 13, .external_lex_state = 7}, - [2409] = {.lex_state = 13, .external_lex_state = 6}, - [2410] = {.lex_state = 13, .external_lex_state = 7}, + [2409] = {.lex_state = 13, .external_lex_state = 7}, + [2410] = {.lex_state = 11, .external_lex_state = 5}, [2411] = {.lex_state = 13, .external_lex_state = 7}, [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 = 11, .external_lex_state = 5}, - [2419] = {.lex_state = 13, .external_lex_state = 7}, + [2415] = {.lex_state = 13, .external_lex_state = 7}, + [2416] = {.lex_state = 13, .external_lex_state = 7}, + [2417] = {.lex_state = 11, .external_lex_state = 5}, + [2418] = {.lex_state = 13, .external_lex_state = 6}, + [2419] = {.lex_state = 13, .external_lex_state = 6}, [2420] = {.lex_state = 13, .external_lex_state = 6}, - [2421] = {.lex_state = 13, .external_lex_state = 6}, + [2421] = {.lex_state = 13, .external_lex_state = 7}, [2422] = {.lex_state = 13, .external_lex_state = 6}, [2423] = {.lex_state = 13, .external_lex_state = 7}, [2424] = {.lex_state = 13, .external_lex_state = 6}, @@ -25910,316 +22548,316 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2432] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2434] = {.lex_state = 13, .external_lex_state = 6}, + [2435] = {.lex_state = 13, .external_lex_state = 7}, + [2436] = {.lex_state = 13, .external_lex_state = 6}, [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 = 6}, + [2439] = {.lex_state = 13, .external_lex_state = 6}, + [2440] = {.lex_state = 13, .external_lex_state = 7}, [2441] = {.lex_state = 13, .external_lex_state = 6}, [2442] = {.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}, + [2445] = {.lex_state = 13, .external_lex_state = 6}, [2446] = {.lex_state = 13, .external_lex_state = 6}, [2447] = {.lex_state = 13, .external_lex_state = 6}, - [2448] = {.lex_state = 13, .external_lex_state = 7}, + [2448] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2453] = {.lex_state = 13, .external_lex_state = 7}, + [2454] = {.lex_state = 13, .external_lex_state = 7}, [2455] = {.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 = 13, .external_lex_state = 7}, + [2456] = {.lex_state = 13, .external_lex_state = 7}, + [2457] = {.lex_state = 13, .external_lex_state = 7}, + [2458] = {.lex_state = 13, .external_lex_state = 7}, + [2459] = {.lex_state = 13, .external_lex_state = 6}, [2460] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2463] = {.lex_state = 13, .external_lex_state = 7}, + [2464] = {.lex_state = 13, .external_lex_state = 6}, [2465] = {.lex_state = 13, .external_lex_state = 6}, - [2466] = {.lex_state = 13, .external_lex_state = 7}, - [2467] = {.lex_state = 13, .external_lex_state = 6}, + [2466] = {.lex_state = 13, .external_lex_state = 6}, + [2467] = {.lex_state = 13, .external_lex_state = 7}, [2468] = {.lex_state = 13, .external_lex_state = 7}, [2469] = {.lex_state = 13, .external_lex_state = 7}, - [2470] = {.lex_state = 13, .external_lex_state = 7}, + [2470] = {.lex_state = 13, .external_lex_state = 6}, [2471] = {.lex_state = 13, .external_lex_state = 6}, [2472] = {.lex_state = 13, .external_lex_state = 7}, - [2473] = {.lex_state = 13, .external_lex_state = 7}, + [2473] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [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 = 6}, - [2479] = {.lex_state = 13, .external_lex_state = 6}, + [2479] = {.lex_state = 13, .external_lex_state = 7}, [2480] = {.lex_state = 13, .external_lex_state = 6}, - [2481] = {.lex_state = 13, .external_lex_state = 7}, + [2481] = {.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 = 7}, + [2484] = {.lex_state = 13, .external_lex_state = 6}, [2485] = {.lex_state = 13, .external_lex_state = 7}, - [2486] = {.lex_state = 13, .external_lex_state = 6}, + [2486] = {.lex_state = 13, .external_lex_state = 7}, [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 = 7}, + [2490] = {.lex_state = 13, .external_lex_state = 6}, [2491] = {.lex_state = 13, .external_lex_state = 6}, - [2492] = {.lex_state = 13, .external_lex_state = 7}, + [2492] = {.lex_state = 13, .external_lex_state = 6}, [2493] = {.lex_state = 13, .external_lex_state = 6}, - [2494] = {.lex_state = 13, .external_lex_state = 6}, - [2495] = {.lex_state = 13, .external_lex_state = 7}, - [2496] = {.lex_state = 13, .external_lex_state = 7}, + [2494] = {.lex_state = 13, .external_lex_state = 7}, + [2495] = {.lex_state = 13, .external_lex_state = 6}, + [2496] = {.lex_state = 13, .external_lex_state = 6}, [2497] = {.lex_state = 13, .external_lex_state = 6}, [2498] = {.lex_state = 13, .external_lex_state = 7}, - [2499] = {.lex_state = 13, .external_lex_state = 7}, + [2499] = {.lex_state = 13, .external_lex_state = 6}, [2500] = {.lex_state = 13, .external_lex_state = 6}, [2501] = {.lex_state = 13, .external_lex_state = 6}, - [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 = 7}, - [2506] = {.lex_state = 13, .external_lex_state = 7}, + [2502] = {.lex_state = 13, .external_lex_state = 7}, + [2503] = {.lex_state = 13, .external_lex_state = 7}, + [2504] = {.lex_state = 13, .external_lex_state = 7}, + [2505] = {.lex_state = 13, .external_lex_state = 6}, + [2506] = {.lex_state = 13, .external_lex_state = 6}, [2507] = {.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 = 7}, [2511] = {.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}, + [2512] = {.lex_state = 13, .external_lex_state = 7}, + [2513] = {.lex_state = 13, .external_lex_state = 6}, + [2514] = {.lex_state = 13, .external_lex_state = 7}, [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 = 6}, - [2520] = {.lex_state = 13, .external_lex_state = 7}, + [2516] = {.lex_state = 13, .external_lex_state = 7}, + [2517] = {.lex_state = 13, .external_lex_state = 7}, + [2518] = {.lex_state = 13, .external_lex_state = 7}, + [2519] = {.lex_state = 13, .external_lex_state = 7}, + [2520] = {.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 = 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}, + [2526] = {.lex_state = 13, .external_lex_state = 6}, [2527] = {.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}, + [2529] = {.lex_state = 13, .external_lex_state = 7}, + [2530] = {.lex_state = 13, .external_lex_state = 7}, + [2531] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2534] = {.lex_state = 13, .external_lex_state = 7}, + [2535] = {.lex_state = 13, .external_lex_state = 6}, + [2536] = {.lex_state = 11, .external_lex_state = 5}, [2537] = {.lex_state = 11, .external_lex_state = 5}, - [2538] = {.lex_state = 13, .external_lex_state = 6}, + [2538] = {.lex_state = 13, .external_lex_state = 7}, [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 = 7}, - [2543] = {.lex_state = 13, .external_lex_state = 6}, - [2544] = {.lex_state = 13, .external_lex_state = 6}, + [2540] = {.lex_state = 13, .external_lex_state = 7}, + [2541] = {.lex_state = 13, .external_lex_state = 7}, + [2542] = {.lex_state = 13, .external_lex_state = 6}, + [2543] = {.lex_state = 13, .external_lex_state = 7}, + [2544] = {.lex_state = 13, .external_lex_state = 7}, [2545] = {.lex_state = 13, .external_lex_state = 7}, [2546] = {.lex_state = 13, .external_lex_state = 7}, - [2547] = {.lex_state = 13, .external_lex_state = 7}, - [2548] = {.lex_state = 13, .external_lex_state = 7}, + [2547] = {.lex_state = 13, .external_lex_state = 6}, + [2548] = {.lex_state = 13, .external_lex_state = 6}, [2549] = {.lex_state = 13, .external_lex_state = 6}, - [2550] = {.lex_state = 13, .external_lex_state = 7}, + [2550] = {.lex_state = 13, .external_lex_state = 6}, [2551] = {.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}, + [2552] = {.lex_state = 13, .external_lex_state = 7}, + [2553] = {.lex_state = 13, .external_lex_state = 7}, + [2554] = {.lex_state = 13, .external_lex_state = 7}, + [2555] = {.lex_state = 11, .external_lex_state = 5}, [2556] = {.lex_state = 13, .external_lex_state = 7}, [2557] = {.lex_state = 13, .external_lex_state = 7}, - [2558] = {.lex_state = 13, .external_lex_state = 7}, - [2559] = {.lex_state = 13, .external_lex_state = 7}, - [2560] = {.lex_state = 11, .external_lex_state = 5}, + [2558] = {.lex_state = 13, .external_lex_state = 6}, + [2559] = {.lex_state = 13, .external_lex_state = 6}, + [2560] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2564] = {.lex_state = 13, .external_lex_state = 6}, + [2565] = {.lex_state = 13, .external_lex_state = 6}, + [2566] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2568] = {.lex_state = 11, .external_lex_state = 5}, + [2569] = {.lex_state = 13, .external_lex_state = 7}, + [2570] = {.lex_state = 13, .external_lex_state = 6}, [2571] = {.lex_state = 13, .external_lex_state = 6}, [2572] = {.lex_state = 13, .external_lex_state = 6}, - [2573] = {.lex_state = 13, .external_lex_state = 7}, + [2573] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2578] = {.lex_state = 13, .external_lex_state = 6}, + [2579] = {.lex_state = 13, .external_lex_state = 7}, [2580] = {.lex_state = 13, .external_lex_state = 6}, - [2581] = {.lex_state = 13, .external_lex_state = 6}, + [2581] = {.lex_state = 13, .external_lex_state = 7}, [2582] = {.lex_state = 13, .external_lex_state = 7}, - [2583] = {.lex_state = 13, .external_lex_state = 6}, + [2583] = {.lex_state = 11, .external_lex_state = 5}, [2584] = {.lex_state = 13, .external_lex_state = 7}, - [2585] = {.lex_state = 13, .external_lex_state = 7}, + [2585] = {.lex_state = 13, .external_lex_state = 6}, [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 = 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}, + [2589] = {.lex_state = 13, .external_lex_state = 7}, + [2590] = {.lex_state = 13, .external_lex_state = 6}, + [2591] = {.lex_state = 13, .external_lex_state = 7}, + [2592] = {.lex_state = 13, .external_lex_state = 6}, [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 = 6}, + [2595] = {.lex_state = 11, .external_lex_state = 5}, + [2596] = {.lex_state = 13, .external_lex_state = 7}, [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 = 7}, [2601] = {.lex_state = 13, .external_lex_state = 7}, - [2602] = {.lex_state = 13, .external_lex_state = 7}, + [2602] = {.lex_state = 13, .external_lex_state = 6}, [2603] = {.lex_state = 13, .external_lex_state = 6}, - [2604] = {.lex_state = 13, .external_lex_state = 7}, + [2604] = {.lex_state = 13, .external_lex_state = 6}, [2605] = {.lex_state = 13, .external_lex_state = 6}, [2606] = {.lex_state = 13, .external_lex_state = 6}, [2607] = {.lex_state = 13, .external_lex_state = 6}, - [2608] = {.lex_state = 11, .external_lex_state = 5}, + [2608] = {.lex_state = 13, .external_lex_state = 7}, [2609] = {.lex_state = 13, .external_lex_state = 6}, - [2610] = {.lex_state = 13, .external_lex_state = 6}, + [2610] = {.lex_state = 13, .external_lex_state = 7}, [2611] = {.lex_state = 13, .external_lex_state = 7}, - [2612] = {.lex_state = 11, .external_lex_state = 5}, + [2612] = {.lex_state = 13, .external_lex_state = 6}, [2613] = {.lex_state = 13, .external_lex_state = 7}, - [2614] = {.lex_state = 13, .external_lex_state = 6}, - [2615] = {.lex_state = 13, .external_lex_state = 6}, + [2614] = {.lex_state = 11, .external_lex_state = 5}, + [2615] = {.lex_state = 13, .external_lex_state = 7}, [2616] = {.lex_state = 13, .external_lex_state = 7}, - [2617] = {.lex_state = 13, .external_lex_state = 6}, + [2617] = {.lex_state = 13, .external_lex_state = 7}, [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 = 11, .external_lex_state = 5}, + [2619] = {.lex_state = 13, .external_lex_state = 7}, + [2620] = {.lex_state = 13, .external_lex_state = 7}, + [2621] = {.lex_state = 13, .external_lex_state = 7}, [2622] = {.lex_state = 13, .external_lex_state = 7}, [2623] = {.lex_state = 13, .external_lex_state = 6}, - [2624] = {.lex_state = 11, .external_lex_state = 5}, - [2625] = {.lex_state = 13, .external_lex_state = 7}, + [2624] = {.lex_state = 13, .external_lex_state = 7}, + [2625] = {.lex_state = 11, .external_lex_state = 5}, [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 = 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}, + [2632] = {.lex_state = 11, .external_lex_state = 5}, [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}, + [2637] = {.lex_state = 11, .external_lex_state = 5}, [2638] = {.lex_state = 13, .external_lex_state = 7}, [2639] = {.lex_state = 13, .external_lex_state = 7}, - [2640] = {.lex_state = 13, .external_lex_state = 7}, - [2641] = {.lex_state = 13, .external_lex_state = 7}, + [2640] = {.lex_state = 13, .external_lex_state = 6}, + [2641] = {.lex_state = 11, .external_lex_state = 5}, [2642] = {.lex_state = 13, .external_lex_state = 7}, - [2643] = {.lex_state = 13, .external_lex_state = 6}, + [2643] = {.lex_state = 13, .external_lex_state = 7}, [2644] = {.lex_state = 13, .external_lex_state = 7}, - [2645] = {.lex_state = 13, .external_lex_state = 6}, + [2645] = {.lex_state = 13, .external_lex_state = 7}, [2646] = {.lex_state = 13, .external_lex_state = 7}, [2647] = {.lex_state = 13, .external_lex_state = 7}, [2648] = {.lex_state = 13, .external_lex_state = 7}, [2649] = {.lex_state = 13, .external_lex_state = 7}, - [2650] = {.lex_state = 13, .external_lex_state = 7}, + [2650] = {.lex_state = 11, .external_lex_state = 5}, [2651] = {.lex_state = 13, .external_lex_state = 7}, - [2652] = {.lex_state = 13, .external_lex_state = 6}, - [2653] = {.lex_state = 13, .external_lex_state = 7}, + [2652] = {.lex_state = 13, .external_lex_state = 7}, + [2653] = {.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 = 13, .external_lex_state = 6}, - [2661] = {.lex_state = 13, .external_lex_state = 6}, - [2662] = {.lex_state = 13, .external_lex_state = 7}, + [2657] = {.lex_state = 13, .external_lex_state = 6}, + [2658] = {.lex_state = 13, .external_lex_state = 6}, + [2659] = {.lex_state = 13, .external_lex_state = 6}, + [2660] = {.lex_state = 13, .external_lex_state = 7}, + [2661] = {.lex_state = 11, .external_lex_state = 5}, + [2662] = {.lex_state = 13, .external_lex_state = 6}, [2663] = {.lex_state = 13, .external_lex_state = 7}, - [2664] = {.lex_state = 13, .external_lex_state = 6}, + [2664] = {.lex_state = 13, .external_lex_state = 7}, [2665] = {.lex_state = 13, .external_lex_state = 7}, [2666] = {.lex_state = 13, .external_lex_state = 7}, - [2667] = {.lex_state = 13, .external_lex_state = 7}, + [2667] = {.lex_state = 11, .external_lex_state = 5}, [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 = 6}, + [2669] = {.lex_state = 13, .external_lex_state = 6}, + [2670] = {.lex_state = 13, .external_lex_state = 6}, + [2671] = {.lex_state = 13, .external_lex_state = 7}, [2672] = {.lex_state = 13, .external_lex_state = 7}, [2673] = {.lex_state = 13, .external_lex_state = 7}, - [2674] = {.lex_state = 11, .external_lex_state = 5}, + [2674] = {.lex_state = 13, .external_lex_state = 7}, [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 = 11, .external_lex_state = 5}, - [2679] = {.lex_state = 11, .external_lex_state = 5}, + [2677] = {.lex_state = 13, .external_lex_state = 6}, + [2678] = {.lex_state = 13, .external_lex_state = 7}, + [2679] = {.lex_state = 13, .external_lex_state = 7}, [2680] = {.lex_state = 13, .external_lex_state = 6}, [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 = 6}, + [2683] = {.lex_state = 13, .external_lex_state = 6}, + [2684] = {.lex_state = 13, .external_lex_state = 7}, + [2685] = {.lex_state = 13, .external_lex_state = 7}, + [2686] = {.lex_state = 13, .external_lex_state = 7}, [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 = 6}, + [2689] = {.lex_state = 13, .external_lex_state = 7}, + [2690] = {.lex_state = 13, .external_lex_state = 7}, [2691] = {.lex_state = 13, .external_lex_state = 7}, [2692] = {.lex_state = 13, .external_lex_state = 6}, [2693] = {.lex_state = 13, .external_lex_state = 6}, [2694] = {.lex_state = 13, .external_lex_state = 6}, - [2695] = {.lex_state = 13, .external_lex_state = 7}, + [2695] = {.lex_state = 13, .external_lex_state = 6}, [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 = 6}, [2701] = {.lex_state = 13, .external_lex_state = 7}, - [2702] = {.lex_state = 13, .external_lex_state = 6}, + [2702] = {.lex_state = 13, .external_lex_state = 7}, [2703] = {.lex_state = 13, .external_lex_state = 7}, [2704] = {.lex_state = 13, .external_lex_state = 7}, [2705] = {.lex_state = 13, .external_lex_state = 6}, - [2706] = {.lex_state = 13, .external_lex_state = 7}, + [2706] = {.lex_state = 13, .external_lex_state = 6}, [2707] = {.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 = 6}, + [2709] = {.lex_state = 13, .external_lex_state = 6}, + [2710] = {.lex_state = 13, .external_lex_state = 6}, + [2711] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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}, + [2717] = {.lex_state = 13, .external_lex_state = 7}, + [2718] = {.lex_state = 13, .external_lex_state = 6}, + [2719] = {.lex_state = 13, .external_lex_state = 7}, + [2720] = {.lex_state = 13, .external_lex_state = 7}, + [2721] = {.lex_state = 13, .external_lex_state = 6}, [2722] = {.lex_state = 13, .external_lex_state = 6}, - [2723] = {.lex_state = 13, .external_lex_state = 7}, - [2724] = {.lex_state = 13, .external_lex_state = 6}, + [2723] = {.lex_state = 13, .external_lex_state = 6}, + [2724] = {.lex_state = 13, .external_lex_state = 7}, [2725] = {.lex_state = 13, .external_lex_state = 7}, - [2726] = {.lex_state = 13, .external_lex_state = 7}, - [2727] = {.lex_state = 13, .external_lex_state = 7}, - [2728] = {.lex_state = 13, .external_lex_state = 7}, + [2726] = {.lex_state = 13, .external_lex_state = 6}, + [2727] = {.lex_state = 13, .external_lex_state = 6}, + [2728] = {.lex_state = 13, .external_lex_state = 6}, [2729] = {.lex_state = 13, .external_lex_state = 6}, - [2730] = {.lex_state = 13, .external_lex_state = 6}, - [2731] = {.lex_state = 13, .external_lex_state = 6}, + [2730] = {.lex_state = 13, .external_lex_state = 7}, + [2731] = {.lex_state = 13, .external_lex_state = 7}, [2732] = {.lex_state = 13, .external_lex_state = 6}, - [2733] = {.lex_state = 13, .external_lex_state = 7}, - [2734] = {.lex_state = 13, .external_lex_state = 7}, + [2733] = {.lex_state = 13, .external_lex_state = 6}, + [2734] = {.lex_state = 13, .external_lex_state = 6}, [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 = 6}, + [2738] = {.lex_state = 2, .external_lex_state = 4}, [2739] = {.lex_state = 13, .external_lex_state = 6}, [2740] = {.lex_state = 13, .external_lex_state = 6}, - [2741] = {.lex_state = 2, .external_lex_state = 4}, + [2741] = {.lex_state = 13, .external_lex_state = 6}, [2742] = {.lex_state = 13, .external_lex_state = 6}, [2743] = {.lex_state = 13, .external_lex_state = 6}, [2744] = {.lex_state = 13, .external_lex_state = 6}, @@ -26230,91 +22868,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2752] = {.lex_state = 2, .external_lex_state = 4}, + [2753] = {.lex_state = 13, .external_lex_state = 6}, [2754] = {.lex_state = 13, .external_lex_state = 7}, [2755] = {.lex_state = 13, .external_lex_state = 7}, [2756] = {.lex_state = 13, .external_lex_state = 7}, [2757] = {.lex_state = 13, .external_lex_state = 7}, - [2758] = {.lex_state = 13, .external_lex_state = 7}, + [2758] = {.lex_state = 2, .external_lex_state = 4}, [2759] = {.lex_state = 13, .external_lex_state = 7}, [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 = 2, .external_lex_state = 4}, + [2763] = {.lex_state = 13, .external_lex_state = 7}, [2764] = {.lex_state = 13, .external_lex_state = 7}, [2765] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2767] = {.lex_state = 13, .external_lex_state = 7}, + [2768] = {.lex_state = 13, .external_lex_state = 7}, + [2769] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2772] = {.lex_state = 13, .external_lex_state = 6}, + [2773] = {.lex_state = 13, .external_lex_state = 7}, + [2774] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2778] = {.lex_state = 2, .external_lex_state = 4}, + [2779] = {.lex_state = 2, .external_lex_state = 4}, [2780] = {.lex_state = 13, .external_lex_state = 7}, - [2781] = {.lex_state = 13, .external_lex_state = 7}, - [2782] = {.lex_state = 13, .external_lex_state = 7}, + [2781] = {.lex_state = 13, .external_lex_state = 6}, + [2782] = {.lex_state = 2, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, + [2788] = {.lex_state = 2, .external_lex_state = 4}, + [2789] = {.lex_state = 13, .external_lex_state = 7}, [2790] = {.lex_state = 13, .external_lex_state = 7}, - [2791] = {.lex_state = 2, .external_lex_state = 4}, + [2791] = {.lex_state = 13, .external_lex_state = 7}, [2792] = {.lex_state = 13, .external_lex_state = 7}, - [2793] = {.lex_state = 13, .external_lex_state = 7}, + [2793] = {.lex_state = 2, .external_lex_state = 4}, [2794] = {.lex_state = 13, .external_lex_state = 7}, - [2795] = {.lex_state = 13, .external_lex_state = 6}, - [2796] = {.lex_state = 2, .external_lex_state = 4}, + [2795] = {.lex_state = 13, .external_lex_state = 7}, + [2796] = {.lex_state = 13, .external_lex_state = 7}, [2797] = {.lex_state = 13, .external_lex_state = 7}, - [2798] = {.lex_state = 2, .external_lex_state = 4}, + [2798] = {.lex_state = 13, .external_lex_state = 7}, [2799] = {.lex_state = 13, .external_lex_state = 7}, - [2800] = {.lex_state = 13, .external_lex_state = 7}, + [2800] = {.lex_state = 13, .external_lex_state = 6}, [2801] = {.lex_state = 13, .external_lex_state = 7}, - [2802] = {.lex_state = 13, .external_lex_state = 7}, + [2802] = {.lex_state = 2, .external_lex_state = 4}, [2803] = {.lex_state = 2, .external_lex_state = 4}, - [2804] = {.lex_state = 13, .external_lex_state = 7}, + [2804] = {.lex_state = 2, .external_lex_state = 4}, [2805] = {.lex_state = 2, .external_lex_state = 4}, - [2806] = {.lex_state = 13, .external_lex_state = 7}, - [2807] = {.lex_state = 2, .external_lex_state = 4}, + [2806] = {.lex_state = 2, .external_lex_state = 4}, + [2807] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [2809] = {.lex_state = 13, .external_lex_state = 7}, + [2810] = {.lex_state = 13, .external_lex_state = 7}, + [2811] = {.lex_state = 13, .external_lex_state = 6}, + [2812] = {.lex_state = 13, .external_lex_state = 6}, + [2813] = {.lex_state = 2, .external_lex_state = 3}, + [2814] = {.lex_state = 13, .external_lex_state = 6}, + [2815] = {.lex_state = 2, .external_lex_state = 4}, + [2816] = {.lex_state = 13, .external_lex_state = 6}, + [2817] = {.lex_state = 11, .external_lex_state = 5}, [2818] = {.lex_state = 2, .external_lex_state = 4}, - [2819] = {.lex_state = 2, .external_lex_state = 4}, + [2819] = {.lex_state = 13, .external_lex_state = 6}, [2820] = {.lex_state = 13, .external_lex_state = 6}, - [2821] = {.lex_state = 2, .external_lex_state = 4}, - [2822] = {.lex_state = 13, .external_lex_state = 6}, + [2821] = {.lex_state = 13, .external_lex_state = 6}, + [2822] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [2825] = {.lex_state = 13, .external_lex_state = 6}, + [2826] = {.lex_state = 13, .external_lex_state = 6}, + [2827] = {.lex_state = 2, .external_lex_state = 4}, + [2828] = {.lex_state = 2, .external_lex_state = 4}, [2829] = {.lex_state = 13, .external_lex_state = 6}, [2830] = {.lex_state = 2, .external_lex_state = 4}, - [2831] = {.lex_state = 13, .external_lex_state = 6}, + [2831] = {.lex_state = 2, .external_lex_state = 4}, [2832] = {.lex_state = 2, .external_lex_state = 3}, [2833] = {.lex_state = 2, .external_lex_state = 4}, - [2834] = {.lex_state = 13, .external_lex_state = 6}, + [2834] = {.lex_state = 2, .external_lex_state = 3}, [2835] = {.lex_state = 2, .external_lex_state = 4}, - [2836] = {.lex_state = 13, .external_lex_state = 6}, + [2836] = {.lex_state = 2, .external_lex_state = 4}, [2837] = {.lex_state = 2, .external_lex_state = 4}, [2838] = {.lex_state = 2, .external_lex_state = 4}, [2839] = {.lex_state = 2, .external_lex_state = 4}, @@ -26323,258 +22961,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 11, .external_lex_state = 5}, - [2846] = {.lex_state = 2, .external_lex_state = 4}, - [2847] = {.lex_state = 2, .external_lex_state = 4}, + [2845] = {.lex_state = 13, .external_lex_state = 6}, + [2846] = {.lex_state = 13, .external_lex_state = 6}, + [2847] = {.lex_state = 13, .external_lex_state = 6}, [2848] = {.lex_state = 2, .external_lex_state = 4}, - [2849] = {.lex_state = 2, .external_lex_state = 4}, - [2850] = {.lex_state = 2, .external_lex_state = 3}, + [2849] = {.lex_state = 13, .external_lex_state = 6}, + [2850] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2852] = {.lex_state = 13, .external_lex_state = 6}, + [2853] = {.lex_state = 2, .external_lex_state = 4}, + [2854] = {.lex_state = 13, .external_lex_state = 6}, [2855] = {.lex_state = 2, .external_lex_state = 4}, - [2856] = {.lex_state = 13, .external_lex_state = 7}, + [2856] = {.lex_state = 11, .external_lex_state = 5}, [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}, + [2858] = {.lex_state = 2, .external_lex_state = 4}, + [2859] = {.lex_state = 2, .external_lex_state = 4}, + [2860] = {.lex_state = 13, .external_lex_state = 6}, + [2861] = {.lex_state = 2, .external_lex_state = 4}, + [2862] = {.lex_state = 13, .external_lex_state = 6}, [2863] = {.lex_state = 13, .external_lex_state = 6}, - [2864] = {.lex_state = 13, .external_lex_state = 6}, - [2865] = {.lex_state = 13, .external_lex_state = 6}, - [2866] = {.lex_state = 2, .external_lex_state = 4}, + [2864] = {.lex_state = 2, .external_lex_state = 4}, + [2865] = {.lex_state = 2, .external_lex_state = 4}, + [2866] = {.lex_state = 13, .external_lex_state = 6}, [2867] = {.lex_state = 2, .external_lex_state = 4}, - [2868] = {.lex_state = 13, .external_lex_state = 6}, - [2869] = {.lex_state = 13, .external_lex_state = 6}, + [2868] = {.lex_state = 11, .external_lex_state = 5}, + [2869] = {.lex_state = 2, .external_lex_state = 3}, [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}, + [2872] = {.lex_state = 2, .external_lex_state = 4}, + [2873] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2878] = {.lex_state = 2, .external_lex_state = 4}, [2879] = {.lex_state = 13, .external_lex_state = 6}, - [2880] = {.lex_state = 13, .external_lex_state = 6}, - [2881] = {.lex_state = 11, .external_lex_state = 5}, + [2880] = {.lex_state = 2, .external_lex_state = 4}, + [2881] = {.lex_state = 2, .external_lex_state = 4}, [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 = 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}, + [2883] = {.lex_state = 13, .external_lex_state = 7}, + [2884] = {.lex_state = 13, .external_lex_state = 7}, + [2885] = {.lex_state = 13, .external_lex_state = 7}, + [2886] = {.lex_state = 2, .external_lex_state = 4}, + [2887] = {.lex_state = 2, .external_lex_state = 4}, + [2888] = {.lex_state = 13, .external_lex_state = 7}, + [2889] = {.lex_state = 13, .external_lex_state = 7}, + [2890] = {.lex_state = 13, .external_lex_state = 6}, + [2891] = {.lex_state = 11, .external_lex_state = 5}, [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}, + [2894] = {.lex_state = 2, .external_lex_state = 4}, + [2895] = {.lex_state = 11, .external_lex_state = 5}, [2896] = {.lex_state = 2, .external_lex_state = 4}, - [2897] = {.lex_state = 13, .external_lex_state = 6}, - [2898] = {.lex_state = 2, .external_lex_state = 4}, + [2897] = {.lex_state = 2, .external_lex_state = 4}, + [2898] = {.lex_state = 13, .external_lex_state = 6}, [2899] = {.lex_state = 13, .external_lex_state = 6}, - [2900] = {.lex_state = 2, .external_lex_state = 4}, + [2900] = {.lex_state = 13, .external_lex_state = 7}, [2901] = {.lex_state = 2, .external_lex_state = 4}, - [2902] = {.lex_state = 2, .external_lex_state = 4}, - [2903] = {.lex_state = 13, .external_lex_state = 7}, + [2902] = {.lex_state = 13, .external_lex_state = 6}, + [2903] = {.lex_state = 2, .external_lex_state = 4}, [2904] = {.lex_state = 2, .external_lex_state = 4}, - [2905] = {.lex_state = 13, .external_lex_state = 6}, - [2906] = {.lex_state = 13, .external_lex_state = 6}, + [2905] = {.lex_state = 13, .external_lex_state = 7}, + [2906] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, - [2913] = {.lex_state = 13, .external_lex_state = 7}, + [2909] = {.lex_state = 2, .external_lex_state = 4}, + [2910] = {.lex_state = 11, .external_lex_state = 5}, + [2911] = {.lex_state = 13, .external_lex_state = 6}, + [2912] = {.lex_state = 2, .external_lex_state = 4}, + [2913] = {.lex_state = 13, .external_lex_state = 6}, [2914] = {.lex_state = 2, .external_lex_state = 4}, - [2915] = {.lex_state = 2, .external_lex_state = 4}, + [2915] = {.lex_state = 13, .external_lex_state = 7}, [2916] = {.lex_state = 2, .external_lex_state = 4}, - [2917] = {.lex_state = 2, .external_lex_state = 4}, - [2918] = {.lex_state = 11, .external_lex_state = 5}, + [2917] = {.lex_state = 13, .external_lex_state = 6}, + [2918] = {.lex_state = 2, .external_lex_state = 4}, [2919] = {.lex_state = 2, .external_lex_state = 4}, - [2920] = {.lex_state = 2, .external_lex_state = 4}, + [2920] = {.lex_state = 13, .external_lex_state = 6}, [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 = 2, .external_lex_state = 4}, + [2923] = {.lex_state = 13, .external_lex_state = 7}, + [2924] = {.lex_state = 13, .external_lex_state = 7}, [2925] = {.lex_state = 2, .external_lex_state = 4}, - [2926] = {.lex_state = 11, .external_lex_state = 5}, + [2926] = {.lex_state = 13, .external_lex_state = 7}, [2927] = {.lex_state = 2, .external_lex_state = 4}, - [2928] = {.lex_state = 11, .external_lex_state = 5}, + [2928] = {.lex_state = 2, .external_lex_state = 4}, [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 = 13, .external_lex_state = 7}, + [2930] = {.lex_state = 2, .external_lex_state = 4}, + [2931] = {.lex_state = 13, .external_lex_state = 7}, + [2932] = {.lex_state = 13, .external_lex_state = 6}, [2933] = {.lex_state = 2, .external_lex_state = 4}, [2934] = {.lex_state = 2, .external_lex_state = 4}, - [2935] = {.lex_state = 2, .external_lex_state = 4}, - [2936] = {.lex_state = 2, .external_lex_state = 4}, + [2935] = {.lex_state = 13, .external_lex_state = 7}, + [2936] = {.lex_state = 13, .external_lex_state = 7}, [2937] = {.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}, + [2938] = {.lex_state = 13, .external_lex_state = 7}, + [2939] = {.lex_state = 2, .external_lex_state = 4}, + [2940] = {.lex_state = 13, .external_lex_state = 7}, + [2941] = {.lex_state = 13, .external_lex_state = 7}, + [2942] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 7}, + [2945] = {.lex_state = 11, .external_lex_state = 5}, + [2946] = {.lex_state = 13, .external_lex_state = 7}, + [2947] = {.lex_state = 13, .external_lex_state = 7}, + [2948] = {.lex_state = 2, .external_lex_state = 4}, [2949] = {.lex_state = 2, .external_lex_state = 4}, - [2950] = {.lex_state = 2, .external_lex_state = 4}, + [2950] = {.lex_state = 13, .external_lex_state = 6}, [2951] = {.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}, + [2953] = {.lex_state = 2, .external_lex_state = 4}, + [2954] = {.lex_state = 2, .external_lex_state = 4}, + [2955] = {.lex_state = 2, .external_lex_state = 4}, [2956] = {.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}, + [2958] = {.lex_state = 2, .external_lex_state = 4}, + [2959] = {.lex_state = 2, .external_lex_state = 4}, [2960] = {.lex_state = 13, .external_lex_state = 7}, - [2961] = {.lex_state = 13, .external_lex_state = 7}, - [2962] = {.lex_state = 2, .external_lex_state = 4}, - [2963] = {.lex_state = 13, .external_lex_state = 7}, + [2961] = {.lex_state = 2, .external_lex_state = 4}, + [2962] = {.lex_state = 13, .external_lex_state = 7}, + [2963] = {.lex_state = 2, .external_lex_state = 4}, [2964] = {.lex_state = 2, .external_lex_state = 4}, - [2965] = {.lex_state = 13, .external_lex_state = 7}, - [2966] = {.lex_state = 13, .external_lex_state = 7}, + [2965] = {.lex_state = 13, .external_lex_state = 6}, + [2966] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2968] = {.lex_state = 2, .external_lex_state = 4}, + [2969] = {.lex_state = 2, .external_lex_state = 4}, + [2970] = {.lex_state = 13, .external_lex_state = 6}, [2971] = {.lex_state = 2, .external_lex_state = 4}, - [2972] = {.lex_state = 2, .external_lex_state = 4}, + [2972] = {.lex_state = 13, .external_lex_state = 6}, [2973] = {.lex_state = 13, .external_lex_state = 6}, - [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 = 13, .external_lex_state = 7}, - [2979] = {.lex_state = 13, .external_lex_state = 6}, - [2980] = {.lex_state = 13, .external_lex_state = 6}, + [2974] = {.lex_state = 13, .external_lex_state = 6}, + [2975] = {.lex_state = 13, .external_lex_state = 6}, + [2976] = {.lex_state = 13, .external_lex_state = 6}, + [2977] = {.lex_state = 2, .external_lex_state = 4}, + [2978] = {.lex_state = 2, .external_lex_state = 4}, + [2979] = {.lex_state = 2, .external_lex_state = 4}, + [2980] = {.lex_state = 2, .external_lex_state = 4}, [2981] = {.lex_state = 2, .external_lex_state = 4}, - [2982] = {.lex_state = 13, .external_lex_state = 7}, - [2983] = {.lex_state = 13, .external_lex_state = 6}, + [2982] = {.lex_state = 2, .external_lex_state = 4}, + [2983] = {.lex_state = 2, .external_lex_state = 4}, [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 = 6}, - [2989] = {.lex_state = 2, .external_lex_state = 4}, + [2988] = {.lex_state = 2, .external_lex_state = 4}, + [2989] = {.lex_state = 13, .external_lex_state = 6}, [2990] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [2995] = {.lex_state = 13, .external_lex_state = 6}, + [2996] = {.lex_state = 13, .external_lex_state = 6}, + [2997] = {.lex_state = 13, .external_lex_state = 6}, [2998] = {.lex_state = 13, .external_lex_state = 6}, [2999] = {.lex_state = 2, .external_lex_state = 4}, - [3000] = {.lex_state = 13, .external_lex_state = 6}, + [3000] = {.lex_state = 2, .external_lex_state = 4}, [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 = 13, .external_lex_state = 7}, + [3003] = {.lex_state = 13, .external_lex_state = 7}, + [3004] = {.lex_state = 2, .external_lex_state = 4}, [3005] = {.lex_state = 2, .external_lex_state = 4}, - [3006] = {.lex_state = 2, .external_lex_state = 4}, + [3006] = {.lex_state = 13, .external_lex_state = 6}, [3007] = {.lex_state = 2, .external_lex_state = 4}, - [3008] = {.lex_state = 11, .external_lex_state = 5}, + [3008] = {.lex_state = 13, .external_lex_state = 6}, [3009] = {.lex_state = 2, .external_lex_state = 4}, - [3010] = {.lex_state = 2, .external_lex_state = 4}, + [3010] = {.lex_state = 13, .external_lex_state = 6}, [3011] = {.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}, + [3012] = {.lex_state = 13, .external_lex_state = 6}, + [3013] = {.lex_state = 13, .external_lex_state = 6}, + [3014] = {.lex_state = 13, .external_lex_state = 6}, + [3015] = {.lex_state = 13, .external_lex_state = 6}, [3016] = {.lex_state = 2, .external_lex_state = 4}, - [3017] = {.lex_state = 2, .external_lex_state = 4}, - [3018] = {.lex_state = 13, .external_lex_state = 6}, - [3019] = {.lex_state = 13, .external_lex_state = 6}, + [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 = 2, .external_lex_state = 4}, - [3021] = {.lex_state = 13, .external_lex_state = 6}, + [3021] = {.lex_state = 11, .external_lex_state = 5}, [3022] = {.lex_state = 2, .external_lex_state = 4}, [3023] = {.lex_state = 2, .external_lex_state = 4}, [3024] = {.lex_state = 2, .external_lex_state = 4}, - [3025] = {.lex_state = 13, .external_lex_state = 6}, - [3026] = {.lex_state = 13, .external_lex_state = 6}, + [3025] = {.lex_state = 11, .external_lex_state = 5}, + [3026] = {.lex_state = 321, .external_lex_state = 2}, [3027] = {.lex_state = 2, .external_lex_state = 4}, [3028] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3030] = {.lex_state = 4, .external_lex_state = 4}, + [3031] = {.lex_state = 11, .external_lex_state = 5}, + [3032] = {.lex_state = 2, .external_lex_state = 4}, [3033] = {.lex_state = 2, .external_lex_state = 4}, [3034] = {.lex_state = 2, .external_lex_state = 4}, - [3035] = {.lex_state = 13, .external_lex_state = 6}, + [3035] = {.lex_state = 2, .external_lex_state = 4}, [3036] = {.lex_state = 2, .external_lex_state = 4}, - [3037] = {.lex_state = 13, .external_lex_state = 6}, - [3038] = {.lex_state = 13, .external_lex_state = 6}, + [3037] = {.lex_state = 2, .external_lex_state = 4}, + [3038] = {.lex_state = 11, .external_lex_state = 5}, [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 = 2, .external_lex_state = 4}, - [3043] = {.lex_state = 13, .external_lex_state = 6}, + [3043] = {.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}, + [3046] = {.lex_state = 13, .external_lex_state = 7}, + [3047] = {.lex_state = 13, .external_lex_state = 6}, [3048] = {.lex_state = 2, .external_lex_state = 4}, - [3049] = {.lex_state = 2, .external_lex_state = 4}, - [3050] = {.lex_state = 13, .external_lex_state = 6}, + [3049] = {.lex_state = 13, .external_lex_state = 6}, + [3050] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3052] = {.lex_state = 13, .external_lex_state = 7}, + [3053] = {.lex_state = 2, .external_lex_state = 4}, + [3054] = {.lex_state = 2, .external_lex_state = 4}, [3055] = {.lex_state = 2, .external_lex_state = 4}, - [3056] = {.lex_state = 2, .external_lex_state = 4}, + [3056] = {.lex_state = 13, .external_lex_state = 7}, [3057] = {.lex_state = 2, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, + [3060] = {.lex_state = 13, .external_lex_state = 6}, + [3061] = {.lex_state = 13, .external_lex_state = 6}, + [3062] = {.lex_state = 13, .external_lex_state = 6}, [3063] = {.lex_state = 2, .external_lex_state = 4}, - [3064] = {.lex_state = 11, .external_lex_state = 5}, + [3064] = {.lex_state = 2, .external_lex_state = 4}, [3065] = {.lex_state = 2, .external_lex_state = 4}, - [3066] = {.lex_state = 11, .external_lex_state = 5}, + [3066] = {.lex_state = 2, .external_lex_state = 4}, [3067] = {.lex_state = 2, .external_lex_state = 4}, - [3068] = {.lex_state = 13, .external_lex_state = 6}, + [3068] = {.lex_state = 2, .external_lex_state = 4}, [3069] = {.lex_state = 13, .external_lex_state = 6}, - [3070] = {.lex_state = 13, .external_lex_state = 6}, + [3070] = {.lex_state = 13, .external_lex_state = 7}, [3071] = {.lex_state = 2, .external_lex_state = 4}, - [3072] = {.lex_state = 2, .external_lex_state = 4}, + [3072] = {.lex_state = 13, .external_lex_state = 6}, [3073] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3075] = {.lex_state = 2, .external_lex_state = 4}, + [3076] = {.lex_state = 13, .external_lex_state = 6}, + [3077] = {.lex_state = 11, .external_lex_state = 5}, [3078] = {.lex_state = 13, .external_lex_state = 6}, [3079] = {.lex_state = 2, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, + [3081] = {.lex_state = 11, .external_lex_state = 5}, + [3082] = {.lex_state = 11, .external_lex_state = 5}, + [3083] = {.lex_state = 11, .external_lex_state = 5}, [3084] = {.lex_state = 2, .external_lex_state = 4}, - [3085] = {.lex_state = 2, .external_lex_state = 4}, + [3085] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [3087] = {.lex_state = 2, .external_lex_state = 4}, + [3088] = {.lex_state = 13, .external_lex_state = 6}, + [3089] = {.lex_state = 11, .external_lex_state = 5}, [3090] = {.lex_state = 2, .external_lex_state = 4}, - [3091] = {.lex_state = 2, .external_lex_state = 4}, + [3091] = {.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 = 2, .external_lex_state = 4}, + [3094] = {.lex_state = 13, .external_lex_state = 6}, [3095] = {.lex_state = 2, .external_lex_state = 4}, - [3096] = {.lex_state = 13, .external_lex_state = 6}, + [3096] = {.lex_state = 2, .external_lex_state = 4}, [3097] = {.lex_state = 2, .external_lex_state = 4}, [3098] = {.lex_state = 2, .external_lex_state = 4}, [3099] = {.lex_state = 2, .external_lex_state = 4}, @@ -26582,58 +23220,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3101] = {.lex_state = 2, .external_lex_state = 4}, [3102] = {.lex_state = 2, .external_lex_state = 4}, [3103] = {.lex_state = 2, .external_lex_state = 4}, - [3104] = {.lex_state = 13, .external_lex_state = 6}, + [3104] = {.lex_state = 2, .external_lex_state = 4}, [3105] = {.lex_state = 2, .external_lex_state = 4}, - [3106] = {.lex_state = 13, .external_lex_state = 6}, + [3106] = {.lex_state = 2, .external_lex_state = 4}, [3107] = {.lex_state = 13, .external_lex_state = 6}, - [3108] = {.lex_state = 13, .external_lex_state = 6}, - [3109] = {.lex_state = 13, .external_lex_state = 6}, + [3108] = {.lex_state = 2, .external_lex_state = 4}, + [3109] = {.lex_state = 2, .external_lex_state = 4}, [3110] = {.lex_state = 2, .external_lex_state = 4}, [3111] = {.lex_state = 2, .external_lex_state = 4}, [3112] = {.lex_state = 2, .external_lex_state = 4}, - [3113] = {.lex_state = 13, .external_lex_state = 6}, + [3113] = {.lex_state = 2, .external_lex_state = 4}, [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 = 13, .external_lex_state = 6}, + [3117] = {.lex_state = 2, .external_lex_state = 4}, [3118] = {.lex_state = 2, .external_lex_state = 4}, [3119] = {.lex_state = 13, .external_lex_state = 6}, - [3120] = {.lex_state = 2, .external_lex_state = 4}, + [3120] = {.lex_state = 13, .external_lex_state = 6}, [3121] = {.lex_state = 2, .external_lex_state = 4}, - [3122] = {.lex_state = 318, .external_lex_state = 2}, + [3122] = {.lex_state = 13, .external_lex_state = 6}, [3123] = {.lex_state = 2, .external_lex_state = 4}, - [3124] = {.lex_state = 2, .external_lex_state = 4}, - [3125] = {.lex_state = 13, .external_lex_state = 6}, + [3124] = {.lex_state = 13, .external_lex_state = 6}, + [3125] = {.lex_state = 2, .external_lex_state = 4}, [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 = 11, .external_lex_state = 5}, + [3128] = {.lex_state = 321, .external_lex_state = 2}, + [3129] = {.lex_state = 2, .external_lex_state = 4}, [3130] = {.lex_state = 2, .external_lex_state = 4}, - [3131] = {.lex_state = 2, .external_lex_state = 4}, + [3131] = {.lex_state = 13, .external_lex_state = 6}, [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 = 2, .external_lex_state = 4}, - [3136] = {.lex_state = 13, .external_lex_state = 6}, + [3134] = {.lex_state = 13, .external_lex_state = 6}, + [3135] = {.lex_state = 13, .external_lex_state = 6}, + [3136] = {.lex_state = 2, .external_lex_state = 4}, [3137] = {.lex_state = 2, .external_lex_state = 4}, - [3138] = {.lex_state = 2, .external_lex_state = 4}, - [3139] = {.lex_state = 13, .external_lex_state = 6}, + [3138] = {.lex_state = 13, .external_lex_state = 6}, + [3139] = {.lex_state = 2, .external_lex_state = 4}, [3140] = {.lex_state = 2, .external_lex_state = 4}, - [3141] = {.lex_state = 2, .external_lex_state = 4}, - [3142] = {.lex_state = 13, .external_lex_state = 6}, + [3141] = {.lex_state = 13, .external_lex_state = 6}, + [3142] = {.lex_state = 2, .external_lex_state = 4}, [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 = 13, .external_lex_state = 6}, - [3148] = {.lex_state = 2, .external_lex_state = 4}, + [3147] = {.lex_state = 2, .external_lex_state = 4}, + [3148] = {.lex_state = 13, .external_lex_state = 6}, [3149] = {.lex_state = 2, .external_lex_state = 4}, - [3150] = {.lex_state = 2, .external_lex_state = 4}, + [3150] = {.lex_state = 13, .external_lex_state = 6}, [3151] = {.lex_state = 2, .external_lex_state = 4}, - [3152] = {.lex_state = 2, .external_lex_state = 4}, + [3152] = {.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}, + [3154] = {.lex_state = 2, .external_lex_state = 4}, + [3155] = {.lex_state = 13, .external_lex_state = 6}, [3156] = {.lex_state = 2, .external_lex_state = 4}, [3157] = {.lex_state = 2, .external_lex_state = 4}, [3158] = {.lex_state = 2, .external_lex_state = 4}, @@ -26650,44 +23288,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 6}, + [3172] = {.lex_state = 2, .external_lex_state = 4}, [3173] = {.lex_state = 2, .external_lex_state = 4}, - [3174] = {.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}, + [3174] = {.lex_state = 13, .external_lex_state = 6}, + [3175] = {.lex_state = 2, .external_lex_state = 4}, + [3176] = {.lex_state = 13, .external_lex_state = 6}, + [3177] = {.lex_state = 13, .external_lex_state = 6}, [3178] = {.lex_state = 2, .external_lex_state = 4}, [3179] = {.lex_state = 2, .external_lex_state = 4}, - [3180] = {.lex_state = 13, .external_lex_state = 6}, - [3181] = {.lex_state = 2, .external_lex_state = 4}, + [3180] = {.lex_state = 2, .external_lex_state = 4}, + [3181] = {.lex_state = 13, .external_lex_state = 6}, [3182] = {.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}, + [3183] = {.lex_state = 2, .external_lex_state = 4}, + [3184] = {.lex_state = 2, .external_lex_state = 4}, + [3185] = {.lex_state = 13, .external_lex_state = 6}, [3186] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [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 = 2, .external_lex_state = 4}, [3195] = {.lex_state = 2, .external_lex_state = 4}, [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 = 11, .external_lex_state = 5}, + [3199] = {.lex_state = 2, .external_lex_state = 4}, [3200] = {.lex_state = 2, .external_lex_state = 4}, [3201] = {.lex_state = 2, .external_lex_state = 4}, - [3202] = {.lex_state = 13, .external_lex_state = 6}, - [3203] = {.lex_state = 2, .external_lex_state = 4}, + [3202] = {.lex_state = 2, .external_lex_state = 4}, + [3203] = {.lex_state = 11, .external_lex_state = 5}, [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 = 13, .external_lex_state = 6}, - [3209] = {.lex_state = 13, .external_lex_state = 6}, + [3208] = {.lex_state = 2, .external_lex_state = 4}, + [3209] = {.lex_state = 2, .external_lex_state = 4}, [3210] = {.lex_state = 2, .external_lex_state = 4}, [3211] = {.lex_state = 2, .external_lex_state = 4}, [3212] = {.lex_state = 2, .external_lex_state = 4}, @@ -26696,206 +23334,206 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 6}, + [3218] = {.lex_state = 2, .external_lex_state = 4}, [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 = 13, .external_lex_state = 6}, - [3223] = {.lex_state = 13, .external_lex_state = 6}, + [3222] = {.lex_state = 2, .external_lex_state = 4}, + [3223] = {.lex_state = 2, .external_lex_state = 4}, [3224] = {.lex_state = 2, .external_lex_state = 4}, [3225] = {.lex_state = 2, .external_lex_state = 4}, [3226] = {.lex_state = 2, .external_lex_state = 4}, [3227] = {.lex_state = 2, .external_lex_state = 4}, [3228] = {.lex_state = 2, .external_lex_state = 4}, - [3229] = {.lex_state = 2, .external_lex_state = 4}, + [3229] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 6}, + [3233] = {.lex_state = 2, .external_lex_state = 4}, [3234] = {.lex_state = 2, .external_lex_state = 4}, - [3235] = {.lex_state = 2, .external_lex_state = 4}, + [3235] = {.lex_state = 11, .external_lex_state = 5}, [3236] = {.lex_state = 2, .external_lex_state = 4}, [3237] = {.lex_state = 2, .external_lex_state = 4}, [3238] = {.lex_state = 2, .external_lex_state = 4}, [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 = 2, .external_lex_state = 4}, + [3242] = {.lex_state = 13, .external_lex_state = 6}, [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 = 2, .external_lex_state = 4}, - [3247] = {.lex_state = 2, .external_lex_state = 4}, + [3247] = {.lex_state = 13, .external_lex_state = 6}, [3248] = {.lex_state = 2, .external_lex_state = 4}, [3249] = {.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 = 13, .external_lex_state = 6}, + [3253] = {.lex_state = 2, .external_lex_state = 4}, [3254] = {.lex_state = 2, .external_lex_state = 4}, - [3255] = {.lex_state = 2, .external_lex_state = 4}, + [3255] = {.lex_state = 13, .external_lex_state = 6}, [3256] = {.lex_state = 2, .external_lex_state = 4}, [3257] = {.lex_state = 2, .external_lex_state = 4}, [3258] = {.lex_state = 2, .external_lex_state = 4}, [3259] = {.lex_state = 2, .external_lex_state = 4}, [3260] = {.lex_state = 2, .external_lex_state = 4}, - [3261] = {.lex_state = 11, .external_lex_state = 5}, + [3261] = {.lex_state = 2, .external_lex_state = 4}, [3262] = {.lex_state = 2, .external_lex_state = 4}, [3263] = {.lex_state = 2, .external_lex_state = 4}, - [3264] = {.lex_state = 2, .external_lex_state = 4}, - [3265] = {.lex_state = 2, .external_lex_state = 4}, + [3264] = {.lex_state = 13, .external_lex_state = 6}, + [3265] = {.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}, + [3268] = {.lex_state = 13, .external_lex_state = 6}, [3269] = {.lex_state = 2, .external_lex_state = 4}, [3270] = {.lex_state = 2, .external_lex_state = 4}, [3271] = {.lex_state = 2, .external_lex_state = 4}, [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 = 7}, + [3273] = {.lex_state = 2, .external_lex_state = 3}, + [3274] = {.lex_state = 2, .external_lex_state = 3}, + [3275] = {.lex_state = 15, .external_lex_state = 6}, [3276] = {.lex_state = 13, .external_lex_state = 6}, - [3277] = {.lex_state = 14, .external_lex_state = 6}, - [3278] = {.lex_state = 14, .external_lex_state = 6}, + [3277] = {.lex_state = 13, .external_lex_state = 7}, + [3278] = {.lex_state = 13, .external_lex_state = 7}, [3279] = {.lex_state = 13, .external_lex_state = 7}, - [3280] = {.lex_state = 13, .external_lex_state = 6}, - [3281] = {.lex_state = 13, .external_lex_state = 6}, + [3280] = {.lex_state = 13, .external_lex_state = 7}, + [3281] = {.lex_state = 14, .external_lex_state = 6}, [3282] = {.lex_state = 13, .external_lex_state = 6}, [3283] = {.lex_state = 13, .external_lex_state = 6}, [3284] = {.lex_state = 13, .external_lex_state = 6}, - [3285] = {.lex_state = 13, .external_lex_state = 6}, + [3285] = {.lex_state = 14, .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}, + [3287] = {.lex_state = 13, .external_lex_state = 6}, + [3288] = {.lex_state = 13, .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}, + [3290] = {.lex_state = 13, .external_lex_state = 6}, + [3291] = {.lex_state = 13, .external_lex_state = 7}, + [3292] = {.lex_state = 13, .external_lex_state = 7}, [3293] = {.lex_state = 13, .external_lex_state = 6}, - [3294] = {.lex_state = 13, .external_lex_state = 7}, + [3294] = {.lex_state = 13, .external_lex_state = 6}, [3295] = {.lex_state = 13, .external_lex_state = 6}, - [3296] = {.lex_state = 14, .external_lex_state = 6}, - [3297] = {.lex_state = 13, .external_lex_state = 6}, + [3296] = {.lex_state = 13, .external_lex_state = 6}, + [3297] = {.lex_state = 14, .external_lex_state = 6}, [3298] = {.lex_state = 13, .external_lex_state = 6}, - [3299] = {.lex_state = 14, .external_lex_state = 6}, + [3299] = {.lex_state = 13, .external_lex_state = 6}, [3300] = {.lex_state = 13, .external_lex_state = 6}, [3301] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [3305] = {.lex_state = 13, .external_lex_state = 7}, + [3306] = {.lex_state = 13, .external_lex_state = 6}, + [3307] = {.lex_state = 13, .external_lex_state = 7}, + [3308] = {.lex_state = 14, .external_lex_state = 6}, [3309] = {.lex_state = 13, .external_lex_state = 6}, - [3310] = {.lex_state = 14, .external_lex_state = 6}, + [3310] = {.lex_state = 13, .external_lex_state = 6}, [3311] = {.lex_state = 13, .external_lex_state = 6}, - [3312] = {.lex_state = 13, .external_lex_state = 6}, + [3312] = {.lex_state = 14, .external_lex_state = 6}, [3313] = {.lex_state = 13, .external_lex_state = 6}, - [3314] = {.lex_state = 13, .external_lex_state = 6}, + [3314] = {.lex_state = 13, .external_lex_state = 7}, [3315] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 7}, + [3319] = {.lex_state = 13, .external_lex_state = 6}, [3320] = {.lex_state = 13, .external_lex_state = 6}, - [3321] = {.lex_state = 13, .external_lex_state = 6}, - [3322] = {.lex_state = 2, .external_lex_state = 4}, - [3323] = {.lex_state = 2, .external_lex_state = 4}, + [3321] = {.lex_state = 13, .external_lex_state = 7}, + [3322] = {.lex_state = 13, .external_lex_state = 6}, + [3323] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 6}, - [3328] = {.lex_state = 14, .external_lex_state = 6}, + [3328] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3330] = {.lex_state = 13, .external_lex_state = 7}, + [3331] = {.lex_state = 13, .external_lex_state = 6}, + [3332] = {.lex_state = 13, .external_lex_state = 6}, + [3333] = {.lex_state = 13, .external_lex_state = 6}, + [3334] = {.lex_state = 14, .external_lex_state = 6}, + [3335] = {.lex_state = 2, .external_lex_state = 4}, + [3336] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3338] = {.lex_state = 13, .external_lex_state = 6}, + [3339] = {.lex_state = 13, .external_lex_state = 6}, + [3340] = {.lex_state = 2, .external_lex_state = 4}, [3341] = {.lex_state = 13, .external_lex_state = 6}, [3342] = {.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 = 13, .external_lex_state = 6}, - [3353] = {.lex_state = 13, .external_lex_state = 6}, + [3345] = {.lex_state = 2, .external_lex_state = 4}, + [3346] = {.lex_state = 2, .external_lex_state = 4}, + [3347] = {.lex_state = 14, .external_lex_state = 6}, + [3348] = {.lex_state = 14, .external_lex_state = 6}, + [3349] = {.lex_state = 14, .external_lex_state = 6}, + [3350] = {.lex_state = 14, .external_lex_state = 6}, + [3351] = {.lex_state = 14, .external_lex_state = 6}, + [3352] = {.lex_state = 14, .external_lex_state = 6}, + [3353] = {.lex_state = 14, .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 = 7}, - [3359] = {.lex_state = 13, .external_lex_state = 6}, + [3358] = {.lex_state = 13, .external_lex_state = 6}, + [3359] = {.lex_state = 14, .external_lex_state = 6}, [3360] = {.lex_state = 13, .external_lex_state = 6}, [3361] = {.lex_state = 13, .external_lex_state = 6}, [3362] = {.lex_state = 13, .external_lex_state = 6}, [3363] = {.lex_state = 13, .external_lex_state = 6}, - [3364] = {.lex_state = 13, .external_lex_state = 7}, + [3364] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [3369] = {.lex_state = 2, .external_lex_state = 4}, [3370] = {.lex_state = 13, .external_lex_state = 6}, - [3371] = {.lex_state = 13, .external_lex_state = 7}, - [3372] = {.lex_state = 13, .external_lex_state = 7}, - [3373] = {.lex_state = 13, .external_lex_state = 7}, - [3374] = {.lex_state = 13, .external_lex_state = 7}, + [3371] = {.lex_state = 2, .external_lex_state = 4}, + [3372] = {.lex_state = 13, .external_lex_state = 6}, + [3373] = {.lex_state = 11, .external_lex_state = 5}, + [3374] = {.lex_state = 13, .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 = 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}, + [3376] = {.lex_state = 13, .external_lex_state = 6}, + [3377] = {.lex_state = 13, .external_lex_state = 6}, + [3378] = {.lex_state = 13, .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 = 6}, + [3384] = {.lex_state = 13, .external_lex_state = 6}, + [3385] = {.lex_state = 321, .external_lex_state = 2}, [3386] = {.lex_state = 13, .external_lex_state = 6}, - [3387] = {.lex_state = 13, .external_lex_state = 6}, - [3388] = {.lex_state = 13, .external_lex_state = 6}, + [3387] = {.lex_state = 321, .external_lex_state = 2}, + [3388] = {.lex_state = 13, .external_lex_state = 7}, [3389] = {.lex_state = 13, .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}, + [3390] = {.lex_state = 13, .external_lex_state = 6}, + [3391] = {.lex_state = 321, .external_lex_state = 2}, + [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 = 6}, [3396] = {.lex_state = 13, .external_lex_state = 6}, [3397] = {.lex_state = 13, .external_lex_state = 6}, [3398] = {.lex_state = 13, .external_lex_state = 6}, [3399] = {.lex_state = 11, .external_lex_state = 5}, - [3400] = {.lex_state = 13, .external_lex_state = 6}, + [3400] = {.lex_state = 2, .external_lex_state = 4}, [3401] = {.lex_state = 13, .external_lex_state = 6}, [3402] = {.lex_state = 13, .external_lex_state = 6}, [3403] = {.lex_state = 13, .external_lex_state = 6}, - [3404] = {.lex_state = 13, .external_lex_state = 6}, - [3405] = {.lex_state = 318, .external_lex_state = 2}, + [3404] = {.lex_state = 2, .external_lex_state = 4}, + [3405] = {.lex_state = 13, .external_lex_state = 6}, [3406] = {.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}, + [3407] = {.lex_state = 13, .external_lex_state = 6}, + [3408] = {.lex_state = 13, .external_lex_state = 7}, + [3409] = {.lex_state = 13, .external_lex_state = 6}, [3410] = {.lex_state = 13, .external_lex_state = 6}, [3411] = {.lex_state = 13, .external_lex_state = 6}, - [3412] = {.lex_state = 2, .external_lex_state = 4}, + [3412] = {.lex_state = 11, .external_lex_state = 5}, [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 = 11, .external_lex_state = 5}, + [3414] = {.lex_state = 13, .external_lex_state = 7}, + [3415] = {.lex_state = 2, .external_lex_state = 4}, + [3416] = {.lex_state = 2, .external_lex_state = 4}, + [3417] = {.lex_state = 13, .external_lex_state = 6}, [3418] = {.lex_state = 13, .external_lex_state = 6}, [3419] = {.lex_state = 13, .external_lex_state = 6}, [3420] = {.lex_state = 13, .external_lex_state = 6}, @@ -26903,163 +23541,163 @@ 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 = 7}, + [3425] = {.lex_state = 13, .external_lex_state = 6}, [3426] = {.lex_state = 13, .external_lex_state = 6}, - [3427] = {.lex_state = 13, .external_lex_state = 7}, + [3427] = {.lex_state = 2, .external_lex_state = 4}, [3428] = {.lex_state = 13, .external_lex_state = 6}, - [3429] = {.lex_state = 13, .external_lex_state = 7}, + [3429] = {.lex_state = 13, .external_lex_state = 6}, [3430] = {.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 = 2, .external_lex_state = 4}, + [3432] = {.lex_state = 13, .external_lex_state = 6}, + [3433] = {.lex_state = 13, .external_lex_state = 6}, + [3434] = {.lex_state = 13, .external_lex_state = 6}, [3435] = {.lex_state = 13, .external_lex_state = 6}, [3436] = {.lex_state = 13, .external_lex_state = 6}, [3437] = {.lex_state = 13, .external_lex_state = 6}, - [3438] = {.lex_state = 13, .external_lex_state = 6}, + [3438] = {.lex_state = 11, .external_lex_state = 5}, [3439] = {.lex_state = 13, .external_lex_state = 6}, [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 = 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}, + [3442] = {.lex_state = 2, .external_lex_state = 4}, + [3443] = {.lex_state = 13, .external_lex_state = 6}, + [3444] = {.lex_state = 13, .external_lex_state = 6}, + [3445] = {.lex_state = 2, .external_lex_state = 4}, + [3446] = {.lex_state = 13, .external_lex_state = 6}, + [3447] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [3449] = {.lex_state = 11, .external_lex_state = 5}, + [3450] = {.lex_state = 11, .external_lex_state = 5}, + [3451] = {.lex_state = 11, .external_lex_state = 5}, + [3452] = {.lex_state = 2, .external_lex_state = 4}, [3453] = {.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}, + [3455] = {.lex_state = 321, .external_lex_state = 2}, + [3456] = {.lex_state = 13, .external_lex_state = 7}, + [3457] = {.lex_state = 13, .external_lex_state = 7}, + [3458] = {.lex_state = 2, .external_lex_state = 4}, [3459] = {.lex_state = 13, .external_lex_state = 6}, - [3460] = {.lex_state = 13, .external_lex_state = 6}, - [3461] = {.lex_state = 13, .external_lex_state = 6}, + [3460] = {.lex_state = 2, .external_lex_state = 4}, + [3461] = {.lex_state = 2, .external_lex_state = 4}, [3462] = {.lex_state = 13, .external_lex_state = 7}, - [3463] = {.lex_state = 13, .external_lex_state = 6}, - [3464] = {.lex_state = 13, .external_lex_state = 6}, + [3463] = {.lex_state = 2, .external_lex_state = 4}, + [3464] = {.lex_state = 2, .external_lex_state = 4}, [3465] = {.lex_state = 13, .external_lex_state = 6}, [3466] = {.lex_state = 13, .external_lex_state = 6}, - [3467] = {.lex_state = 13, .external_lex_state = 6}, + [3467] = {.lex_state = 2, .external_lex_state = 4}, [3468] = {.lex_state = 13, .external_lex_state = 6}, - [3469] = {.lex_state = 13, .external_lex_state = 6}, - [3470] = {.lex_state = 13, .external_lex_state = 6}, + [3469] = {.lex_state = 321, .external_lex_state = 2}, + [3470] = {.lex_state = 2, .external_lex_state = 4}, [3471] = {.lex_state = 13, .external_lex_state = 6}, - [3472] = {.lex_state = 13, .external_lex_state = 6}, + [3472] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3477] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 6}, - [3483] = {.lex_state = 13, .external_lex_state = 6}, - [3484] = {.lex_state = 11, .external_lex_state = 5}, + [3483] = {.lex_state = 2, .external_lex_state = 4}, + [3484] = {.lex_state = 13, .external_lex_state = 6}, [3485] = {.lex_state = 13, .external_lex_state = 6}, - [3486] = {.lex_state = 11, .external_lex_state = 5}, + [3486] = {.lex_state = 13, .external_lex_state = 7}, [3487] = {.lex_state = 13, .external_lex_state = 6}, - [3488] = {.lex_state = 13, .external_lex_state = 6}, - [3489] = {.lex_state = 13, .external_lex_state = 6}, + [3488] = {.lex_state = 13, .external_lex_state = 7}, + [3489] = {.lex_state = 11, .external_lex_state = 5}, [3490] = {.lex_state = 13, .external_lex_state = 6}, - [3491] = {.lex_state = 13, .external_lex_state = 6}, + [3491] = {.lex_state = 11, .external_lex_state = 5}, [3492] = {.lex_state = 13, .external_lex_state = 6}, [3493] = {.lex_state = 13, .external_lex_state = 6}, [3494] = {.lex_state = 13, .external_lex_state = 6}, - [3495] = {.lex_state = 13, .external_lex_state = 6}, - [3496] = {.lex_state = 13, .external_lex_state = 6}, - [3497] = {.lex_state = 13, .external_lex_state = 6}, - [3498] = {.lex_state = 13, .external_lex_state = 6}, + [3495] = {.lex_state = 13, .external_lex_state = 7}, + [3496] = {.lex_state = 13, .external_lex_state = 7}, + [3497] = {.lex_state = 13, .external_lex_state = 7}, + [3498] = {.lex_state = 2, .external_lex_state = 4}, [3499] = {.lex_state = 13, .external_lex_state = 6}, [3500] = {.lex_state = 13, .external_lex_state = 6}, [3501] = {.lex_state = 13, .external_lex_state = 6}, - [3502] = {.lex_state = 13, .external_lex_state = 6}, + [3502] = {.lex_state = 13, .external_lex_state = 7}, [3503] = {.lex_state = 13, .external_lex_state = 6}, - [3504] = {.lex_state = 13, .external_lex_state = 6}, + [3504] = {.lex_state = 13, .external_lex_state = 7}, [3505] = {.lex_state = 13, .external_lex_state = 6}, - [3506] = {.lex_state = 2, .external_lex_state = 4}, + [3506] = {.lex_state = 13, .external_lex_state = 6}, [3507] = {.lex_state = 13, .external_lex_state = 6}, - [3508] = {.lex_state = 2, .external_lex_state = 4}, - [3509] = {.lex_state = 13, .external_lex_state = 6}, + [3508] = {.lex_state = 13, .external_lex_state = 7}, + [3509] = {.lex_state = 13, .external_lex_state = 7}, [3510] = {.lex_state = 13, .external_lex_state = 6}, - [3511] = {.lex_state = 13, .external_lex_state = 6}, + [3511] = {.lex_state = 13, .external_lex_state = 7}, [3512] = {.lex_state = 13, .external_lex_state = 6}, [3513] = {.lex_state = 13, .external_lex_state = 6}, - [3514] = {.lex_state = 13, .external_lex_state = 6}, - [3515] = {.lex_state = 318, .external_lex_state = 2}, + [3514] = {.lex_state = 13, .external_lex_state = 7}, + [3515] = {.lex_state = 13, .external_lex_state = 7}, [3516] = {.lex_state = 13, .external_lex_state = 6}, - [3517] = {.lex_state = 13, .external_lex_state = 6}, - [3518] = {.lex_state = 11, .external_lex_state = 5}, - [3519] = {.lex_state = 11, .external_lex_state = 5}, + [3517] = {.lex_state = 13, .external_lex_state = 7}, + [3518] = {.lex_state = 13, .external_lex_state = 6}, + [3519] = {.lex_state = 13, .external_lex_state = 7}, [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 = 2, .external_lex_state = 4}, - [3524] = {.lex_state = 13, .external_lex_state = 6}, - [3525] = {.lex_state = 13, .external_lex_state = 6}, + [3523] = {.lex_state = 11, .external_lex_state = 5}, + [3524] = {.lex_state = 11, .external_lex_state = 5}, + [3525] = {.lex_state = 2, .external_lex_state = 4}, [3526] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 6}, - [3532] = {.lex_state = 2, .external_lex_state = 4}, + [3529] = {.lex_state = 13, .external_lex_state = 7}, + [3530] = {.lex_state = 13, .external_lex_state = 7}, + [3531] = {.lex_state = 13, .external_lex_state = 7}, + [3532] = {.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}, + [3534] = {.lex_state = 13, .external_lex_state = 6}, + [3535] = {.lex_state = 2, .external_lex_state = 4}, [3536] = {.lex_state = 13, .external_lex_state = 6}, [3537] = {.lex_state = 13, .external_lex_state = 6}, - [3538] = {.lex_state = 13, .external_lex_state = 7}, + [3538] = {.lex_state = 13, .external_lex_state = 6}, [3539] = {.lex_state = 13, .external_lex_state = 6}, [3540] = {.lex_state = 13, .external_lex_state = 6}, - [3541] = {.lex_state = 11, .external_lex_state = 5}, - [3542] = {.lex_state = 13, .external_lex_state = 6}, + [3541] = {.lex_state = 2, .external_lex_state = 4}, + [3542] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [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 = 13, .external_lex_state = 7}, + [3548] = {.lex_state = 13, .external_lex_state = 6}, [3549] = {.lex_state = 13, .external_lex_state = 6}, - [3550] = {.lex_state = 13, .external_lex_state = 7}, + [3550] = {.lex_state = 13, .external_lex_state = 6}, [3551] = {.lex_state = 13, .external_lex_state = 6}, [3552] = {.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}, + [3554] = {.lex_state = 13, .external_lex_state = 7}, + [3555] = {.lex_state = 13, .external_lex_state = 6}, + [3556] = {.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}, + [3558] = {.lex_state = 2, .external_lex_state = 4}, + [3559] = {.lex_state = 13, .external_lex_state = 6}, + [3560] = {.lex_state = 13, .external_lex_state = 6}, + [3561] = {.lex_state = 13, .external_lex_state = 6}, [3562] = {.lex_state = 13, .external_lex_state = 6}, - [3563] = {.lex_state = 2, .external_lex_state = 4}, - [3564] = {.lex_state = 2, .external_lex_state = 4}, + [3563] = {.lex_state = 13, .external_lex_state = 6}, + [3564] = {.lex_state = 13, .external_lex_state = 6}, [3565] = {.lex_state = 13, .external_lex_state = 6}, - [3566] = {.lex_state = 2, .external_lex_state = 4}, + [3566] = {.lex_state = 13, .external_lex_state = 6}, [3567] = {.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}, + [3568] = {.lex_state = 13, .external_lex_state = 6}, + [3569] = {.lex_state = 13, .external_lex_state = 6}, + [3570] = {.lex_state = 13, .external_lex_state = 7}, + [3571] = {.lex_state = 13, .external_lex_state = 6}, [3572] = {.lex_state = 13, .external_lex_state = 7}, [3573] = {.lex_state = 13, .external_lex_state = 6}, - [3574] = {.lex_state = 13, .external_lex_state = 7}, + [3574] = {.lex_state = 13, .external_lex_state = 6}, [3575] = {.lex_state = 13, .external_lex_state = 6}, [3576] = {.lex_state = 13, .external_lex_state = 6}, - [3577] = {.lex_state = 13, .external_lex_state = 6}, - [3578] = {.lex_state = 13, .external_lex_state = 7}, + [3577] = {.lex_state = 13, .external_lex_state = 7}, + [3578] = {.lex_state = 13, .external_lex_state = 6}, [3579] = {.lex_state = 13, .external_lex_state = 6}, [3580] = {.lex_state = 13, .external_lex_state = 6}, - [3581] = {.lex_state = 13, .external_lex_state = 7}, + [3581] = {.lex_state = 13, .external_lex_state = 6}, [3582] = {.lex_state = 13, .external_lex_state = 6}, [3583] = {.lex_state = 13, .external_lex_state = 6}, [3584] = {.lex_state = 13, .external_lex_state = 6}, @@ -27068,255 +23706,255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3587] = {.lex_state = 13, .external_lex_state = 6}, [3588] = {.lex_state = 13, .external_lex_state = 6}, [3589] = {.lex_state = 13, .external_lex_state = 6}, - [3590] = {.lex_state = 13, .external_lex_state = 6}, - [3591] = {.lex_state = 13, .external_lex_state = 6}, + [3590] = {.lex_state = 2, .external_lex_state = 4}, + [3591] = {.lex_state = 2, .external_lex_state = 4}, [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 = 7}, + [3595] = {.lex_state = 13, .external_lex_state = 6}, [3596] = {.lex_state = 13, .external_lex_state = 6}, - [3597] = {.lex_state = 13, .external_lex_state = 7}, + [3597] = {.lex_state = 13, .external_lex_state = 6}, [3598] = {.lex_state = 13, .external_lex_state = 6}, [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 = 13, .external_lex_state = 6}, [3603] = {.lex_state = 13, .external_lex_state = 6}, - [3604] = {.lex_state = 2, .external_lex_state = 4}, - [3605] = {.lex_state = 13, .external_lex_state = 7}, + [3604] = {.lex_state = 13, .external_lex_state = 7}, + [3605] = {.lex_state = 2, .external_lex_state = 3}, [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}, + [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 = 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 = 11, .external_lex_state = 5}, - [3618] = {.lex_state = 11, .external_lex_state = 5}, - [3619] = {.lex_state = 318, .external_lex_state = 2}, + [3616] = {.lex_state = 13, .external_lex_state = 6}, + [3617] = {.lex_state = 13, .external_lex_state = 7}, + [3618] = {.lex_state = 13, .external_lex_state = 6}, + [3619] = {.lex_state = 13, .external_lex_state = 7}, [3620] = {.lex_state = 13, .external_lex_state = 7}, - [3621] = {.lex_state = 2, .external_lex_state = 4}, + [3621] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3624] = {.lex_state = 2, .external_lex_state = 4}, + [3625] = {.lex_state = 2, .external_lex_state = 4}, + [3626] = {.lex_state = 321, .external_lex_state = 2}, [3627] = {.lex_state = 13, .external_lex_state = 7}, - [3628] = {.lex_state = 318, .external_lex_state = 2}, - [3629] = {.lex_state = 13, .external_lex_state = 6}, + [3628] = {.lex_state = 13, .external_lex_state = 7}, + [3629] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3632] = {.lex_state = 2, .external_lex_state = 3}, + [3633] = {.lex_state = 321, .external_lex_state = 2}, [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}, + [3636] = {.lex_state = 11, .external_lex_state = 5}, + [3637] = {.lex_state = 13, .external_lex_state = 6}, + [3638] = {.lex_state = 11, .external_lex_state = 5}, + [3639] = {.lex_state = 13, .external_lex_state = 7}, + [3640] = {.lex_state = 13, .external_lex_state = 7}, + [3641] = {.lex_state = 13, .external_lex_state = 7}, + [3642] = {.lex_state = 2, .external_lex_state = 4}, [3643] = {.lex_state = 13, .external_lex_state = 7}, [3644] = {.lex_state = 13, .external_lex_state = 7}, - [3645] = {.lex_state = 2, .external_lex_state = 4}, - [3646] = {.lex_state = 2, .external_lex_state = 4}, + [3645] = {.lex_state = 13, .external_lex_state = 7}, + [3646] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3648] = {.lex_state = 321, .external_lex_state = 2}, + [3649] = {.lex_state = 321, .external_lex_state = 2}, + [3650] = {.lex_state = 2, .external_lex_state = 4}, [3651] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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 = 2, .external_lex_state = 4}, - [3663] = {.lex_state = 13, .external_lex_state = 7}, + [3653] = {.lex_state = 2, .external_lex_state = 4}, + [3654] = {.lex_state = 13, .external_lex_state = 7}, + [3655] = {.lex_state = 2, .external_lex_state = 4}, + [3656] = {.lex_state = 321, .external_lex_state = 2}, + [3657] = {.lex_state = 13, .external_lex_state = 6}, + [3658] = {.lex_state = 11, .external_lex_state = 5}, + [3659] = {.lex_state = 2, .external_lex_state = 4}, + [3660] = {.lex_state = 2, .external_lex_state = 4}, + [3661] = {.lex_state = 2, .external_lex_state = 4}, + [3662] = {.lex_state = 13, .external_lex_state = 7}, + [3663] = {.lex_state = 11, .external_lex_state = 5}, [3664] = {.lex_state = 13, .external_lex_state = 7}, - [3665] = {.lex_state = 2, .external_lex_state = 4}, + [3665] = {.lex_state = 13, .external_lex_state = 7}, [3666] = {.lex_state = 13, .external_lex_state = 7}, - [3667] = {.lex_state = 13, .external_lex_state = 7}, + [3667] = {.lex_state = 2, .external_lex_state = 4}, [3668] = {.lex_state = 13, .external_lex_state = 7}, [3669] = {.lex_state = 13, .external_lex_state = 7}, [3670] = {.lex_state = 13, .external_lex_state = 7}, - [3671] = {.lex_state = 13, .external_lex_state = 6}, + [3671] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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 = 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 = 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}, + [3675] = {.lex_state = 13, .external_lex_state = 7}, + [3676] = {.lex_state = 13, .external_lex_state = 6}, + [3677] = {.lex_state = 13, .external_lex_state = 7}, + [3678] = {.lex_state = 13, .external_lex_state = 7}, + [3679] = {.lex_state = 13, .external_lex_state = 7}, + [3680] = {.lex_state = 2, .external_lex_state = 4}, + [3681] = {.lex_state = 13, .external_lex_state = 7}, + [3682] = {.lex_state = 13, .external_lex_state = 7}, + [3683] = {.lex_state = 2, .external_lex_state = 4}, + [3684] = {.lex_state = 13, .external_lex_state = 7}, + [3685] = {.lex_state = 11, .external_lex_state = 5}, + [3686] = {.lex_state = 11, .external_lex_state = 5}, + [3687] = {.lex_state = 2, .external_lex_state = 4}, + [3688] = {.lex_state = 13, .external_lex_state = 7}, + [3689] = {.lex_state = 321, .external_lex_state = 2}, [3690] = {.lex_state = 13, .external_lex_state = 6}, - [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}, + [3691] = {.lex_state = 321, .external_lex_state = 2}, + [3692] = {.lex_state = 2, .external_lex_state = 4}, + [3693] = {.lex_state = 13, .external_lex_state = 6}, + [3694] = {.lex_state = 2, .external_lex_state = 4}, [3695] = {.lex_state = 2, .external_lex_state = 4}, - [3696] = {.lex_state = 2, .external_lex_state = 4}, - [3697] = {.lex_state = 2, .external_lex_state = 4}, + [3696] = {.lex_state = 13, .external_lex_state = 7}, + [3697] = {.lex_state = 13, .external_lex_state = 7}, [3698] = {.lex_state = 2, .external_lex_state = 4}, - [3699] = {.lex_state = 2, .external_lex_state = 4}, - [3700] = {.lex_state = 13, .external_lex_state = 7}, + [3699] = {.lex_state = 13, .external_lex_state = 7}, + [3700] = {.lex_state = 2, .external_lex_state = 4}, [3701] = {.lex_state = 13, .external_lex_state = 7}, - [3702] = {.lex_state = 13, .external_lex_state = 7}, + [3702] = {.lex_state = 2, .external_lex_state = 4}, [3703] = {.lex_state = 2, .external_lex_state = 4}, - [3704] = {.lex_state = 13, .external_lex_state = 7}, + [3704] = {.lex_state = 2, .external_lex_state = 4}, [3705] = {.lex_state = 2, .external_lex_state = 4}, [3706] = {.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 = 13, .external_lex_state = 7}, - [3710] = {.lex_state = 13, .external_lex_state = 6}, - [3711] = {.lex_state = 14, .external_lex_state = 7}, + [3707] = {.lex_state = 11, .external_lex_state = 5}, + [3708] = {.lex_state = 13, .external_lex_state = 7}, + [3709] = {.lex_state = 2, .external_lex_state = 4}, + [3710] = {.lex_state = 321, .external_lex_state = 2}, + [3711] = {.lex_state = 13, .external_lex_state = 7}, [3712] = {.lex_state = 13, .external_lex_state = 7}, - [3713] = {.lex_state = 13, .external_lex_state = 6}, + [3713] = {.lex_state = 321, .external_lex_state = 2}, [3714] = {.lex_state = 13, .external_lex_state = 7}, [3715] = {.lex_state = 13, .external_lex_state = 7}, - [3716] = {.lex_state = 13, .external_lex_state = 6}, - [3717] = {.lex_state = 13, .external_lex_state = 7}, - [3718] = {.lex_state = 13, .external_lex_state = 7}, + [3716] = {.lex_state = 2, .external_lex_state = 4}, + [3717] = {.lex_state = 2, .external_lex_state = 4}, + [3718] = {.lex_state = 13, .external_lex_state = 6}, [3719] = {.lex_state = 13, .external_lex_state = 7}, - [3720] = {.lex_state = 2, .external_lex_state = 4}, + [3720] = {.lex_state = 13, .external_lex_state = 7}, [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 = 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 = 13, .external_lex_state = 6}, - [3733] = {.lex_state = 13, .external_lex_state = 7}, + [3722] = {.lex_state = 13, .external_lex_state = 6}, + [3723] = {.lex_state = 13, .external_lex_state = 6}, + [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 = 14, .external_lex_state = 7}, + [3729] = {.lex_state = 14, .external_lex_state = 7}, + [3730] = {.lex_state = 11, .external_lex_state = 5}, + [3731] = {.lex_state = 13, .external_lex_state = 6}, + [3732] = {.lex_state = 14, .external_lex_state = 7}, + [3733] = {.lex_state = 13, .external_lex_state = 6}, [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 = 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 = 6}, - [3744] = {.lex_state = 13, .external_lex_state = 6}, - [3745] = {.lex_state = 13, .external_lex_state = 7}, + [3735] = {.lex_state = 13, .external_lex_state = 7}, + [3736] = {.lex_state = 14, .external_lex_state = 7}, + [3737] = {.lex_state = 14, .external_lex_state = 7}, + [3738] = {.lex_state = 14, .external_lex_state = 7}, + [3739] = {.lex_state = 14, .external_lex_state = 7}, + [3740] = {.lex_state = 14, .external_lex_state = 7}, + [3741] = {.lex_state = 13, .external_lex_state = 6}, + [3742] = {.lex_state = 14, .external_lex_state = 7}, + [3743] = {.lex_state = 14, .external_lex_state = 7}, + [3744] = {.lex_state = 14, .external_lex_state = 7}, + [3745] = {.lex_state = 14, .external_lex_state = 7}, [3746] = {.lex_state = 13, .external_lex_state = 7}, - [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}, + [3747] = {.lex_state = 14, .external_lex_state = 7}, + [3748] = {.lex_state = 14, .external_lex_state = 7}, + [3749] = {.lex_state = 14, .external_lex_state = 7}, + [3750] = {.lex_state = 14, .external_lex_state = 7}, [3751] = {.lex_state = 13, .external_lex_state = 6}, - [3752] = {.lex_state = 13, .external_lex_state = 6}, + [3752] = {.lex_state = 13, .external_lex_state = 7}, [3753] = {.lex_state = 13, .external_lex_state = 7}, [3754] = {.lex_state = 13, .external_lex_state = 7}, - [3755] = {.lex_state = 14, .external_lex_state = 7}, + [3755] = {.lex_state = 13, .external_lex_state = 7}, [3756] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3758] = {.lex_state = 13, .external_lex_state = 7}, + [3759] = {.lex_state = 13, .external_lex_state = 7}, + [3760] = {.lex_state = 11, .external_lex_state = 5}, [3761] = {.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 = 2, .external_lex_state = 4}, - [3765] = {.lex_state = 2, .external_lex_state = 4}, + [3762] = {.lex_state = 13, .external_lex_state = 7}, + [3763] = {.lex_state = 321, .external_lex_state = 2}, + [3764] = {.lex_state = 13, .external_lex_state = 7}, + [3765] = {.lex_state = 13, .external_lex_state = 6}, [3766] = {.lex_state = 13, .external_lex_state = 7}, - [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}, + [3767] = {.lex_state = 13, .external_lex_state = 6}, + [3768] = {.lex_state = 13, .external_lex_state = 6}, + [3769] = {.lex_state = 13, .external_lex_state = 6}, + [3770] = {.lex_state = 13, .external_lex_state = 7}, + [3771] = {.lex_state = 13, .external_lex_state = 6}, [3772] = {.lex_state = 13, .external_lex_state = 7}, - [3773] = {.lex_state = 14, .external_lex_state = 7}, - [3774] = {.lex_state = 14, .external_lex_state = 7}, + [3773] = {.lex_state = 13, .external_lex_state = 6}, + [3774] = {.lex_state = 13, .external_lex_state = 6}, [3775] = {.lex_state = 13, .external_lex_state = 7}, - [3776] = {.lex_state = 14, .external_lex_state = 7}, + [3776] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [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 = 13, .external_lex_state = 7}, [3782] = {.lex_state = 13, .external_lex_state = 7}, - [3783] = {.lex_state = 2, .external_lex_state = 4}, - [3784] = {.lex_state = 14, .external_lex_state = 7}, - [3785] = {.lex_state = 14, .external_lex_state = 7}, + [3783] = {.lex_state = 321, .external_lex_state = 2}, + [3784] = {.lex_state = 13, .external_lex_state = 7}, + [3785] = {.lex_state = 2, .external_lex_state = 4}, [3786] = {.lex_state = 13, .external_lex_state = 7}, - [3787] = {.lex_state = 14, .external_lex_state = 7}, + [3787] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3789] = {.lex_state = 13, .external_lex_state = 7}, + [3790] = {.lex_state = 13, .external_lex_state = 7}, + [3791] = {.lex_state = 321, .external_lex_state = 2}, + [3792] = {.lex_state = 13, .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 = 2, .external_lex_state = 4}, - [3798] = {.lex_state = 2, .external_lex_state = 4}, - [3799] = {.lex_state = 13, .external_lex_state = 7}, + [3795] = {.lex_state = 15, .external_lex_state = 7}, + [3796] = {.lex_state = 13, .external_lex_state = 7}, + [3797] = {.lex_state = 13, .external_lex_state = 7}, + [3798] = {.lex_state = 13, .external_lex_state = 6}, + [3799] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3802] = {.lex_state = 13, .external_lex_state = 6}, + [3803] = {.lex_state = 13, .external_lex_state = 6}, + [3804] = {.lex_state = 13, .external_lex_state = 7}, + [3805] = {.lex_state = 13, .external_lex_state = 6}, + [3806] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3808] = {.lex_state = 13, .external_lex_state = 7}, + [3809] = {.lex_state = 321, .external_lex_state = 2}, + [3810] = {.lex_state = 2, .external_lex_state = 4}, + [3811] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [3815] = {.lex_state = 2, .external_lex_state = 4}, [3816] = {.lex_state = 13, .external_lex_state = 7}, [3817] = {.lex_state = 13, .external_lex_state = 7}, - [3818] = {.lex_state = 15, .external_lex_state = 7}, + [3818] = {.lex_state = 13, .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 = 7}, - [3822] = {.lex_state = 13, .external_lex_state = 7}, - [3823] = {.lex_state = 13, .external_lex_state = 7}, - [3824] = {.lex_state = 318, .external_lex_state = 2}, + [3822] = {.lex_state = 2, .external_lex_state = 4}, + [3823] = {.lex_state = 2, .external_lex_state = 4}, + [3824] = {.lex_state = 2, .external_lex_state = 4}, [3825] = {.lex_state = 13, .external_lex_state = 7}, [3826] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3830] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, - [3835] = {.lex_state = 2, .external_lex_state = 4}, + [3835] = {.lex_state = 13, .external_lex_state = 7}, [3836] = {.lex_state = 13, .external_lex_state = 7}, [3837] = {.lex_state = 13, .external_lex_state = 7}, - [3838] = {.lex_state = 318, .external_lex_state = 2}, + [3838] = {.lex_state = 13, .external_lex_state = 7}, [3839] = {.lex_state = 13, .external_lex_state = 7}, [3840] = {.lex_state = 13, .external_lex_state = 7}, [3841] = {.lex_state = 13, .external_lex_state = 7}, @@ -27330,425 +23968,425 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3852] = {.lex_state = 13, .external_lex_state = 7}, [3853] = {.lex_state = 13, .external_lex_state = 7}, [3854] = {.lex_state = 13, .external_lex_state = 7}, - [3855] = {.lex_state = 2, .external_lex_state = 4}, + [3855] = {.lex_state = 13, .external_lex_state = 7}, [3856] = {.lex_state = 13, .external_lex_state = 7}, - [3857] = {.lex_state = 2, .external_lex_state = 4}, + [3857] = {.lex_state = 13, .external_lex_state = 7}, [3858] = {.lex_state = 13, .external_lex_state = 7}, - [3859] = {.lex_state = 13, .external_lex_state = 6}, + [3859] = {.lex_state = 14, .external_lex_state = 6}, [3860] = {.lex_state = 13, .external_lex_state = 7}, - [3861] = {.lex_state = 13, .external_lex_state = 7}, + [3861] = {.lex_state = 14, .external_lex_state = 6}, [3862] = {.lex_state = 13, .external_lex_state = 7}, [3863] = {.lex_state = 13, .external_lex_state = 7}, - [3864] = {.lex_state = 2, .external_lex_state = 4}, + [3864] = {.lex_state = 13, .external_lex_state = 7}, [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 = 2, .external_lex_state = 4}, - [3869] = {.lex_state = 2, .external_lex_state = 4}, + [3868] = {.lex_state = 13, .external_lex_state = 7}, + [3869] = {.lex_state = 13, .external_lex_state = 7}, [3870] = {.lex_state = 13, .external_lex_state = 7}, - [3871] = {.lex_state = 318, .external_lex_state = 2}, - [3872] = {.lex_state = 14, .external_lex_state = 6}, + [3871] = {.lex_state = 13, .external_lex_state = 7}, + [3872] = {.lex_state = 13, .external_lex_state = 7}, [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 = 318, .external_lex_state = 2}, + [3877] = {.lex_state = 13, .external_lex_state = 7}, [3878] = {.lex_state = 13, .external_lex_state = 7}, - [3879] = {.lex_state = 14, .external_lex_state = 6}, - [3880] = {.lex_state = 13, .external_lex_state = 7}, + [3879] = {.lex_state = 13, .external_lex_state = 7}, + [3880] = {.lex_state = 321, .external_lex_state = 2}, [3881] = {.lex_state = 13, .external_lex_state = 7}, [3882] = {.lex_state = 13, .external_lex_state = 7}, - [3883] = {.lex_state = 318, .external_lex_state = 2}, + [3883] = {.lex_state = 13, .external_lex_state = 7}, [3884] = {.lex_state = 13, .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}, - [3889] = {.lex_state = 318, .external_lex_state = 2}, + [3889] = {.lex_state = 13, .external_lex_state = 7}, [3890] = {.lex_state = 13, .external_lex_state = 7}, [3891] = {.lex_state = 13, .external_lex_state = 7}, - [3892] = {.lex_state = 13, .external_lex_state = 7}, + [3892] = {.lex_state = 13, .external_lex_state = 6}, [3893] = {.lex_state = 13, .external_lex_state = 7}, - [3894] = {.lex_state = 13, .external_lex_state = 7}, + [3894] = {.lex_state = 14, .external_lex_state = 6}, [3895] = {.lex_state = 13, .external_lex_state = 7}, [3896] = {.lex_state = 13, .external_lex_state = 7}, - [3897] = {.lex_state = 13, .external_lex_state = 7}, + [3897] = {.lex_state = 2, .external_lex_state = 4}, [3898] = {.lex_state = 13, .external_lex_state = 7}, [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 = 7}, [3903] = {.lex_state = 13, .external_lex_state = 7}, - [3904] = {.lex_state = 13, .external_lex_state = 7}, + [3904] = {.lex_state = 321, .external_lex_state = 2}, [3905] = {.lex_state = 13, .external_lex_state = 7}, [3906] = {.lex_state = 13, .external_lex_state = 7}, - [3907] = {.lex_state = 13, .external_lex_state = 7}, + [3907] = {.lex_state = 2, .external_lex_state = 4}, [3908] = {.lex_state = 2, .external_lex_state = 4}, - [3909] = {.lex_state = 13, .external_lex_state = 7}, + [3909] = {.lex_state = 2, .external_lex_state = 4}, [3910] = {.lex_state = 13, .external_lex_state = 7}, - [3911] = {.lex_state = 13, .external_lex_state = 6}, - [3912] = {.lex_state = 13, .external_lex_state = 7}, + [3911] = {.lex_state = 2, .external_lex_state = 4}, + [3912] = {.lex_state = 13, .external_lex_state = 6}, [3913] = {.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}, + [3914] = {.lex_state = 14, .external_lex_state = 6}, + [3915] = {.lex_state = 321, .external_lex_state = 2}, + [3916] = {.lex_state = 2, .external_lex_state = 4}, + [3917] = {.lex_state = 13, .external_lex_state = 7}, + [3918] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3920] = {.lex_state = 321, .external_lex_state = 2}, + [3921] = {.lex_state = 13, .external_lex_state = 7}, + [3922] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3924] = {.lex_state = 13, .external_lex_state = 7}, + [3925] = {.lex_state = 13, .external_lex_state = 7}, + [3926] = {.lex_state = 13, .external_lex_state = 7}, + [3927] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [3932] = {.lex_state = 13, .external_lex_state = 6}, + [3933] = {.lex_state = 2, .external_lex_state = 4}, [3934] = {.lex_state = 14, .external_lex_state = 6}, - [3935] = {.lex_state = 13, .external_lex_state = 7}, + [3935] = {.lex_state = 14, .external_lex_state = 6}, [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 = 2, .external_lex_state = 4}, - [3940] = {.lex_state = 14, .external_lex_state = 6}, - [3941] = {.lex_state = 14, .external_lex_state = 6}, + [3938] = {.lex_state = 14, .external_lex_state = 6}, + [3939] = {.lex_state = 13, .external_lex_state = 7}, + [3940] = {.lex_state = 13, .external_lex_state = 7}, + [3941] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, - [3947] = {.lex_state = 13, .external_lex_state = 7}, - [3948] = {.lex_state = 13, .external_lex_state = 7}, + [3947] = {.lex_state = 2, .external_lex_state = 4}, + [3948] = {.lex_state = 321, .external_lex_state = 2}, [3949] = {.lex_state = 13, .external_lex_state = 7}, [3950] = {.lex_state = 13, .external_lex_state = 7}, [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 = 6}, - [3955] = {.lex_state = 13, .external_lex_state = 7}, + [3954] = {.lex_state = 13, .external_lex_state = 7}, + [3955] = {.lex_state = 2, .external_lex_state = 4}, [3956] = {.lex_state = 13, .external_lex_state = 7}, - [3957] = {.lex_state = 318, .external_lex_state = 2}, + [3957] = {.lex_state = 13, .external_lex_state = 7}, [3958] = {.lex_state = 13, .external_lex_state = 7}, [3959] = {.lex_state = 13, .external_lex_state = 7}, [3960] = {.lex_state = 13, .external_lex_state = 7}, [3961] = {.lex_state = 13, .external_lex_state = 7}, - [3962] = {.lex_state = 13, .external_lex_state = 7}, + [3962] = {.lex_state = 2, .external_lex_state = 4}, [3963] = {.lex_state = 13, .external_lex_state = 7}, [3964] = {.lex_state = 13, .external_lex_state = 7}, - [3965] = {.lex_state = 2, .external_lex_state = 4}, + [3965] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, + [3970] = {.lex_state = 2, .external_lex_state = 4}, + [3971] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [3974] = {.lex_state = 13, .external_lex_state = 6}, + [3975] = {.lex_state = 13, .external_lex_state = 6}, + [3976] = {.lex_state = 13, .external_lex_state = 7}, [3977] = {.lex_state = 13, .external_lex_state = 7}, - [3978] = {.lex_state = 13, .external_lex_state = 7}, - [3979] = {.lex_state = 318, .external_lex_state = 2}, + [3978] = {.lex_state = 13, .external_lex_state = 6}, + [3979] = {.lex_state = 13, .external_lex_state = 7}, [3980] = {.lex_state = 13, .external_lex_state = 6}, - [3981] = {.lex_state = 13, .external_lex_state = 7}, + [3981] = {.lex_state = 13, .external_lex_state = 6}, [3982] = {.lex_state = 13, .external_lex_state = 7}, [3983] = {.lex_state = 13, .external_lex_state = 7}, - [3984] = {.lex_state = 13, .external_lex_state = 6}, + [3984] = {.lex_state = 13, .external_lex_state = 7}, [3985] = {.lex_state = 13, .external_lex_state = 7}, - [3986] = {.lex_state = 13, .external_lex_state = 7}, + [3986] = {.lex_state = 13, .external_lex_state = 6}, [3987] = {.lex_state = 13, .external_lex_state = 7}, [3988] = {.lex_state = 13, .external_lex_state = 7}, [3989] = {.lex_state = 13, .external_lex_state = 7}, - [3990] = {.lex_state = 13, .external_lex_state = 7}, - [3991] = {.lex_state = 13, .external_lex_state = 7}, + [3990] = {.lex_state = 13, .external_lex_state = 6}, + [3991] = {.lex_state = 2, .external_lex_state = 4}, [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 = 318, .external_lex_state = 2}, + [3998] = {.lex_state = 13, .external_lex_state = 7}, [3999] = {.lex_state = 13, .external_lex_state = 7}, [4000] = {.lex_state = 13, .external_lex_state = 7}, - [4001] = {.lex_state = 13, .external_lex_state = 7}, + [4001] = {.lex_state = 13, .external_lex_state = 6}, [4002] = {.lex_state = 13, .external_lex_state = 7}, [4003] = {.lex_state = 13, .external_lex_state = 7}, - [4004] = {.lex_state = 13, .external_lex_state = 6}, + [4004] = {.lex_state = 13, .external_lex_state = 7}, [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 = 6}, - [4009] = {.lex_state = 13, .external_lex_state = 6}, + [4008] = {.lex_state = 321, .external_lex_state = 2}, + [4009] = {.lex_state = 13, .external_lex_state = 7}, [4010] = {.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}, + [4011] = {.lex_state = 2, .external_lex_state = 4}, + [4012] = {.lex_state = 321, .external_lex_state = 2}, + [4013] = {.lex_state = 13, .external_lex_state = 7}, [4014] = {.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 = 13, .external_lex_state = 6}, + [4015] = {.lex_state = 13, .external_lex_state = 7}, + [4016] = {.lex_state = 13, .external_lex_state = 7}, + [4017] = {.lex_state = 321, .external_lex_state = 2}, + [4018] = {.lex_state = 321, .external_lex_state = 2}, + [4019] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 7}, [4024] = {.lex_state = 13, .external_lex_state = 7}, - [4025] = {.lex_state = 13, .external_lex_state = 7}, + [4025] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [4031] = {.lex_state = 321, .external_lex_state = 2}, [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}, + [4033] = {.lex_state = 13, .external_lex_state = 6}, + [4034] = {.lex_state = 13, .external_lex_state = 6}, + [4035] = {.lex_state = 13, .external_lex_state = 6}, + [4036] = {.lex_state = 13, .external_lex_state = 7}, [4037] = {.lex_state = 13, .external_lex_state = 7}, - [4038] = {.lex_state = 13, .external_lex_state = 7}, - [4039] = {.lex_state = 13, .external_lex_state = 7}, - [4040] = {.lex_state = 13, .external_lex_state = 7}, + [4038] = {.lex_state = 14, .external_lex_state = 6}, + [4039] = {.lex_state = 14, .external_lex_state = 6}, + [4040] = {.lex_state = 14, .external_lex_state = 6}, [4041] = {.lex_state = 13, .external_lex_state = 7}, - [4042] = {.lex_state = 13, .external_lex_state = 7}, - [4043] = {.lex_state = 13, .external_lex_state = 7}, + [4042] = {.lex_state = 13, .external_lex_state = 6}, + [4043] = {.lex_state = 14, .external_lex_state = 6}, [4044] = {.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}, + [4046] = {.lex_state = 13, .external_lex_state = 6}, + [4047] = {.lex_state = 13, .external_lex_state = 6}, + [4048] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [4050] = {.lex_state = 13, .external_lex_state = 6}, + [4051] = {.lex_state = 13, .external_lex_state = 6}, + [4052] = {.lex_state = 14, .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}, + [4054] = {.lex_state = 14, .external_lex_state = 7}, + [4055] = {.lex_state = 2, .external_lex_state = 4}, + [4056] = {.lex_state = 14, .external_lex_state = 7}, + [4057] = {.lex_state = 2, .external_lex_state = 4}, [4058] = {.lex_state = 13, .external_lex_state = 6}, [4059] = {.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 = 13, .external_lex_state = 6}, - [4065] = {.lex_state = 14, .external_lex_state = 7}, - [4066] = {.lex_state = 13, .external_lex_state = 7}, - [4067] = {.lex_state = 14, .external_lex_state = 7}, + [4060] = {.lex_state = 13, .external_lex_state = 6}, + [4061] = {.lex_state = 2, .external_lex_state = 4}, + [4062] = {.lex_state = 14, .external_lex_state = 7}, + [4063] = {.lex_state = 13, .external_lex_state = 7}, + [4064] = {.lex_state = 13, .external_lex_state = 7}, + [4065] = {.lex_state = 13, .external_lex_state = 7}, + [4066] = {.lex_state = 14, .external_lex_state = 7}, + [4067] = {.lex_state = 2, .external_lex_state = 4}, [4068] = {.lex_state = 2, .external_lex_state = 4}, - [4069] = {.lex_state = 14, .external_lex_state = 7}, + [4069] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [4071] = {.lex_state = 14, .external_lex_state = 7}, + [4072] = {.lex_state = 2, .external_lex_state = 4}, + [4073] = {.lex_state = 14, .external_lex_state = 7}, + [4074] = {.lex_state = 14, .external_lex_state = 7}, [4075] = {.lex_state = 13, .external_lex_state = 6}, - [4076] = {.lex_state = 13, .external_lex_state = 7}, + [4076] = {.lex_state = 2, .external_lex_state = 4}, [4077] = {.lex_state = 2, .external_lex_state = 4}, - [4078] = {.lex_state = 13, .external_lex_state = 7}, + [4078] = {.lex_state = 2, .external_lex_state = 4}, [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 = 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 = 6}, - [4099] = {.lex_state = 13, .external_lex_state = 7}, + [4081] = {.lex_state = 14, .external_lex_state = 7}, + [4082] = {.lex_state = 13, .external_lex_state = 6}, + [4083] = {.lex_state = 14, .external_lex_state = 7}, + [4084] = {.lex_state = 14, .external_lex_state = 7}, + [4085] = {.lex_state = 14, .external_lex_state = 7}, + [4086] = {.lex_state = 14, .external_lex_state = 7}, + [4087] = {.lex_state = 13, .external_lex_state = 7}, + [4088] = {.lex_state = 14, .external_lex_state = 7}, + [4089] = {.lex_state = 13, .external_lex_state = 6}, + [4090] = {.lex_state = 13, .external_lex_state = 6}, + [4091] = {.lex_state = 13, .external_lex_state = 6}, + [4092] = {.lex_state = 13, .external_lex_state = 6}, + [4093] = {.lex_state = 13, .external_lex_state = 6}, + [4094] = {.lex_state = 13, .external_lex_state = 6}, + [4095] = {.lex_state = 13, .external_lex_state = 7}, + [4096] = {.lex_state = 13, .external_lex_state = 6}, + [4097] = {.lex_state = 14, .external_lex_state = 6}, + [4098] = {.lex_state = 13, .external_lex_state = 7}, + [4099] = {.lex_state = 14, .external_lex_state = 6}, [4100] = {.lex_state = 13, .external_lex_state = 7}, - [4101] = {.lex_state = 14, .external_lex_state = 6}, + [4101] = {.lex_state = 13, .external_lex_state = 7}, [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 = 6}, - [4107] = {.lex_state = 14, .external_lex_state = 6}, - [4108] = {.lex_state = 14, .external_lex_state = 6}, + [4104] = {.lex_state = 13, .external_lex_state = 6}, + [4105] = {.lex_state = 14, .external_lex_state = 6}, + [4106] = {.lex_state = 13, .external_lex_state = 7}, + [4107] = {.lex_state = 13, .external_lex_state = 7}, + [4108] = {.lex_state = 13, .external_lex_state = 7}, [4109] = {.lex_state = 13, .external_lex_state = 7}, - [4110] = {.lex_state = 14, .external_lex_state = 6}, - [4111] = {.lex_state = 13, .external_lex_state = 7}, + [4110] = {.lex_state = 13, .external_lex_state = 7}, + [4111] = {.lex_state = 13, .external_lex_state = 6}, [4112] = {.lex_state = 13, .external_lex_state = 7}, [4113] = {.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 = 6}, + [4114] = {.lex_state = 13, .external_lex_state = 7}, + [4115] = {.lex_state = 13, .external_lex_state = 6}, + [4116] = {.lex_state = 14, .external_lex_state = 6}, [4117] = {.lex_state = 13, .external_lex_state = 7}, - [4118] = {.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 = 14, .external_lex_state = 6}, - [4123] = {.lex_state = 13, .external_lex_state = 6}, - [4124] = {.lex_state = 14, .external_lex_state = 6}, + [4118] = {.lex_state = 14, .external_lex_state = 6}, + [4119] = {.lex_state = 13, .external_lex_state = 6}, + [4120] = {.lex_state = 14, .external_lex_state = 6}, + [4121] = {.lex_state = 14, .external_lex_state = 6}, + [4122] = {.lex_state = 13, .external_lex_state = 6}, + [4123] = {.lex_state = 14, .external_lex_state = 6}, + [4124] = {.lex_state = 13, .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}, + [4127] = {.lex_state = 13, .external_lex_state = 6}, [4128] = {.lex_state = 14, .external_lex_state = 6}, - [4129] = {.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 = 6}, + [4129] = {.lex_state = 13, .external_lex_state = 6}, + [4130] = {.lex_state = 13, .external_lex_state = 7}, + [4131] = {.lex_state = 13, .external_lex_state = 7}, + [4132] = {.lex_state = 14, .external_lex_state = 6}, + [4133] = {.lex_state = 14, .external_lex_state = 6}, + [4134] = {.lex_state = 13, .external_lex_state = 7}, [4135] = {.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}, + [4136] = {.lex_state = 13, .external_lex_state = 7}, + [4137] = {.lex_state = 14, .external_lex_state = 6}, + [4138] = {.lex_state = 2, .external_lex_state = 3}, [4139] = {.lex_state = 14, .external_lex_state = 6}, - [4140] = {.lex_state = 13, .external_lex_state = 6}, - [4141] = {.lex_state = 14, .external_lex_state = 6}, + [4140] = {.lex_state = 14, .external_lex_state = 6}, + [4141] = {.lex_state = 2, .external_lex_state = 3}, [4142] = {.lex_state = 13, .external_lex_state = 7}, - [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 = 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}, + [4143] = {.lex_state = 13, .external_lex_state = 7}, + [4144] = {.lex_state = 13, .external_lex_state = 7}, + [4145] = {.lex_state = 14, .external_lex_state = 6}, + [4146] = {.lex_state = 13, .external_lex_state = 7}, + [4147] = {.lex_state = 14, .external_lex_state = 6}, + [4148] = {.lex_state = 13, .external_lex_state = 7}, + [4149] = {.lex_state = 13, .external_lex_state = 7}, + [4150] = {.lex_state = 13, .external_lex_state = 6}, [4151] = {.lex_state = 13, .external_lex_state = 7}, [4152] = {.lex_state = 13, .external_lex_state = 7}, - [4153] = {.lex_state = 2, .external_lex_state = 4}, + [4153] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [4158] = {.lex_state = 2, .external_lex_state = 4}, + [4159] = {.lex_state = 2, .external_lex_state = 4}, + [4160] = {.lex_state = 13, .external_lex_state = 7}, + [4161] = {.lex_state = 13, .external_lex_state = 7}, + [4162] = {.lex_state = 2, .external_lex_state = 4}, + [4163] = {.lex_state = 2, .external_lex_state = 4}, [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}, + [4167] = {.lex_state = 13, .external_lex_state = 6}, + [4168] = {.lex_state = 2, .external_lex_state = 4}, + [4169] = {.lex_state = 2, .external_lex_state = 4}, + [4170] = {.lex_state = 13, .external_lex_state = 6}, + [4171] = {.lex_state = 13, .external_lex_state = 7}, + [4172] = {.lex_state = 2, .external_lex_state = 4}, + [4173] = {.lex_state = 2, .external_lex_state = 4}, + [4174] = {.lex_state = 2, .external_lex_state = 4}, + [4175] = {.lex_state = 13, .external_lex_state = 6}, + [4176] = {.lex_state = 13, .external_lex_state = 6}, [4177] = {.lex_state = 2, .external_lex_state = 4}, - [4178] = {.lex_state = 2, .external_lex_state = 4}, + [4178] = {.lex_state = 13, .external_lex_state = 6}, [4179] = {.lex_state = 13, .external_lex_state = 6}, - [4180] = {.lex_state = 2, .external_lex_state = 4}, + [4180] = {.lex_state = 13, .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}, + [4183] = {.lex_state = 13, .external_lex_state = 6}, + [4184] = {.lex_state = 13, .external_lex_state = 6}, + [4185] = {.lex_state = 13, .external_lex_state = 6}, + [4186] = {.lex_state = 13, .external_lex_state = 7}, [4187] = {.lex_state = 13, .external_lex_state = 6}, - [4188] = {.lex_state = 13, .external_lex_state = 6}, + [4188] = {.lex_state = 13, .external_lex_state = 7}, [4189] = {.lex_state = 13, .external_lex_state = 7}, - [4190] = {.lex_state = 13, .external_lex_state = 6}, + [4190] = {.lex_state = 10, .external_lex_state = 2}, [4191] = {.lex_state = 13, .external_lex_state = 6}, - [4192] = {.lex_state = 2, .external_lex_state = 4}, - [4193] = {.lex_state = 13, .external_lex_state = 6}, - [4194] = {.lex_state = 13, .external_lex_state = 6}, + [4192] = {.lex_state = 13, .external_lex_state = 6}, + [4193] = {.lex_state = 13, .external_lex_state = 7}, + [4194] = {.lex_state = 13, .external_lex_state = 7}, [4195] = {.lex_state = 13, .external_lex_state = 7}, - [4196] = {.lex_state = 13, .external_lex_state = 7}, + [4196] = {.lex_state = 13, .external_lex_state = 6}, [4197] = {.lex_state = 13, .external_lex_state = 6}, - [4198] = {.lex_state = 13, .external_lex_state = 6}, + [4198] = {.lex_state = 13, .external_lex_state = 7}, [4199] = {.lex_state = 13, .external_lex_state = 7}, [4200] = {.lex_state = 13, .external_lex_state = 6}, - [4201] = {.lex_state = 13, .external_lex_state = 6}, + [4201] = {.lex_state = 13, .external_lex_state = 7}, [4202] = {.lex_state = 13, .external_lex_state = 6}, - [4203] = {.lex_state = 13, .external_lex_state = 7}, - [4204] = {.lex_state = 13, .external_lex_state = 7}, + [4203] = {.lex_state = 13, .external_lex_state = 6}, + [4204] = {.lex_state = 13, .external_lex_state = 6}, [4205] = {.lex_state = 13, .external_lex_state = 7}, - [4206] = {.lex_state = 13, .external_lex_state = 6}, + [4206] = {.lex_state = 13, .external_lex_state = 7}, [4207] = {.lex_state = 13, .external_lex_state = 7}, [4208] = {.lex_state = 13, .external_lex_state = 6}, - [4209] = {.lex_state = 13, .external_lex_state = 7}, + [4209] = {.lex_state = 13, .external_lex_state = 6}, [4210] = {.lex_state = 13, .external_lex_state = 7}, - [4211] = {.lex_state = 13, .external_lex_state = 7}, + [4211] = {.lex_state = 13, .external_lex_state = 6}, [4212] = {.lex_state = 13, .external_lex_state = 7}, - [4213] = {.lex_state = 13, .external_lex_state = 6}, + [4213] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 6}, - [4218] = {.lex_state = 13, .external_lex_state = 7}, - [4219] = {.lex_state = 13, .external_lex_state = 6}, + [4216] = {.lex_state = 13, .external_lex_state = 6}, + [4217] = {.lex_state = 13, .external_lex_state = 7}, + [4218] = {.lex_state = 13, .external_lex_state = 6}, + [4219] = {.lex_state = 13, .external_lex_state = 7}, [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 = 13, .external_lex_state = 6}, + [4224] = {.lex_state = 13, .external_lex_state = 7}, [4225] = {.lex_state = 14, .external_lex_state = 7}, - [4226] = {.lex_state = 13, .external_lex_state = 7}, + [4226] = {.lex_state = 14, .external_lex_state = 7}, [4227] = {.lex_state = 14, .external_lex_state = 7}, - [4228] = {.lex_state = 13, .external_lex_state = 6}, + [4228] = {.lex_state = 13, .external_lex_state = 7}, [4229] = {.lex_state = 13, .external_lex_state = 7}, - [4230] = {.lex_state = 14, .external_lex_state = 7}, + [4230] = {.lex_state = 13, .external_lex_state = 7}, [4231] = {.lex_state = 13, .external_lex_state = 7}, - [4232] = {.lex_state = 13, .external_lex_state = 7}, + [4232] = {.lex_state = 14, .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 = 7}, - [4236] = {.lex_state = 13, .external_lex_state = 7}, + [4234] = {.lex_state = 14, .external_lex_state = 7}, + [4235] = {.lex_state = 13, .external_lex_state = 7}, + [4236] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4242] = {.lex_state = 13, .external_lex_state = 7}, + [4243] = {.lex_state = 14, .external_lex_state = 7}, [4244] = {.lex_state = 14, .external_lex_state = 7}, - [4245] = {.lex_state = 13, .external_lex_state = 7}, - [4246] = {.lex_state = 14, .external_lex_state = 7}, + [4245] = {.lex_state = 13, .external_lex_state = 6}, + [4246] = {.lex_state = 13, .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}, + [4248] = {.lex_state = 13, .external_lex_state = 7}, + [4249] = {.lex_state = 13, .external_lex_state = 7}, [4250] = {.lex_state = 14, .external_lex_state = 7}, - [4251] = {.lex_state = 14, .external_lex_state = 7}, + [4251] = {.lex_state = 13, .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}, + [4253] = {.lex_state = 13, .external_lex_state = 6}, + [4254] = {.lex_state = 13, .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}, + [4256] = {.lex_state = 14, .external_lex_state = 7}, + [4257] = {.lex_state = 14, .external_lex_state = 7}, [4258] = {.lex_state = 13, .external_lex_state = 7}, - [4259] = {.lex_state = 13, .external_lex_state = 7}, + [4259] = {.lex_state = 14, .external_lex_state = 7}, [4260] = {.lex_state = 14, .external_lex_state = 6}, - [4261] = {.lex_state = 14, .external_lex_state = 6}, - [4262] = {.lex_state = 13, .external_lex_state = 7}, + [4261] = {.lex_state = 13, .external_lex_state = 7}, + [4262] = {.lex_state = 14, .external_lex_state = 6}, [4263] = {.lex_state = 13, .external_lex_state = 7}, - [4264] = {.lex_state = 13, .external_lex_state = 7}, + [4264] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4267] = {.lex_state = 13, .external_lex_state = 7}, + [4268] = {.lex_state = 14, .external_lex_state = 6}, [4269] = {.lex_state = 14, .external_lex_state = 6}, - [4270] = {.lex_state = 13, .external_lex_state = 7}, + [4270] = {.lex_state = 14, .external_lex_state = 6}, [4271] = {.lex_state = 14, .external_lex_state = 6}, [4272] = {.lex_state = 13, .external_lex_state = 7}, [4273] = {.lex_state = 14, .external_lex_state = 6}, @@ -27758,26 +24396,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4280] = {.lex_state = 14, .external_lex_state = 6}, + [4281] = {.lex_state = 13, .external_lex_state = 7}, + [4282] = {.lex_state = 13, .external_lex_state = 7}, [4283] = {.lex_state = 14, .external_lex_state = 6}, - [4284] = {.lex_state = 14, .external_lex_state = 6}, - [4285] = {.lex_state = 14, .external_lex_state = 7}, + [4284] = {.lex_state = 13, .external_lex_state = 7}, + [4285] = {.lex_state = 13, .external_lex_state = 6}, [4286] = {.lex_state = 13, .external_lex_state = 6}, - [4287] = {.lex_state = 13, .external_lex_state = 6}, + [4287] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4289] = {.lex_state = 14, .external_lex_state = 7}, + [4290] = {.lex_state = 13, .external_lex_state = 6}, + [4291] = {.lex_state = 14, .external_lex_state = 7}, [4292] = {.lex_state = 14, .external_lex_state = 7}, [4293] = {.lex_state = 14, .external_lex_state = 7}, - [4294] = {.lex_state = 13, .external_lex_state = 6}, + [4294] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4296] = {.lex_state = 14, .external_lex_state = 7}, + [4297] = {.lex_state = 13, .external_lex_state = 6}, + [4298] = {.lex_state = 13, .external_lex_state = 6}, + [4299] = {.lex_state = 13, .external_lex_state = 6}, [4300] = {.lex_state = 14, .external_lex_state = 7}, [4301] = {.lex_state = 14, .external_lex_state = 7}, [4302] = {.lex_state = 14, .external_lex_state = 7}, @@ -27787,96 +24425,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4309] = {.lex_state = 13, .external_lex_state = 7}, [4310] = {.lex_state = 14, .external_lex_state = 6}, - [4311] = {.lex_state = 13, .external_lex_state = 7}, + [4311] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4315] = {.lex_state = 14, .external_lex_state = 6}, + [4316] = {.lex_state = 13, .external_lex_state = 7}, + [4317] = {.lex_state = 14, .external_lex_state = 6}, [4318] = {.lex_state = 13, .external_lex_state = 7}, - [4319] = {.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}, + [4319] = {.lex_state = 14, .external_lex_state = 6}, + [4320] = {.lex_state = 13, .external_lex_state = 7}, + [4321] = {.lex_state = 13, .external_lex_state = 7}, + [4322] = {.lex_state = 14, .external_lex_state = 6}, [4323] = {.lex_state = 14, .external_lex_state = 6}, - [4324] = {.lex_state = 14, .external_lex_state = 6}, + [4324] = {.lex_state = 13, .external_lex_state = 7}, [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}, + [4326] = {.lex_state = 23, .external_lex_state = 8}, + [4327] = {.lex_state = 23, .external_lex_state = 8}, + [4328] = {.lex_state = 14, .external_lex_state = 6}, + [4329] = {.lex_state = 23, .external_lex_state = 8}, + [4330] = {.lex_state = 14, .external_lex_state = 6}, + [4331] = {.lex_state = 14, .external_lex_state = 6}, + [4332] = {.lex_state = 23, .external_lex_state = 8}, + [4333] = {.lex_state = 23, .external_lex_state = 8}, + [4334] = {.lex_state = 23, .external_lex_state = 8}, + [4335] = {.lex_state = 23, .external_lex_state = 8}, + [4336] = {.lex_state = 321, .external_lex_state = 2}, + [4337] = {.lex_state = 23, .external_lex_state = 8}, + [4338] = {.lex_state = 23, .external_lex_state = 8}, + [4339] = {.lex_state = 321, .external_lex_state = 2}, + [4340] = {.lex_state = 23, .external_lex_state = 8}, + [4341] = {.lex_state = 23, .external_lex_state = 8}, + [4342] = {.lex_state = 23, .external_lex_state = 8}, + [4343] = {.lex_state = 23, .external_lex_state = 8}, + [4344] = {.lex_state = 23, .external_lex_state = 8}, + [4345] = {.lex_state = 23, .external_lex_state = 8}, + [4346] = {.lex_state = 23, .external_lex_state = 8}, + [4347] = {.lex_state = 23, .external_lex_state = 8}, + [4348] = {.lex_state = 14, .external_lex_state = 6}, + [4349] = {.lex_state = 14, .external_lex_state = 6}, + [4350] = {.lex_state = 14, .external_lex_state = 6}, + [4351] = {.lex_state = 14, .external_lex_state = 6}, + [4352] = {.lex_state = 23, .external_lex_state = 8}, + [4353] = {.lex_state = 23, .external_lex_state = 8}, + [4354] = {.lex_state = 14, .external_lex_state = 6}, + [4355] = {.lex_state = 23, .external_lex_state = 8}, + [4356] = {.lex_state = 14, .external_lex_state = 6}, + [4357] = {.lex_state = 23, .external_lex_state = 8}, + [4358] = {.lex_state = 23, .external_lex_state = 8}, + [4359] = {.lex_state = 14, .external_lex_state = 6}, + [4360] = {.lex_state = 23, .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}, + [4362] = {.lex_state = 23, .external_lex_state = 8}, + [4363] = {.lex_state = 14, .external_lex_state = 6}, [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 = 21, .external_lex_state = 8}, - [4376] = {.lex_state = 14, .external_lex_state = 6}, - [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 = 21, .external_lex_state = 8}, + [4365] = {.lex_state = 23, .external_lex_state = 8}, + [4366] = {.lex_state = 23, .external_lex_state = 8}, + [4367] = {.lex_state = 23, .external_lex_state = 8}, + [4368] = {.lex_state = 14, .external_lex_state = 6}, + [4369] = {.lex_state = 23, .external_lex_state = 8}, + [4370] = {.lex_state = 23, .external_lex_state = 8}, + [4371] = {.lex_state = 23, .external_lex_state = 8}, + [4372] = {.lex_state = 23, .external_lex_state = 8}, + [4373] = {.lex_state = 23, .external_lex_state = 8}, + [4374] = {.lex_state = 23, .external_lex_state = 8}, + [4375] = {.lex_state = 23, .external_lex_state = 8}, + [4376] = {.lex_state = 23, .external_lex_state = 8}, + [4377] = {.lex_state = 23, .external_lex_state = 8}, + [4378] = {.lex_state = 23, .external_lex_state = 8}, + [4379] = {.lex_state = 23, .external_lex_state = 8}, + [4380] = {.lex_state = 23, .external_lex_state = 8}, + [4381] = {.lex_state = 23, .external_lex_state = 8}, + [4382] = {.lex_state = 14, .external_lex_state = 6}, [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 = 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}, + [4384] = {.lex_state = 23, .external_lex_state = 8}, + [4385] = {.lex_state = 23, .external_lex_state = 8}, + [4386] = {.lex_state = 23, .external_lex_state = 8}, + [4387] = {.lex_state = 23, .external_lex_state = 8}, + [4388] = {.lex_state = 23, .external_lex_state = 8}, + [4389] = {.lex_state = 23, .external_lex_state = 8}, + [4390] = {.lex_state = 23, .external_lex_state = 8}, + [4391] = {.lex_state = 23, .external_lex_state = 8}, + [4392] = {.lex_state = 23, .external_lex_state = 8}, + [4393] = {.lex_state = 23, .external_lex_state = 8}, + [4394] = {.lex_state = 23, .external_lex_state = 8}, + [4395] = {.lex_state = 23, .external_lex_state = 8}, + [4396] = {.lex_state = 23, .external_lex_state = 8}, + [4397] = {.lex_state = 23, .external_lex_state = 8}, + [4398] = {.lex_state = 23, .external_lex_state = 8}, [4399] = {.lex_state = 14, .external_lex_state = 6}, [4400] = {.lex_state = 14, .external_lex_state = 6}, [4401] = {.lex_state = 14, .external_lex_state = 6}, @@ -28013,51 +24651,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4532] = {.lex_state = 14, .external_lex_state = 6}, [4533] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, + [4535] = {.lex_state = 12, .external_lex_state = 5}, + [4536] = {.lex_state = 12, .external_lex_state = 5}, + [4537] = {.lex_state = 14, .external_lex_state = 6}, [4538] = {.lex_state = 14, .external_lex_state = 6}, [4539] = {.lex_state = 14, .external_lex_state = 6}, - [4540] = {.lex_state = 14, .external_lex_state = 6}, + [4540] = {.lex_state = 12, .external_lex_state = 5}, [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 = 12, .external_lex_state = 5}, - [4545] = {.lex_state = 12, .external_lex_state = 5}, + [4544] = {.lex_state = 14, .external_lex_state = 6}, + [4545] = {.lex_state = 14, .external_lex_state = 6}, [4546] = {.lex_state = 14, .external_lex_state = 6}, [4547] = {.lex_state = 14, .external_lex_state = 6}, - [4548] = {.lex_state = 12, .external_lex_state = 5}, - [4549] = {.lex_state = 14, .external_lex_state = 7}, + [4548] = {.lex_state = 14, .external_lex_state = 6}, + [4549] = {.lex_state = 14, .external_lex_state = 6}, [4550] = {.lex_state = 14, .external_lex_state = 6}, - [4551] = {.lex_state = 14, .external_lex_state = 7}, - [4552] = {.lex_state = 14, .external_lex_state = 6}, + [4551] = {.lex_state = 14, .external_lex_state = 6}, + [4552] = {.lex_state = 14, .external_lex_state = 7}, [4553] = {.lex_state = 14, .external_lex_state = 6}, [4554] = {.lex_state = 14, .external_lex_state = 6}, - [4555] = {.lex_state = 14, .external_lex_state = 7}, + [4555] = {.lex_state = 14, .external_lex_state = 6}, [4556] = {.lex_state = 14, .external_lex_state = 6}, [4557] = {.lex_state = 14, .external_lex_state = 6}, [4558] = {.lex_state = 14, .external_lex_state = 6}, [4559] = {.lex_state = 14, .external_lex_state = 6}, - [4560] = {.lex_state = 14, .external_lex_state = 6}, + [4560] = {.lex_state = 14, .external_lex_state = 7}, [4561] = {.lex_state = 14, .external_lex_state = 6}, [4562] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, - [4567] = {.lex_state = 12, .external_lex_state = 5}, - [4568] = {.lex_state = 12, .external_lex_state = 5}, + [4567] = {.lex_state = 14, .external_lex_state = 6}, + [4568] = {.lex_state = 14, .external_lex_state = 6}, [4569] = {.lex_state = 14, .external_lex_state = 6}, - [4570] = {.lex_state = 14, .external_lex_state = 6}, - [4571] = {.lex_state = 14, .external_lex_state = 6}, + [4570] = {.lex_state = 14, .external_lex_state = 7}, + [4571] = {.lex_state = 12, .external_lex_state = 5}, [4572] = {.lex_state = 14, .external_lex_state = 6}, [4573] = {.lex_state = 14, .external_lex_state = 6}, [4574] = {.lex_state = 14, .external_lex_state = 6}, [4575] = {.lex_state = 14, .external_lex_state = 6}, [4576] = {.lex_state = 14, .external_lex_state = 6}, [4577] = {.lex_state = 14, .external_lex_state = 6}, - [4578] = {.lex_state = 14, .external_lex_state = 6}, - [4579] = {.lex_state = 14, .external_lex_state = 6}, + [4578] = {.lex_state = 12, .external_lex_state = 5}, + [4579] = {.lex_state = 12, .external_lex_state = 5}, [4580] = {.lex_state = 14, .external_lex_state = 6}, [4581] = {.lex_state = 14, .external_lex_state = 6}, [4582] = {.lex_state = 14, .external_lex_state = 6}, @@ -28071,145 +24709,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4590] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, + [4593] = {.lex_state = 12, .external_lex_state = 5}, + [4594] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, + [4599] = {.lex_state = 12, .external_lex_state = 5}, [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 = 12, .external_lex_state = 5}, - [4605] = {.lex_state = 12, .external_lex_state = 5}, + [4603] = {.lex_state = 12, .external_lex_state = 5}, + [4604] = {.lex_state = 14, .external_lex_state = 6}, + [4605] = {.lex_state = 14, .external_lex_state = 6}, [4606] = {.lex_state = 14, .external_lex_state = 6}, [4607] = {.lex_state = 14, .external_lex_state = 6}, - [4608] = {.lex_state = 12, .external_lex_state = 5}, + [4608] = {.lex_state = 14, .external_lex_state = 6}, [4609] = {.lex_state = 14, .external_lex_state = 6}, - [4610] = {.lex_state = 12, .external_lex_state = 5}, + [4610] = {.lex_state = 14, .external_lex_state = 6}, [4611] = {.lex_state = 14, .external_lex_state = 6}, [4612] = {.lex_state = 14, .external_lex_state = 7}, - [4613] = {.lex_state = 14, .external_lex_state = 6}, + [4613] = {.lex_state = 12, .external_lex_state = 5}, [4614] = {.lex_state = 14, .external_lex_state = 6}, [4615] = {.lex_state = 14, .external_lex_state = 6}, [4616] = {.lex_state = 14, .external_lex_state = 6}, [4617] = {.lex_state = 14, .external_lex_state = 6}, - [4618] = {.lex_state = 14, .external_lex_state = 6}, - [4619] = {.lex_state = 14, .external_lex_state = 6}, + [4618] = {.lex_state = 14, .external_lex_state = 7}, + [4619] = {.lex_state = 14, .external_lex_state = 7}, [4620] = {.lex_state = 14, .external_lex_state = 6}, - [4621] = {.lex_state = 14, .external_lex_state = 6}, + [4621] = {.lex_state = 12, .external_lex_state = 5}, [4622] = {.lex_state = 14, .external_lex_state = 6}, - [4623] = {.lex_state = 14, .external_lex_state = 6}, - [4624] = {.lex_state = 14, .external_lex_state = 6}, - [4625] = {.lex_state = 14, .external_lex_state = 6}, + [4623] = {.lex_state = 14, .external_lex_state = 7}, + [4624] = {.lex_state = 14, .external_lex_state = 7}, + [4625] = {.lex_state = 12, .external_lex_state = 5}, [4626] = {.lex_state = 14, .external_lex_state = 6}, - [4627] = {.lex_state = 14, .external_lex_state = 6}, - [4628] = {.lex_state = 14, .external_lex_state = 7}, + [4627] = {.lex_state = 14, .external_lex_state = 7}, + [4628] = {.lex_state = 12, .external_lex_state = 5}, [4629] = {.lex_state = 14, .external_lex_state = 6}, - [4630] = {.lex_state = 12, .external_lex_state = 5}, + [4630] = {.lex_state = 14, .external_lex_state = 6}, [4631] = {.lex_state = 14, .external_lex_state = 6}, - [4632] = {.lex_state = 14, .external_lex_state = 6}, - [4633] = {.lex_state = 12, .external_lex_state = 5}, + [4632] = {.lex_state = 12, .external_lex_state = 5}, + [4633] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, - [4641] = {.lex_state = 14, .external_lex_state = 7}, + [4639] = {.lex_state = 14, .external_lex_state = 7}, + [4640] = {.lex_state = 14, .external_lex_state = 6}, + [4641] = {.lex_state = 14, .external_lex_state = 6}, [4642] = {.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}, + [4643] = {.lex_state = 14, .external_lex_state = 6}, + [4644] = {.lex_state = 12, .external_lex_state = 5}, + [4645] = {.lex_state = 14, .external_lex_state = 6}, + [4646] = {.lex_state = 14, .external_lex_state = 6}, + [4647] = {.lex_state = 14, .external_lex_state = 7}, [4648] = {.lex_state = 14, .external_lex_state = 6}, [4649] = {.lex_state = 14, .external_lex_state = 6}, - [4650] = {.lex_state = 14, .external_lex_state = 6}, - [4651] = {.lex_state = 14, .external_lex_state = 7}, + [4650] = {.lex_state = 12, .external_lex_state = 5}, + [4651] = {.lex_state = 14, .external_lex_state = 6}, [4652] = {.lex_state = 14, .external_lex_state = 6}, [4653] = {.lex_state = 14, .external_lex_state = 6}, - [4654] = {.lex_state = 14, .external_lex_state = 6}, + [4654] = {.lex_state = 14, .external_lex_state = 7}, [4655] = {.lex_state = 14, .external_lex_state = 6}, - [4656] = {.lex_state = 14, .external_lex_state = 6}, + [4656] = {.lex_state = 14, .external_lex_state = 7}, [4657] = {.lex_state = 14, .external_lex_state = 6}, - [4658] = {.lex_state = 14, .external_lex_state = 6}, + [4658] = {.lex_state = 14, .external_lex_state = 7}, [4659] = {.lex_state = 14, .external_lex_state = 6}, [4660] = {.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 = 12, .external_lex_state = 5}, + [4663] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, - [4669] = {.lex_state = 14, .external_lex_state = 6}, - [4670] = {.lex_state = 12, .external_lex_state = 5}, - [4671] = {.lex_state = 14, .external_lex_state = 6}, + [4665] = {.lex_state = 14, .external_lex_state = 6}, + [4666] = {.lex_state = 12, .external_lex_state = 5}, + [4667] = {.lex_state = 12, .external_lex_state = 5}, + [4668] = {.lex_state = 14, .external_lex_state = 6}, + [4669] = {.lex_state = 12, .external_lex_state = 5}, + [4670] = {.lex_state = 14, .external_lex_state = 6}, + [4671] = {.lex_state = 12, .external_lex_state = 5}, [4672] = {.lex_state = 14, .external_lex_state = 6}, - [4673] = {.lex_state = 12, .external_lex_state = 5}, + [4673] = {.lex_state = 14, .external_lex_state = 6}, [4674] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, - [4679] = {.lex_state = 14, .external_lex_state = 6}, + [4678] = {.lex_state = 14, .external_lex_state = 6}, + [4679] = {.lex_state = 14, .external_lex_state = 7}, [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 = 7}, - [4684] = {.lex_state = 16, .external_lex_state = 6}, + [4683] = {.lex_state = 14, .external_lex_state = 6}, + [4684] = {.lex_state = 12, .external_lex_state = 5}, [4685] = {.lex_state = 14, .external_lex_state = 6}, - [4686] = {.lex_state = 14, .external_lex_state = 7}, - [4687] = {.lex_state = 14, .external_lex_state = 7}, + [4686] = {.lex_state = 14, .external_lex_state = 6}, + [4687] = {.lex_state = 16, .external_lex_state = 6}, [4688] = {.lex_state = 14, .external_lex_state = 6}, - [4689] = {.lex_state = 14, .external_lex_state = 6}, + [4689] = {.lex_state = 14, .external_lex_state = 7}, [4690] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, - [4696] = {.lex_state = 14, .external_lex_state = 7}, - [4697] = {.lex_state = 14, .external_lex_state = 7}, + [4695] = {.lex_state = 14, .external_lex_state = 6}, + [4696] = {.lex_state = 14, .external_lex_state = 6}, + [4697] = {.lex_state = 12, .external_lex_state = 5}, [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 = 14, .external_lex_state = 6}, + [4701] = {.lex_state = 14, .external_lex_state = 7}, [4702] = {.lex_state = 14, .external_lex_state = 6}, - [4703] = {.lex_state = 14, .external_lex_state = 6}, - [4704] = {.lex_state = 14, .external_lex_state = 7}, + [4703] = {.lex_state = 14, .external_lex_state = 7}, + [4704] = {.lex_state = 14, .external_lex_state = 6}, [4705] = {.lex_state = 14, .external_lex_state = 7}, - [4706] = {.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}, + [4706] = {.lex_state = 14, .external_lex_state = 7}, + [4707] = {.lex_state = 14, .external_lex_state = 6}, + [4708] = {.lex_state = 14, .external_lex_state = 6}, + [4709] = {.lex_state = 14, .external_lex_state = 7}, [4710] = {.lex_state = 14, .external_lex_state = 6}, [4711] = {.lex_state = 14, .external_lex_state = 6}, - [4712] = {.lex_state = 14, .external_lex_state = 7}, - [4713] = {.lex_state = 14, .external_lex_state = 6}, + [4712] = {.lex_state = 14, .external_lex_state = 6}, + [4713] = {.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}, + [4715] = {.lex_state = 14, .external_lex_state = 7}, + [4716] = {.lex_state = 14, .external_lex_state = 7}, + [4717] = {.lex_state = 14, .external_lex_state = 7}, + [4718] = {.lex_state = 14, .external_lex_state = 7}, [4719] = {.lex_state = 14, .external_lex_state = 6}, - [4720] = {.lex_state = 12, .external_lex_state = 5}, + [4720] = {.lex_state = 14, .external_lex_state = 6}, [4721] = {.lex_state = 14, .external_lex_state = 6}, [4722] = {.lex_state = 14, .external_lex_state = 7}, - [4723] = {.lex_state = 14, .external_lex_state = 7}, + [4723] = {.lex_state = 14, .external_lex_state = 6}, [4724] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4728] = {.lex_state = 14, .external_lex_state = 7}, [4729] = {.lex_state = 14, .external_lex_state = 6}, [4730] = {.lex_state = 14, .external_lex_state = 6}, - [4731] = {.lex_state = 14, .external_lex_state = 6}, + [4731] = {.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}, @@ -28220,16 +24858,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4739] = {.lex_state = 14, .external_lex_state = 6}, [4740] = {.lex_state = 14, .external_lex_state = 6}, [4741] = {.lex_state = 14, .external_lex_state = 7}, - [4742] = {.lex_state = 14, .external_lex_state = 6}, - [4743] = {.lex_state = 14, .external_lex_state = 7}, + [4742] = {.lex_state = 14, .external_lex_state = 7}, + [4743] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, + [4747] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, + [4750] = {.lex_state = 14, .external_lex_state = 7}, + [4751] = {.lex_state = 14, .external_lex_state = 6}, [4752] = {.lex_state = 14, .external_lex_state = 6}, [4753] = {.lex_state = 14, .external_lex_state = 6}, [4754] = {.lex_state = 14, .external_lex_state = 6}, @@ -28243,8 +24881,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4762] = {.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}, + [4765] = {.lex_state = 14, .external_lex_state = 6}, + [4766] = {.lex_state = 14, .external_lex_state = 7}, [4767] = {.lex_state = 14, .external_lex_state = 6}, [4768] = {.lex_state = 14, .external_lex_state = 6}, [4769] = {.lex_state = 14, .external_lex_state = 6}, @@ -28252,68 +24890,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4774] = {.lex_state = 14, .external_lex_state = 7}, [4775] = {.lex_state = 14, .external_lex_state = 6}, - [4776] = {.lex_state = 14, .external_lex_state = 7}, - [4777] = {.lex_state = 14, .external_lex_state = 6}, - [4778] = {.lex_state = 14, .external_lex_state = 7}, + [4776] = {.lex_state = 14, .external_lex_state = 6}, + [4777] = {.lex_state = 14, .external_lex_state = 7}, + [4778] = {.lex_state = 14, .external_lex_state = 6}, [4779] = {.lex_state = 14, .external_lex_state = 6}, [4780] = {.lex_state = 14, .external_lex_state = 6}, - [4781] = {.lex_state = 14, .external_lex_state = 7}, + [4781] = {.lex_state = 12, .external_lex_state = 5}, [4782] = {.lex_state = 14, .external_lex_state = 6}, - [4783] = {.lex_state = 14, .external_lex_state = 7}, + [4783] = {.lex_state = 14, .external_lex_state = 6}, [4784] = {.lex_state = 14, .external_lex_state = 6}, - [4785] = {.lex_state = 14, .external_lex_state = 6}, + [4785] = {.lex_state = 14, .external_lex_state = 7}, [4786] = {.lex_state = 14, .external_lex_state = 6}, [4787] = {.lex_state = 14, .external_lex_state = 6}, - [4788] = {.lex_state = 14, .external_lex_state = 7}, + [4788] = {.lex_state = 14, .external_lex_state = 6}, [4789] = {.lex_state = 14, .external_lex_state = 6}, [4790] = {.lex_state = 14, .external_lex_state = 6}, - [4791] = {.lex_state = 14, .external_lex_state = 7}, + [4791] = {.lex_state = 14, .external_lex_state = 6}, [4792] = {.lex_state = 14, .external_lex_state = 6}, - [4793] = {.lex_state = 14, .external_lex_state = 6}, + [4793] = {.lex_state = 14, .external_lex_state = 7}, [4794] = {.lex_state = 14, .external_lex_state = 6}, [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 = 7}, - [4799] = {.lex_state = 14, .external_lex_state = 7}, + [4798] = {.lex_state = 14, .external_lex_state = 6}, + [4799] = {.lex_state = 14, .external_lex_state = 6}, [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 = 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 = 7}, + [4805] = {.lex_state = 14, .external_lex_state = 6}, + [4806] = {.lex_state = 14, .external_lex_state = 6}, + [4807] = {.lex_state = 14, .external_lex_state = 6}, [4808] = {.lex_state = 14, .external_lex_state = 7}, - [4809] = {.lex_state = 14, .external_lex_state = 6}, + [4809] = {.lex_state = 12, .external_lex_state = 5}, [4810] = {.lex_state = 14, .external_lex_state = 6}, [4811] = {.lex_state = 14, .external_lex_state = 6}, - [4812] = {.lex_state = 14, .external_lex_state = 6}, + [4812] = {.lex_state = 14, .external_lex_state = 7}, [4813] = {.lex_state = 14, .external_lex_state = 6}, - [4814] = {.lex_state = 14, .external_lex_state = 7}, - [4815] = {.lex_state = 14, .external_lex_state = 7}, - [4816] = {.lex_state = 14, .external_lex_state = 7}, + [4814] = {.lex_state = 14, .external_lex_state = 6}, + [4815] = {.lex_state = 14, .external_lex_state = 6}, + [4816] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, + [4821] = {.lex_state = 14, .external_lex_state = 6}, [4822] = {.lex_state = 14, .external_lex_state = 6}, [4823] = {.lex_state = 14, .external_lex_state = 6}, [4824] = {.lex_state = 14, .external_lex_state = 6}, [4825] = {.lex_state = 14, .external_lex_state = 6}, [4826] = {.lex_state = 14, .external_lex_state = 6}, [4827] = {.lex_state = 14, .external_lex_state = 6}, - [4828] = {.lex_state = 14, .external_lex_state = 6}, + [4828] = {.lex_state = 14, .external_lex_state = 7}, [4829] = {.lex_state = 14, .external_lex_state = 6}, [4830] = {.lex_state = 14, .external_lex_state = 6}, [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 = 12, .external_lex_state = 5}, + [4835] = {.lex_state = 14, .external_lex_state = 6}, [4836] = {.lex_state = 14, .external_lex_state = 6}, [4837] = {.lex_state = 14, .external_lex_state = 6}, [4838] = {.lex_state = 14, .external_lex_state = 6}, @@ -28324,9 +24962,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4843] = {.lex_state = 14, .external_lex_state = 6}, [4844] = {.lex_state = 14, .external_lex_state = 6}, [4845] = {.lex_state = 14, .external_lex_state = 6}, - [4846] = {.lex_state = 14, .external_lex_state = 6}, - [4847] = {.lex_state = 12, .external_lex_state = 5}, - [4848] = {.lex_state = 14, .external_lex_state = 7}, + [4846] = {.lex_state = 12, .external_lex_state = 5}, + [4847] = {.lex_state = 14, .external_lex_state = 6}, + [4848] = {.lex_state = 14, .external_lex_state = 6}, [4849] = {.lex_state = 14, .external_lex_state = 6}, [4850] = {.lex_state = 14, .external_lex_state = 6}, [4851] = {.lex_state = 14, .external_lex_state = 6}, @@ -28338,270 +24976,270 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4860] = {.lex_state = 14, .external_lex_state = 7}, [4861] = {.lex_state = 14, .external_lex_state = 6}, [4862] = {.lex_state = 14, .external_lex_state = 6}, [4863] = {.lex_state = 14, .external_lex_state = 6}, - [4864] = {.lex_state = 14, .external_lex_state = 6}, - [4865] = {.lex_state = 14, .external_lex_state = 6}, + [4864] = {.lex_state = 14, .external_lex_state = 7}, + [4865] = {.lex_state = 14, .external_lex_state = 7}, [4866] = {.lex_state = 14, .external_lex_state = 6}, [4867] = {.lex_state = 14, .external_lex_state = 6}, [4868] = {.lex_state = 14, .external_lex_state = 6}, - [4869] = {.lex_state = 14, .external_lex_state = 7}, + [4869] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4873] = {.lex_state = 12, .external_lex_state = 5}, [4874] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4877] = {.lex_state = 14, .external_lex_state = 7}, + [4878] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4882] = {.lex_state = 14, .external_lex_state = 7}, [4883] = {.lex_state = 14, .external_lex_state = 6}, [4884] = {.lex_state = 14, .external_lex_state = 6}, - [4885] = {.lex_state = 12, .external_lex_state = 5}, + [4885] = {.lex_state = 14, .external_lex_state = 6}, [4886] = {.lex_state = 14, .external_lex_state = 6}, [4887] = {.lex_state = 14, .external_lex_state = 6}, - [4888] = {.lex_state = 14, .external_lex_state = 6}, + [4888] = {.lex_state = 14, .external_lex_state = 7}, [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 = 7}, + [4892] = {.lex_state = 14, .external_lex_state = 6}, [4893] = {.lex_state = 14, .external_lex_state = 6}, [4894] = {.lex_state = 14, .external_lex_state = 7}, - [4895] = {.lex_state = 12, .external_lex_state = 5}, + [4895] = {.lex_state = 14, .external_lex_state = 7}, [4896] = {.lex_state = 14, .external_lex_state = 7}, [4897] = {.lex_state = 14, .external_lex_state = 7}, - [4898] = {.lex_state = 14, .external_lex_state = 7}, + [4898] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4902] = {.lex_state = 12, .external_lex_state = 5}, [4903] = {.lex_state = 14, .external_lex_state = 7}, - [4904] = {.lex_state = 14, .external_lex_state = 6}, - [4905] = {.lex_state = 14, .external_lex_state = 6}, + [4904] = {.lex_state = 14, .external_lex_state = 7}, + [4905] = {.lex_state = 14, .external_lex_state = 7}, [4906] = {.lex_state = 14, .external_lex_state = 7}, [4907] = {.lex_state = 14, .external_lex_state = 7}, [4908] = {.lex_state = 14, .external_lex_state = 6}, - [4909] = {.lex_state = 14, .external_lex_state = 6}, + [4909] = {.lex_state = 14, .external_lex_state = 7}, [4910] = {.lex_state = 14, .external_lex_state = 7}, [4911] = {.lex_state = 14, .external_lex_state = 7}, - [4912] = {.lex_state = 14, .external_lex_state = 7}, + [4912] = {.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}, + [4915] = {.lex_state = 14, .external_lex_state = 6}, + [4916] = {.lex_state = 12, .external_lex_state = 5}, [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 = 7}, + [4918] = {.lex_state = 14, .external_lex_state = 7}, + [4919] = {.lex_state = 14, .external_lex_state = 7}, + [4920] = {.lex_state = 14, .external_lex_state = 6}, [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 = 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}, + [4923] = {.lex_state = 12, .external_lex_state = 5}, + [4924] = {.lex_state = 14, .external_lex_state = 7}, + [4925] = {.lex_state = 14, .external_lex_state = 7}, + [4926] = {.lex_state = 12, .external_lex_state = 5}, + [4927] = {.lex_state = 14, .external_lex_state = 7}, + [4928] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [4931] = {.lex_state = 14, .external_lex_state = 7}, + [4932] = {.lex_state = 14, .external_lex_state = 6}, + [4933] = {.lex_state = 12, .external_lex_state = 5}, + [4934] = {.lex_state = 12, .external_lex_state = 5}, [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 = 12, .external_lex_state = 5}, + [4937] = {.lex_state = 14, .external_lex_state = 7}, + [4938] = {.lex_state = 12, .external_lex_state = 5}, + [4939] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4943] = {.lex_state = 14, .external_lex_state = 7}, + [4944] = {.lex_state = 12, .external_lex_state = 5}, [4945] = {.lex_state = 12, .external_lex_state = 5}, - [4946] = {.lex_state = 12, .external_lex_state = 5}, + [4946] = {.lex_state = 14, .external_lex_state = 7}, [4947] = {.lex_state = 14, .external_lex_state = 7}, - [4948] = {.lex_state = 14, .external_lex_state = 7}, - [4949] = {.lex_state = 14, .external_lex_state = 7}, + [4948] = {.lex_state = 12, .external_lex_state = 5}, + [4949] = {.lex_state = 12, .external_lex_state = 5}, [4950] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4952] = {.lex_state = 12, .external_lex_state = 5}, + [4953] = {.lex_state = 14, .external_lex_state = 6}, + [4954] = {.lex_state = 14, .external_lex_state = 7}, [4955] = {.lex_state = 14, .external_lex_state = 7}, - [4956] = {.lex_state = 14, .external_lex_state = 7}, - [4957] = {.lex_state = 14, .external_lex_state = 6}, + [4956] = {.lex_state = 12, .external_lex_state = 5}, + [4957] = {.lex_state = 14, .external_lex_state = 7}, [4958] = {.lex_state = 14, .external_lex_state = 7}, [4959] = {.lex_state = 14, .external_lex_state = 7}, - [4960] = {.lex_state = 12, .external_lex_state = 5}, - [4961] = {.lex_state = 12, .external_lex_state = 5}, - [4962] = {.lex_state = 14, .external_lex_state = 7}, + [4960] = {.lex_state = 14, .external_lex_state = 7}, + [4961] = {.lex_state = 14, .external_lex_state = 7}, + [4962] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [4964] = {.lex_state = 14, .external_lex_state = 6}, + [4965] = {.lex_state = 14, .external_lex_state = 7}, + [4966] = {.lex_state = 14, .external_lex_state = 7}, + [4967] = {.lex_state = 14, .external_lex_state = 6}, + [4968] = {.lex_state = 14, .external_lex_state = 6}, [4969] = {.lex_state = 14, .external_lex_state = 7}, - [4970] = {.lex_state = 14, .external_lex_state = 6}, + [4970] = {.lex_state = 14, .external_lex_state = 7}, [4971] = {.lex_state = 14, .external_lex_state = 7}, [4972] = {.lex_state = 14, .external_lex_state = 7}, [4973] = {.lex_state = 12, .external_lex_state = 5}, - [4974] = {.lex_state = 14, .external_lex_state = 7}, + [4974] = {.lex_state = 14, .external_lex_state = 6}, [4975] = {.lex_state = 14, .external_lex_state = 7}, - [4976] = {.lex_state = 14, .external_lex_state = 6}, - [4977] = {.lex_state = 12, .external_lex_state = 5}, - [4978] = {.lex_state = 16, .external_lex_state = 7}, + [4976] = {.lex_state = 12, .external_lex_state = 5}, + [4977] = {.lex_state = 14, .external_lex_state = 6}, + [4978] = {.lex_state = 12, .external_lex_state = 5}, [4979] = {.lex_state = 14, .external_lex_state = 7}, - [4980] = {.lex_state = 12, .external_lex_state = 5}, - [4981] = {.lex_state = 14, .external_lex_state = 7}, + [4980] = {.lex_state = 14, .external_lex_state = 7}, + [4981] = {.lex_state = 14, .external_lex_state = 6}, [4982] = {.lex_state = 14, .external_lex_state = 7}, - [4983] = {.lex_state = 14, .external_lex_state = 7}, - [4984] = {.lex_state = 14, .external_lex_state = 7}, + [4983] = {.lex_state = 12, .external_lex_state = 5}, + [4984] = {.lex_state = 12, .external_lex_state = 5}, [4985] = {.lex_state = 14, .external_lex_state = 7}, - [4986] = {.lex_state = 12, .external_lex_state = 5}, + [4986] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [4988] = {.lex_state = 14, .external_lex_state = 7}, + [4989] = {.lex_state = 14, .external_lex_state = 6}, + [4990] = {.lex_state = 14, .external_lex_state = 7}, [4991] = {.lex_state = 14, .external_lex_state = 7}, - [4992] = {.lex_state = 14, .external_lex_state = 6}, - [4993] = {.lex_state = 14, .external_lex_state = 7}, + [4992] = {.lex_state = 14, .external_lex_state = 7}, + [4993] = {.lex_state = 12, .external_lex_state = 5}, [4994] = {.lex_state = 14, .external_lex_state = 7}, - [4995] = {.lex_state = 14, .external_lex_state = 7}, + [4995] = {.lex_state = 14, .external_lex_state = 6}, [4996] = {.lex_state = 14, .external_lex_state = 6}, - [4997] = {.lex_state = 12, .external_lex_state = 5}, + [4997] = {.lex_state = 14, .external_lex_state = 6}, [4998] = {.lex_state = 14, .external_lex_state = 7}, - [4999] = {.lex_state = 14, .external_lex_state = 7}, - [5000] = {.lex_state = 12, .external_lex_state = 5}, + [4999] = {.lex_state = 12, .external_lex_state = 5}, + [5000] = {.lex_state = 14, .external_lex_state = 7}, [5001] = {.lex_state = 14, .external_lex_state = 7}, - [5002] = {.lex_state = 12, .external_lex_state = 5}, + [5002] = {.lex_state = 14, .external_lex_state = 7}, [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 = 7}, + [5004] = {.lex_state = 14, .external_lex_state = 7}, + [5005] = {.lex_state = 12, .external_lex_state = 5}, + [5006] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5008] = {.lex_state = 12, .external_lex_state = 5}, + [5009] = {.lex_state = 16, .external_lex_state = 7}, + [5010] = {.lex_state = 14, .external_lex_state = 7}, [5011] = {.lex_state = 14, .external_lex_state = 7}, - [5012] = {.lex_state = 12, .external_lex_state = 5}, + [5012] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5015] = {.lex_state = 14, .external_lex_state = 7}, + [5016] = {.lex_state = 12, .external_lex_state = 5}, + [5017] = {.lex_state = 14, .external_lex_state = 7}, [5018] = {.lex_state = 12, .external_lex_state = 5}, - [5019] = {.lex_state = 12, .external_lex_state = 5}, + [5019] = {.lex_state = 14, .external_lex_state = 7}, [5020] = {.lex_state = 14, .external_lex_state = 7}, - [5021] = {.lex_state = 12, .external_lex_state = 5}, + [5021] = {.lex_state = 14, .external_lex_state = 6}, [5022] = {.lex_state = 12, .external_lex_state = 5}, - [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 = 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 = 14, .external_lex_state = 7}, - [5031] = {.lex_state = 14, .external_lex_state = 6}, + [5023] = {.lex_state = 14, .external_lex_state = 7}, + [5024] = {.lex_state = 12, .external_lex_state = 5}, + [5025] = {.lex_state = 12, .external_lex_state = 5}, + [5026] = {.lex_state = 14, .external_lex_state = 7}, + [5027] = {.lex_state = 14, .external_lex_state = 7}, + [5028] = {.lex_state = 12, .external_lex_state = 5}, + [5029] = {.lex_state = 12, .external_lex_state = 5}, + [5030] = {.lex_state = 14, .external_lex_state = 6}, + [5031] = {.lex_state = 14, .external_lex_state = 7}, [5032] = {.lex_state = 12, .external_lex_state = 5}, - [5033] = {.lex_state = 14, .external_lex_state = 6}, + [5033] = {.lex_state = 14, .external_lex_state = 7}, [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 = 12, .external_lex_state = 5}, + [5036] = {.lex_state = 12, .external_lex_state = 5}, + [5037] = {.lex_state = 12, .external_lex_state = 5}, + [5038] = {.lex_state = 12, .external_lex_state = 5}, + [5039] = {.lex_state = 14, .external_lex_state = 6}, + [5040] = {.lex_state = 14, .external_lex_state = 7}, [5041] = {.lex_state = 14, .external_lex_state = 7}, [5042] = {.lex_state = 14, .external_lex_state = 7}, - [5043] = {.lex_state = 14, .external_lex_state = 7}, + [5043] = {.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}, + [5046] = {.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}, + [5048] = {.lex_state = 14, .external_lex_state = 6}, + [5049] = {.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 = 6}, + [5051] = {.lex_state = 14, .external_lex_state = 6}, + [5052] = {.lex_state = 14, .external_lex_state = 6}, + [5053] = {.lex_state = 14, .external_lex_state = 7}, [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 = 14, .external_lex_state = 7}, - [5058] = {.lex_state = 12, .external_lex_state = 5}, - [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 = 14, .external_lex_state = 7}, + [5055] = {.lex_state = 14, .external_lex_state = 6}, + [5056] = {.lex_state = 14, .external_lex_state = 6}, + [5057] = {.lex_state = 12, .external_lex_state = 5}, + [5058] = {.lex_state = 14, .external_lex_state = 7}, + [5059] = {.lex_state = 14, .external_lex_state = 7}, + [5060] = {.lex_state = 14, .external_lex_state = 7}, + [5061] = {.lex_state = 14, .external_lex_state = 7}, + [5062] = {.lex_state = 14, .external_lex_state = 6}, [5063] = {.lex_state = 14, .external_lex_state = 7}, - [5064] = {.lex_state = 14, .external_lex_state = 6}, - [5065] = {.lex_state = 12, .external_lex_state = 5}, + [5064] = {.lex_state = 14, .external_lex_state = 7}, + [5065] = {.lex_state = 14, .external_lex_state = 7}, [5066] = {.lex_state = 14, .external_lex_state = 7}, - [5067] = {.lex_state = 14, .external_lex_state = 6}, + [5067] = {.lex_state = 12, .external_lex_state = 5}, [5068] = {.lex_state = 14, .external_lex_state = 7}, - [5069] = {.lex_state = 14, .external_lex_state = 7}, - [5070] = {.lex_state = 14, .external_lex_state = 6}, - [5071] = {.lex_state = 14, .external_lex_state = 7}, + [5069] = {.lex_state = 12, .external_lex_state = 5}, + [5070] = {.lex_state = 12, .external_lex_state = 5}, + [5071] = {.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 = 14, .external_lex_state = 7}, - [5075] = {.lex_state = 14, .external_lex_state = 7}, + [5075] = {.lex_state = 12, .external_lex_state = 5}, [5076] = {.lex_state = 14, .external_lex_state = 7}, [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 = 6}, + [5080] = {.lex_state = 14, .external_lex_state = 7}, [5081] = {.lex_state = 14, .external_lex_state = 7}, [5082] = {.lex_state = 14, .external_lex_state = 7}, - [5083] = {.lex_state = 12, .external_lex_state = 5}, + [5083] = {.lex_state = 14, .external_lex_state = 7}, [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 = 12, .external_lex_state = 5}, + [5085] = {.lex_state = 14, .external_lex_state = 7}, + [5086] = {.lex_state = 14, .external_lex_state = 7}, + [5087] = {.lex_state = 14, .external_lex_state = 7}, [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 = 14, .external_lex_state = 7}, - [5092] = {.lex_state = 12, .external_lex_state = 5}, - [5093] = {.lex_state = 14, .external_lex_state = 7}, + [5092] = {.lex_state = 14, .external_lex_state = 7}, + [5093] = {.lex_state = 12, .external_lex_state = 5}, [5094] = {.lex_state = 14, .external_lex_state = 7}, - [5095] = {.lex_state = 14, .external_lex_state = 7}, - [5096] = {.lex_state = 14, .external_lex_state = 7}, + [5095] = {.lex_state = 12, .external_lex_state = 5}, + [5096] = {.lex_state = 12, .external_lex_state = 5}, [5097] = {.lex_state = 14, .external_lex_state = 7}, - [5098] = {.lex_state = 14, .external_lex_state = 6}, + [5098] = {.lex_state = 14, .external_lex_state = 7}, [5099] = {.lex_state = 14, .external_lex_state = 7}, - [5100] = {.lex_state = 14, .external_lex_state = 7}, + [5100] = {.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 = 14, .external_lex_state = 7}, - [5105] = {.lex_state = 14, .external_lex_state = 7}, + [5105] = {.lex_state = 14, .external_lex_state = 6}, [5106] = {.lex_state = 14, .external_lex_state = 7}, [5107] = {.lex_state = 14, .external_lex_state = 7}, [5108] = {.lex_state = 14, .external_lex_state = 7}, [5109] = {.lex_state = 14, .external_lex_state = 7}, [5110] = {.lex_state = 14, .external_lex_state = 7}, - [5111] = {.lex_state = 12, .external_lex_state = 5}, + [5111] = {.lex_state = 14, .external_lex_state = 7}, [5112] = {.lex_state = 14, .external_lex_state = 7}, [5113] = {.lex_state = 14, .external_lex_state = 7}, [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 = 6}, + [5116] = {.lex_state = 12, .external_lex_state = 5}, + [5117] = {.lex_state = 14, .external_lex_state = 7}, [5118] = {.lex_state = 14, .external_lex_state = 7}, - [5119] = {.lex_state = 12, .external_lex_state = 5}, + [5119] = {.lex_state = 14, .external_lex_state = 7}, [5120] = {.lex_state = 14, .external_lex_state = 7}, [5121] = {.lex_state = 14, .external_lex_state = 7}, [5122] = {.lex_state = 14, .external_lex_state = 7}, - [5123] = {.lex_state = 14, .external_lex_state = 7}, + [5123] = {.lex_state = 14, .external_lex_state = 6}, [5124] = {.lex_state = 14, .external_lex_state = 7}, [5125] = {.lex_state = 14, .external_lex_state = 7}, [5126] = {.lex_state = 14, .external_lex_state = 7}, @@ -28611,51 +25249,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12, .external_lex_state = 5}, - [5134] = {.lex_state = 14, .external_lex_state = 7}, - [5135] = {.lex_state = 14, .external_lex_state = 7}, - [5136] = {.lex_state = 14, .external_lex_state = 7}, - [5137] = {.lex_state = 12, .external_lex_state = 5}, + [5133] = {.lex_state = 14, .external_lex_state = 7}, + [5134] = {.lex_state = 14, .external_lex_state = 6}, + [5135] = {.lex_state = 14, .external_lex_state = 6}, + [5136] = {.lex_state = 12, .external_lex_state = 5}, + [5137] = {.lex_state = 14, .external_lex_state = 6}, [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 = 14, .external_lex_state = 7}, - [5142] = {.lex_state = 14, .external_lex_state = 7}, + [5142] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5146] = {.lex_state = 14, .external_lex_state = 6}, [5147] = {.lex_state = 14, .external_lex_state = 7}, [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 = 12, .external_lex_state = 5}, + [5151] = {.lex_state = 14, .external_lex_state = 7}, [5152] = {.lex_state = 14, .external_lex_state = 7}, [5153] = {.lex_state = 14, .external_lex_state = 7}, - [5154] = {.lex_state = 14, .external_lex_state = 7}, + [5154] = {.lex_state = 12, .external_lex_state = 5}, [5155] = {.lex_state = 14, .external_lex_state = 7}, - [5156] = {.lex_state = 14, .external_lex_state = 7}, + [5156] = {.lex_state = 14, .external_lex_state = 6}, [5157] = {.lex_state = 14, .external_lex_state = 7}, [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 = 7}, - [5162] = {.lex_state = 14, .external_lex_state = 7}, + [5162] = {.lex_state = 14, .external_lex_state = 6}, [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 = 14, .external_lex_state = 7}, - [5167] = {.lex_state = 14, .external_lex_state = 7}, + [5167] = {.lex_state = 12, .external_lex_state = 5}, [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 = 14, .external_lex_state = 7}, - [5173] = {.lex_state = 14, .external_lex_state = 6}, + [5173] = {.lex_state = 14, .external_lex_state = 7}, [5174] = {.lex_state = 14, .external_lex_state = 7}, [5175] = {.lex_state = 14, .external_lex_state = 7}, [5176] = {.lex_state = 14, .external_lex_state = 7}, - [5177] = {.lex_state = 14, .external_lex_state = 7}, + [5177] = {.lex_state = 14, .external_lex_state = 6}, [5178] = {.lex_state = 14, .external_lex_state = 7}, [5179] = {.lex_state = 14, .external_lex_state = 7}, [5180] = {.lex_state = 14, .external_lex_state = 7}, @@ -28663,35 +25301,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5185] = {.lex_state = 14, .external_lex_state = 7}, + [5186] = {.lex_state = 12, .external_lex_state = 5}, [5187] = {.lex_state = 14, .external_lex_state = 7}, - [5188] = {.lex_state = 14, .external_lex_state = 6}, + [5188] = {.lex_state = 14, .external_lex_state = 7}, [5189] = {.lex_state = 14, .external_lex_state = 7}, - [5190] = {.lex_state = 14, .external_lex_state = 6}, + [5190] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5195] = {.lex_state = 14, .external_lex_state = 7}, [5196] = {.lex_state = 14, .external_lex_state = 7}, - [5197] = {.lex_state = 14, .external_lex_state = 7}, + [5197] = {.lex_state = 14, .external_lex_state = 6}, [5198] = {.lex_state = 14, .external_lex_state = 7}, [5199] = {.lex_state = 14, .external_lex_state = 7}, - [5200] = {.lex_state = 12, .external_lex_state = 5}, + [5200] = {.lex_state = 14, .external_lex_state = 7}, [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 = 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}, + [5205] = {.lex_state = 12, .external_lex_state = 5}, + [5206] = {.lex_state = 14, .external_lex_state = 7}, + [5207] = {.lex_state = 14, .external_lex_state = 7}, + [5208] = {.lex_state = 14, .external_lex_state = 6}, + [5209] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [5212] = {.lex_state = 14, .external_lex_state = 7}, + [5213] = {.lex_state = 12, .external_lex_state = 5}, [5214] = {.lex_state = 14, .external_lex_state = 7}, [5215] = {.lex_state = 14, .external_lex_state = 7}, [5216] = {.lex_state = 14, .external_lex_state = 7}, @@ -28701,200 +25339,200 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 6}, - [5224] = {.lex_state = 14, .external_lex_state = 7}, - [5225] = {.lex_state = 14, .external_lex_state = 7}, + [5223] = {.lex_state = 14, .external_lex_state = 7}, + [5224] = {.lex_state = 14, .external_lex_state = 6}, + [5225] = {.lex_state = 14, .external_lex_state = 6}, [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 = 6}, + [5229] = {.lex_state = 14, .external_lex_state = 7}, [5230] = {.lex_state = 14, .external_lex_state = 7}, [5231] = {.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}, + [5232] = {.lex_state = 14, .external_lex_state = 6}, + [5233] = {.lex_state = 14, .external_lex_state = 7}, + [5234] = {.lex_state = 14, .external_lex_state = 7}, + [5235] = {.lex_state = 14, .external_lex_state = 7}, [5236] = {.lex_state = 14, .external_lex_state = 7}, - [5237] = {.lex_state = 14, .external_lex_state = 6}, + [5237] = {.lex_state = 14, .external_lex_state = 7}, [5238] = {.lex_state = 14, .external_lex_state = 7}, - [5239] = {.lex_state = 14, .external_lex_state = 6}, + [5239] = {.lex_state = 14, .external_lex_state = 7}, [5240] = {.lex_state = 14, .external_lex_state = 7}, [5241] = {.lex_state = 14, .external_lex_state = 7}, - [5242] = {.lex_state = 12, .external_lex_state = 5}, - [5243] = {.lex_state = 14, .external_lex_state = 7}, + [5242] = {.lex_state = 14, .external_lex_state = 7}, + [5243] = {.lex_state = 12, .external_lex_state = 5}, [5244] = {.lex_state = 14, .external_lex_state = 7}, - [5245] = {.lex_state = 14, .external_lex_state = 7}, + [5245] = {.lex_state = 12, .external_lex_state = 5}, [5246] = {.lex_state = 14, .external_lex_state = 7}, [5247] = {.lex_state = 14, .external_lex_state = 7}, [5248] = {.lex_state = 14, .external_lex_state = 7}, [5249] = {.lex_state = 14, .external_lex_state = 7}, - [5250] = {.lex_state = 14, .external_lex_state = 6}, + [5250] = {.lex_state = 12, .external_lex_state = 5}, [5251] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5255] = {.lex_state = 14, .external_lex_state = 6}, [5256] = {.lex_state = 14, .external_lex_state = 7}, [5257] = {.lex_state = 14, .external_lex_state = 7}, - [5258] = {.lex_state = 12, .external_lex_state = 5}, + [5258] = {.lex_state = 14, .external_lex_state = 7}, [5259] = {.lex_state = 14, .external_lex_state = 7}, [5260] = {.lex_state = 14, .external_lex_state = 7}, - [5261] = {.lex_state = 14, .external_lex_state = 7}, + [5261] = {.lex_state = 12, .external_lex_state = 5}, [5262] = {.lex_state = 14, .external_lex_state = 7}, - [5263] = {.lex_state = 14, .external_lex_state = 6}, - [5264] = {.lex_state = 14, .external_lex_state = 7}, + [5263] = {.lex_state = 14, .external_lex_state = 7}, + [5264] = {.lex_state = 12, .external_lex_state = 5}, [5265] = {.lex_state = 14, .external_lex_state = 7}, [5266] = {.lex_state = 12, .external_lex_state = 5}, - [5267] = {.lex_state = 14, .external_lex_state = 6}, + [5267] = {.lex_state = 12, .external_lex_state = 5}, [5268] = {.lex_state = 12, .external_lex_state = 5}, - [5269] = {.lex_state = 12, .external_lex_state = 5}, + [5269] = {.lex_state = 14, .external_lex_state = 6}, [5270] = {.lex_state = 12, .external_lex_state = 5}, - [5271] = {.lex_state = 12, .external_lex_state = 5}, + [5271] = {.lex_state = 14, .external_lex_state = 6}, [5272] = {.lex_state = 12, .external_lex_state = 5}, - [5273] = {.lex_state = 14, .external_lex_state = 6}, + [5273] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5276] = {.lex_state = 12, .external_lex_state = 5}, + [5277] = {.lex_state = 12, .external_lex_state = 5}, [5278] = {.lex_state = 14, .external_lex_state = 6}, - [5279] = {.lex_state = 14, .external_lex_state = 6}, + [5279] = {.lex_state = 14, .external_lex_state = 7}, [5280] = {.lex_state = 14, .external_lex_state = 6}, - [5281] = {.lex_state = 14, .external_lex_state = 6}, + [5281] = {.lex_state = 12, .external_lex_state = 5}, [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 = 12, .external_lex_state = 5}, - [5288] = {.lex_state = 12, .external_lex_state = 5}, + [5283] = {.lex_state = 12, .external_lex_state = 5}, + [5284] = {.lex_state = 12, .external_lex_state = 5}, + [5285] = {.lex_state = 12, .external_lex_state = 5}, + [5286] = {.lex_state = 12, .external_lex_state = 5}, + [5287] = {.lex_state = 14, .external_lex_state = 6}, + [5288] = {.lex_state = 14, .external_lex_state = 7}, [5289] = {.lex_state = 12, .external_lex_state = 5}, [5290] = {.lex_state = 14, .external_lex_state = 6}, - [5291] = {.lex_state = 12, .external_lex_state = 5}, + [5291] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [5293] = {.lex_state = 14, .external_lex_state = 6}, + [5294] = {.lex_state = 14, .external_lex_state = 6}, + [5295] = {.lex_state = 14, .external_lex_state = 7}, [5296] = {.lex_state = 12, .external_lex_state = 5}, [5297] = {.lex_state = 12, .external_lex_state = 5}, - [5298] = {.lex_state = 12, .external_lex_state = 5}, + [5298] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [5302] = {.lex_state = 12, .external_lex_state = 5}, [5303] = {.lex_state = 14, .external_lex_state = 7}, [5304] = {.lex_state = 14, .external_lex_state = 6}, - [5305] = {.lex_state = 14, .external_lex_state = 7}, + [5305] = {.lex_state = 12, .external_lex_state = 5}, [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 = 12, .external_lex_state = 5}, - [5310] = {.lex_state = 14, .external_lex_state = 7}, - [5311] = {.lex_state = 14, .external_lex_state = 6}, - [5312] = {.lex_state = 12, .external_lex_state = 5}, + [5307] = {.lex_state = 14, .external_lex_state = 6}, + [5308] = {.lex_state = 14, .external_lex_state = 6}, + [5309] = {.lex_state = 14, .external_lex_state = 6}, + [5310] = {.lex_state = 14, .external_lex_state = 6}, + [5311] = {.lex_state = 12, .external_lex_state = 5}, + [5312] = {.lex_state = 14, .external_lex_state = 7}, [5313] = {.lex_state = 14, .external_lex_state = 7}, [5314] = {.lex_state = 12, .external_lex_state = 5}, - [5315] = {.lex_state = 12, .external_lex_state = 5}, + [5315] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5319] = {.lex_state = 25, .external_lex_state = 9}, + [5320] = {.lex_state = 14, .external_lex_state = 7}, + [5321] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5324] = {.lex_state = 12, .external_lex_state = 5}, + [5325] = {.lex_state = 12, .external_lex_state = 5}, + [5326] = {.lex_state = 12, .external_lex_state = 5}, [5327] = {.lex_state = 14, .external_lex_state = 7}, - [5328] = {.lex_state = 24, .external_lex_state = 9}, + [5328] = {.lex_state = 9, .external_lex_state = 2}, [5329] = {.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}, + [5331] = {.lex_state = 12, .external_lex_state = 5}, + [5332] = {.lex_state = 14, .external_lex_state = 7}, [5333] = {.lex_state = 12, .external_lex_state = 5}, - [5334] = {.lex_state = 14, .external_lex_state = 7}, + [5334] = {.lex_state = 12, .external_lex_state = 5}, [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 = 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}, + [5338] = {.lex_state = 12, .external_lex_state = 5}, + [5339] = {.lex_state = 12, .external_lex_state = 5}, + [5340] = {.lex_state = 14, .external_lex_state = 7}, + [5341] = {.lex_state = 14, .external_lex_state = 7}, + [5342] = {.lex_state = 14, .external_lex_state = 7}, + [5343] = {.lex_state = 14, .external_lex_state = 6}, + [5344] = {.lex_state = 14, .external_lex_state = 7}, + [5345] = {.lex_state = 25, .external_lex_state = 9}, [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 = 12, .external_lex_state = 5}, - [5350] = {.lex_state = 14, .external_lex_state = 6}, - [5351] = {.lex_state = 12, .external_lex_state = 5}, + [5347] = {.lex_state = 14, .external_lex_state = 7}, + [5348] = {.lex_state = 12, .external_lex_state = 5}, + [5349] = {.lex_state = 14, .external_lex_state = 6}, + [5350] = {.lex_state = 12, .external_lex_state = 5}, + [5351] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5355] = {.lex_state = 14, .external_lex_state = 7}, + [5356] = {.lex_state = 14, .external_lex_state = 6}, [5357] = {.lex_state = 12, .external_lex_state = 5}, [5358] = {.lex_state = 12, .external_lex_state = 5}, - [5359] = {.lex_state = 12, .external_lex_state = 5}, + [5359] = {.lex_state = 14, .external_lex_state = 6}, [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}, + [5361] = {.lex_state = 25, .external_lex_state = 9}, + [5362] = {.lex_state = 12, .external_lex_state = 5}, + [5363] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5367] = {.lex_state = 12, .external_lex_state = 5}, [5368] = {.lex_state = 12, .external_lex_state = 5}, [5369] = {.lex_state = 12, .external_lex_state = 5}, [5370] = {.lex_state = 12, .external_lex_state = 5}, - [5371] = {.lex_state = 14, .external_lex_state = 7}, - [5372] = {.lex_state = 14, .external_lex_state = 7}, + [5371] = {.lex_state = 12, .external_lex_state = 5}, + [5372] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5374] = {.lex_state = 12, .external_lex_state = 5}, + [5375] = {.lex_state = 14, .external_lex_state = 7}, + [5376] = {.lex_state = 12, .external_lex_state = 5}, + [5377] = {.lex_state = 14, .external_lex_state = 7}, [5378] = {.lex_state = 12, .external_lex_state = 5}, - [5379] = {.lex_state = 14, .external_lex_state = 7}, - [5380] = {.lex_state = 14, .external_lex_state = 7}, + [5379] = {.lex_state = 12, .external_lex_state = 5}, + [5380] = {.lex_state = 12, .external_lex_state = 5}, [5381] = {.lex_state = 12, .external_lex_state = 5}, [5382] = {.lex_state = 12, .external_lex_state = 5}, - [5383] = {.lex_state = 14, .external_lex_state = 7}, - [5384] = {.lex_state = 12, .external_lex_state = 5}, + [5383] = {.lex_state = 12, .external_lex_state = 5}, + [5384] = {.lex_state = 9, .external_lex_state = 2}, [5385] = {.lex_state = 12, .external_lex_state = 5}, [5386] = {.lex_state = 12, .external_lex_state = 5}, - [5387] = {.lex_state = 14, .external_lex_state = 7}, + [5387] = {.lex_state = 12, .external_lex_state = 5}, [5388] = {.lex_state = 12, .external_lex_state = 5}, - [5389] = {.lex_state = 14, .external_lex_state = 7}, + [5389] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [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 = 12, .external_lex_state = 5}, - [5395] = {.lex_state = 14, .external_lex_state = 7}, - [5396] = {.lex_state = 14, .external_lex_state = 7}, + [5395] = {.lex_state = 12, .external_lex_state = 5}, + [5396] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5400] = {.lex_state = 14, .external_lex_state = 7}, + [5401] = {.lex_state = 14, .external_lex_state = 6}, + [5402] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [5405] = {.lex_state = 14, .external_lex_state = 7}, + [5406] = {.lex_state = 25, .external_lex_state = 9}, [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 = 12, .external_lex_state = 5}, - [5411] = {.lex_state = 12, .external_lex_state = 5}, + [5409] = {.lex_state = 12, .external_lex_state = 5}, + [5410] = {.lex_state = 14, .external_lex_state = 7}, + [5411] = {.lex_state = 14, .external_lex_state = 7}, [5412] = {.lex_state = 12, .external_lex_state = 5}, [5413] = {.lex_state = 12, .external_lex_state = 5}, - [5414] = {.lex_state = 12, .external_lex_state = 5}, + [5414] = {.lex_state = 14, .external_lex_state = 6}, [5415] = {.lex_state = 12, .external_lex_state = 5}, - [5416] = {.lex_state = 12, .external_lex_state = 5}, + [5416] = {.lex_state = 14, .external_lex_state = 6}, [5417] = {.lex_state = 12, .external_lex_state = 5}, [5418] = {.lex_state = 12, .external_lex_state = 5}, [5419] = {.lex_state = 12, .external_lex_state = 5}, @@ -28902,1325 +25540,1325 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12, .external_lex_state = 5}, + [5424] = {.lex_state = 9, .external_lex_state = 2}, [5425] = {.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}, + [5426] = {.lex_state = 14, .external_lex_state = 6}, + [5427] = {.lex_state = 14, .external_lex_state = 6}, + [5428] = {.lex_state = 25, .external_lex_state = 8}, + [5429] = {.lex_state = 12, .external_lex_state = 2}, + [5430] = {.lex_state = 23, .external_lex_state = 9}, + [5431] = {.lex_state = 9, .external_lex_state = 2}, + [5432] = {.lex_state = 14, .external_lex_state = 7}, + [5433] = {.lex_state = 12, .external_lex_state = 2}, [5434] = {.lex_state = 14, .external_lex_state = 6}, - [5435] = {.lex_state = 9, .external_lex_state = 2}, - [5436] = {.lex_state = 21, .external_lex_state = 9}, + [5435] = {.lex_state = 14, .external_lex_state = 6}, + [5436] = {.lex_state = 14, .external_lex_state = 6}, [5437] = {.lex_state = 14, .external_lex_state = 6}, [5438] = {.lex_state = 14, .external_lex_state = 6}, - [5439] = {.lex_state = 21, .external_lex_state = 9}, + [5439] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5441] = {.lex_state = 9, .external_lex_state = 2}, + [5442] = {.lex_state = 14, .external_lex_state = 6}, + [5443] = {.lex_state = 14, .external_lex_state = 6}, + [5444] = {.lex_state = 14, .external_lex_state = 7}, [5445] = {.lex_state = 14, .external_lex_state = 7}, [5446] = {.lex_state = 14, .external_lex_state = 7}, - [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 = 14, .external_lex_state = 6}, + [5447] = {.lex_state = 14, .external_lex_state = 6}, + [5448] = {.lex_state = 23, .external_lex_state = 9}, + [5449] = {.lex_state = 14, .external_lex_state = 7}, + [5450] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5452] = {.lex_state = 9, .external_lex_state = 2}, + [5453] = {.lex_state = 14, .external_lex_state = 7}, + [5454] = {.lex_state = 14, .external_lex_state = 7}, [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}, + [5458] = {.lex_state = 14, .external_lex_state = 7}, + [5459] = {.lex_state = 23, .external_lex_state = 9}, [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}, + [5462] = {.lex_state = 14, .external_lex_state = 6}, + [5463] = {.lex_state = 9, .external_lex_state = 2}, [5464] = {.lex_state = 14, .external_lex_state = 7}, [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 = 14, .external_lex_state = 6}, - [5469] = {.lex_state = 12, .external_lex_state = 2}, + [5466] = {.lex_state = 14, .external_lex_state = 7}, + [5467] = {.lex_state = 14, .external_lex_state = 6}, + [5468] = {.lex_state = 14, .external_lex_state = 7}, + [5469] = {.lex_state = 14, .external_lex_state = 7}, [5470] = {.lex_state = 14, .external_lex_state = 7}, - [5471] = {.lex_state = 14, .external_lex_state = 6}, + [5471] = {.lex_state = 23, .external_lex_state = 9}, [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}, + [5473] = {.lex_state = 14, .external_lex_state = 6}, + [5474] = {.lex_state = 14, .external_lex_state = 6}, + [5475] = {.lex_state = 14, .external_lex_state = 7}, + [5476] = {.lex_state = 14, .external_lex_state = 7}, + [5477] = {.lex_state = 14, .external_lex_state = 7}, + [5478] = {.lex_state = 25, .external_lex_state = 8}, + [5479] = {.lex_state = 23, .external_lex_state = 9}, + [5480] = {.lex_state = 25, .external_lex_state = 8}, + [5481] = {.lex_state = 25, .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}, + [5483] = {.lex_state = 25, .external_lex_state = 9}, + [5484] = {.lex_state = 25, .external_lex_state = 9}, [5485] = {.lex_state = 14, .external_lex_state = 7}, - [5486] = {.lex_state = 21, .external_lex_state = 8}, - [5487] = {.lex_state = 9, .external_lex_state = 2}, + [5486] = {.lex_state = 14, .external_lex_state = 7}, + [5487] = {.lex_state = 14, .external_lex_state = 7}, [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 = 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}, + [5489] = {.lex_state = 14, .external_lex_state = 7}, + [5490] = {.lex_state = 23, .external_lex_state = 8}, + [5491] = {.lex_state = 14, .external_lex_state = 6}, + [5492] = {.lex_state = 9, .external_lex_state = 2}, + [5493] = {.lex_state = 14, .external_lex_state = 7}, + [5494] = {.lex_state = 23, .external_lex_state = 8}, + [5495] = {.lex_state = 23, .external_lex_state = 8}, + [5496] = {.lex_state = 23, .external_lex_state = 8}, + [5497] = {.lex_state = 25, .external_lex_state = 9}, + [5498] = {.lex_state = 14, .external_lex_state = 7}, + [5499] = {.lex_state = 14, .external_lex_state = 7}, + [5500] = {.lex_state = 23, .external_lex_state = 8}, + [5501] = {.lex_state = 14, .external_lex_state = 6}, + [5502] = {.lex_state = 23, .external_lex_state = 8}, + [5503] = {.lex_state = 23, .external_lex_state = 8}, + [5504] = {.lex_state = 25, .external_lex_state = 9}, [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}, + [5507] = {.lex_state = 23, .external_lex_state = 8}, + [5508] = {.lex_state = 23, .external_lex_state = 8}, + [5509] = {.lex_state = 23, .external_lex_state = 8}, [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 = 21, .external_lex_state = 8}, + [5511] = {.lex_state = 23, .external_lex_state = 8}, + [5512] = {.lex_state = 9, .external_lex_state = 2}, + [5513] = {.lex_state = 9, .external_lex_state = 2}, + [5514] = {.lex_state = 9, .external_lex_state = 2}, + [5515] = {.lex_state = 14, .external_lex_state = 6}, + [5516] = {.lex_state = 9, .external_lex_state = 2}, + [5517] = {.lex_state = 14, .external_lex_state = 7}, [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 = 21, .external_lex_state = 8}, + [5519] = {.lex_state = 14, .external_lex_state = 7}, + [5520] = {.lex_state = 23, .external_lex_state = 8}, + [5521] = {.lex_state = 14, .external_lex_state = 7}, + [5522] = {.lex_state = 23, .external_lex_state = 8}, + [5523] = {.lex_state = 14, .external_lex_state = 6}, [5524] = {.lex_state = 14, .external_lex_state = 6}, [5525] = {.lex_state = 14, .external_lex_state = 6}, - [5526] = {.lex_state = 14, .external_lex_state = 7}, + [5526] = {.lex_state = 14, .external_lex_state = 6}, [5527] = {.lex_state = 14, .external_lex_state = 6}, [5528] = {.lex_state = 14, .external_lex_state = 7}, - [5529] = {.lex_state = 14, .external_lex_state = 7}, - [5530] = {.lex_state = 14, .external_lex_state = 7}, - [5531] = {.lex_state = 14, .external_lex_state = 7}, + [5529] = {.lex_state = 23, .external_lex_state = 8}, + [5530] = {.lex_state = 14, .external_lex_state = 6}, + [5531] = {.lex_state = 23, .external_lex_state = 8}, [5532] = {.lex_state = 14, .external_lex_state = 6}, - [5533] = {.lex_state = 14, .external_lex_state = 6}, - [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 = 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}, + [5533] = {.lex_state = 23, .external_lex_state = 8}, + [5534] = {.lex_state = 14, .external_lex_state = 7}, + [5535] = {.lex_state = 23, .external_lex_state = 8}, + [5536] = {.lex_state = 23, .external_lex_state = 9}, + [5537] = {.lex_state = 23, .external_lex_state = 8}, + [5538] = {.lex_state = 25, .external_lex_state = 8}, + [5539] = {.lex_state = 23, .external_lex_state = 8}, + [5540] = {.lex_state = 23, .external_lex_state = 8}, + [5541] = {.lex_state = 9, .external_lex_state = 2}, + [5542] = {.lex_state = 23, .external_lex_state = 8}, + [5543] = {.lex_state = 23, .external_lex_state = 8}, + [5544] = {.lex_state = 9, .external_lex_state = 2}, + [5545] = {.lex_state = 23, .external_lex_state = 9}, + [5546] = {.lex_state = 23, .external_lex_state = 8}, + [5547] = {.lex_state = 14, .external_lex_state = 6}, + [5548] = {.lex_state = 9, .external_lex_state = 2}, + [5549] = {.lex_state = 23, .external_lex_state = 8}, + [5550] = {.lex_state = 14, .external_lex_state = 7}, + [5551] = {.lex_state = 23, .external_lex_state = 8}, [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}, + [5553] = {.lex_state = 14, .external_lex_state = 7}, + [5554] = {.lex_state = 14, .external_lex_state = 7}, + [5555] = {.lex_state = 14, .external_lex_state = 7}, + [5556] = {.lex_state = 23, .external_lex_state = 8}, [5557] = {.lex_state = 14, .external_lex_state = 7}, - [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}, + [5558] = {.lex_state = 14, .external_lex_state = 7}, + [5559] = {.lex_state = 14, .external_lex_state = 6}, + [5560] = {.lex_state = 25, .external_lex_state = 8}, + [5561] = {.lex_state = 23, .external_lex_state = 8}, + [5562] = {.lex_state = 14, .external_lex_state = 7}, [5563] = {.lex_state = 14, .external_lex_state = 7}, - [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 = 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}, + [5564] = {.lex_state = 14, .external_lex_state = 6}, + [5565] = {.lex_state = 23, .external_lex_state = 8}, + [5566] = {.lex_state = 9, .external_lex_state = 2}, + [5567] = {.lex_state = 23, .external_lex_state = 8}, + [5568] = {.lex_state = 14, .external_lex_state = 7}, + [5569] = {.lex_state = 23, .external_lex_state = 8}, + [5570] = {.lex_state = 23, .external_lex_state = 8}, + [5571] = {.lex_state = 23, .external_lex_state = 8}, + [5572] = {.lex_state = 23, .external_lex_state = 8}, + [5573] = {.lex_state = 14, .external_lex_state = 7}, + [5574] = {.lex_state = 14, .external_lex_state = 6}, + [5575] = {.lex_state = 23, .external_lex_state = 8}, [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 = 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}, + [5577] = {.lex_state = 14, .external_lex_state = 6}, + [5578] = {.lex_state = 23, .external_lex_state = 8}, + [5579] = {.lex_state = 23, .external_lex_state = 9}, + [5580] = {.lex_state = 23, .external_lex_state = 8}, + [5581] = {.lex_state = 23, .external_lex_state = 8}, + [5582] = {.lex_state = 14, .external_lex_state = 7}, + [5583] = {.lex_state = 9, .external_lex_state = 2}, + [5584] = {.lex_state = 9, .external_lex_state = 2}, + [5585] = {.lex_state = 23, .external_lex_state = 8}, + [5586] = {.lex_state = 23, .external_lex_state = 8}, + [5587] = {.lex_state = 23, .external_lex_state = 9}, + [5588] = {.lex_state = 25, .external_lex_state = 8}, + [5589] = {.lex_state = 9, .external_lex_state = 2}, + [5590] = {.lex_state = 23, .external_lex_state = 8}, + [5591] = {.lex_state = 14, .external_lex_state = 7}, + [5592] = {.lex_state = 9, .external_lex_state = 2}, + [5593] = {.lex_state = 14, .external_lex_state = 7}, + [5594] = {.lex_state = 23, .external_lex_state = 8}, + [5595] = {.lex_state = 23, .external_lex_state = 8}, + [5596] = {.lex_state = 14, .external_lex_state = 6}, + [5597] = {.lex_state = 23, .external_lex_state = 9}, + [5598] = {.lex_state = 25, .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 = 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}, + [5600] = {.lex_state = 14, .external_lex_state = 7}, + [5601] = {.lex_state = 23, .external_lex_state = 8}, + [5602] = {.lex_state = 23, .external_lex_state = 8}, + [5603] = {.lex_state = 14, .external_lex_state = 7}, + [5604] = {.lex_state = 23, .external_lex_state = 8}, + [5605] = {.lex_state = 14, .external_lex_state = 7}, + [5606] = {.lex_state = 23, .external_lex_state = 8}, + [5607] = {.lex_state = 14, .external_lex_state = 7}, + [5608] = {.lex_state = 23, .external_lex_state = 8}, + [5609] = {.lex_state = 14, .external_lex_state = 7}, + [5610] = {.lex_state = 23, .external_lex_state = 8}, + [5611] = {.lex_state = 23, .external_lex_state = 8}, + [5612] = {.lex_state = 23, .external_lex_state = 8}, [5613] = {.lex_state = 14, .external_lex_state = 7}, [5614] = {.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}, + [5615] = {.lex_state = 23, .external_lex_state = 8}, + [5616] = {.lex_state = 23, .external_lex_state = 8}, + [5617] = {.lex_state = 23, .external_lex_state = 8}, + [5618] = {.lex_state = 14, .external_lex_state = 7}, + [5619] = {.lex_state = 23, .external_lex_state = 8}, + [5620] = {.lex_state = 23, .external_lex_state = 8}, + [5621] = {.lex_state = 23, .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}, + [5623] = {.lex_state = 9, .external_lex_state = 5}, + [5624] = {.lex_state = 23, .external_lex_state = 8}, [5625] = {.lex_state = 14, .external_lex_state = 6}, - [5626] = {.lex_state = 14, .external_lex_state = 6}, - [5627] = {.lex_state = 14, .external_lex_state = 6}, + [5626] = {.lex_state = 9, .external_lex_state = 5}, + [5627] = {.lex_state = 23, .external_lex_state = 8}, [5628] = {.lex_state = 14, .external_lex_state = 6}, - [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 = 7}, - [5644] = {.lex_state = 14, .external_lex_state = 7}, - [5645] = {.lex_state = 14, .external_lex_state = 7}, - [5646] = {.lex_state = 14, .external_lex_state = 7}, - [5647] = {.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 = 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 = 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 = 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}, + [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 = 6}, + [5633] = {.lex_state = 14, .external_lex_state = 7}, + [5634] = {.lex_state = 32, .external_lex_state = 9}, + [5635] = {.lex_state = 14, .external_lex_state = 7}, + [5636] = {.lex_state = 23, .external_lex_state = 8}, + [5637] = {.lex_state = 14, .external_lex_state = 7}, + [5638] = {.lex_state = 14, .external_lex_state = 7}, + [5639] = {.lex_state = 14, .external_lex_state = 7}, + [5640] = {.lex_state = 32, .external_lex_state = 9}, + [5641] = {.lex_state = 23, .external_lex_state = 8}, + [5642] = {.lex_state = 14, .external_lex_state = 7}, + [5643] = {.lex_state = 32, .external_lex_state = 9}, + [5644] = {.lex_state = 23, .external_lex_state = 8}, + [5645] = {.lex_state = 32, .external_lex_state = 9}, + [5646] = {.lex_state = 23, .external_lex_state = 8}, + [5647] = {.lex_state = 32, .external_lex_state = 9}, + [5648] = {.lex_state = 32, .external_lex_state = 9}, + [5649] = {.lex_state = 9, .external_lex_state = 2}, + [5650] = {.lex_state = 9, .external_lex_state = 2}, + [5651] = {.lex_state = 23, .external_lex_state = 8}, + [5652] = {.lex_state = 23, .external_lex_state = 8}, + [5653] = {.lex_state = 14, .external_lex_state = 6}, + [5654] = {.lex_state = 32, .external_lex_state = 9}, + [5655] = {.lex_state = 32, .external_lex_state = 9}, + [5656] = {.lex_state = 23, .external_lex_state = 8}, + [5657] = {.lex_state = 32, .external_lex_state = 9}, + [5658] = {.lex_state = 23, .external_lex_state = 8}, + [5659] = {.lex_state = 14, .external_lex_state = 6}, + [5660] = {.lex_state = 32, .external_lex_state = 9}, + [5661] = {.lex_state = 32, .external_lex_state = 9}, + [5662] = {.lex_state = 32, .external_lex_state = 9}, + [5663] = {.lex_state = 32, .external_lex_state = 9}, + [5664] = {.lex_state = 23, .external_lex_state = 8}, + [5665] = {.lex_state = 23, .external_lex_state = 8}, + [5666] = {.lex_state = 23, .external_lex_state = 8}, + [5667] = {.lex_state = 23, .external_lex_state = 8}, + [5668] = {.lex_state = 32, .external_lex_state = 9}, + [5669] = {.lex_state = 23, .external_lex_state = 8}, + [5670] = {.lex_state = 23, .external_lex_state = 8}, [5671] = {.lex_state = 14, .external_lex_state = 6}, - [5672] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 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 = 26, .external_lex_state = 8}, - [5698] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 8}, - [5722] = {.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 = 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 = 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 = 21, .external_lex_state = 8}, - [5752] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 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 = 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 = 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 = 21, .external_lex_state = 9}, - [5806] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 21, .external_lex_state = 8}, - [5825] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 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}, - [5836] = {.lex_state = 21, .external_lex_state = 8}, - [5837] = {.lex_state = 21, .external_lex_state = 8}, - [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 = 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 = 28, .external_lex_state = 8}, - [5847] = {.lex_state = 24, .external_lex_state = 9}, - [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 = 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 = 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 = 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 = 25, .external_lex_state = 8}, - [5878] = {.lex_state = 21, .external_lex_state = 8}, + [5672] = {.lex_state = 23, .external_lex_state = 8}, + [5673] = {.lex_state = 23, .external_lex_state = 8}, + [5674] = {.lex_state = 23, .external_lex_state = 8}, + [5675] = {.lex_state = 23, .external_lex_state = 8}, + [5676] = {.lex_state = 23, .external_lex_state = 8}, + [5677] = {.lex_state = 23, .external_lex_state = 8}, + [5678] = {.lex_state = 23, .external_lex_state = 8}, + [5679] = {.lex_state = 23, .external_lex_state = 8}, + [5680] = {.lex_state = 23, .external_lex_state = 8}, + [5681] = {.lex_state = 23, .external_lex_state = 8}, + [5682] = {.lex_state = 23, .external_lex_state = 8}, + [5683] = {.lex_state = 23, .external_lex_state = 8}, + [5684] = {.lex_state = 23, .external_lex_state = 8}, + [5685] = {.lex_state = 23, .external_lex_state = 8}, + [5686] = {.lex_state = 23, .external_lex_state = 9}, + [5687] = {.lex_state = 23, .external_lex_state = 9}, + [5688] = {.lex_state = 23, .external_lex_state = 9}, + [5689] = {.lex_state = 23, .external_lex_state = 8}, + [5690] = {.lex_state = 23, .external_lex_state = 8}, + [5691] = {.lex_state = 23, .external_lex_state = 9}, + [5692] = {.lex_state = 25, .external_lex_state = 9}, + [5693] = {.lex_state = 23, .external_lex_state = 8}, + [5694] = {.lex_state = 25, .external_lex_state = 9}, + [5695] = {.lex_state = 23, .external_lex_state = 8}, + [5696] = {.lex_state = 23, .external_lex_state = 9}, + [5697] = {.lex_state = 23, .external_lex_state = 8}, + [5698] = {.lex_state = 23, .external_lex_state = 9}, + [5699] = {.lex_state = 23, .external_lex_state = 8}, + [5700] = {.lex_state = 24, .external_lex_state = 8}, + [5701] = {.lex_state = 27, .external_lex_state = 8}, + [5702] = {.lex_state = 23, .external_lex_state = 8}, + [5703] = {.lex_state = 27, .external_lex_state = 8}, + [5704] = {.lex_state = 24, .external_lex_state = 8}, + [5705] = {.lex_state = 27, .external_lex_state = 8}, + [5706] = {.lex_state = 27, .external_lex_state = 8}, + [5707] = {.lex_state = 23, .external_lex_state = 8}, + [5708] = {.lex_state = 23, .external_lex_state = 9}, + [5709] = {.lex_state = 27, .external_lex_state = 8}, + [5710] = {.lex_state = 23, .external_lex_state = 8}, + [5711] = {.lex_state = 23, .external_lex_state = 8}, + [5712] = {.lex_state = 23, .external_lex_state = 9}, + [5713] = {.lex_state = 23, .external_lex_state = 9}, + [5714] = {.lex_state = 23, .external_lex_state = 9}, + [5715] = {.lex_state = 23, .external_lex_state = 8}, + [5716] = {.lex_state = 27, .external_lex_state = 8}, + [5717] = {.lex_state = 23, .external_lex_state = 9}, + [5718] = {.lex_state = 23, .external_lex_state = 9}, + [5719] = {.lex_state = 23, .external_lex_state = 9}, + [5720] = {.lex_state = 23, .external_lex_state = 8}, + [5721] = {.lex_state = 26, .external_lex_state = 8}, + [5722] = {.lex_state = 26, .external_lex_state = 8}, + [5723] = {.lex_state = 23, .external_lex_state = 8}, + [5724] = {.lex_state = 23, .external_lex_state = 9}, + [5725] = {.lex_state = 23, .external_lex_state = 9}, + [5726] = {.lex_state = 23, .external_lex_state = 8}, + [5727] = {.lex_state = 26, .external_lex_state = 8}, + [5728] = {.lex_state = 26, .external_lex_state = 8}, + [5729] = {.lex_state = 23, .external_lex_state = 8}, + [5730] = {.lex_state = 26, .external_lex_state = 8}, + [5731] = {.lex_state = 26, .external_lex_state = 8}, + [5732] = {.lex_state = 23, .external_lex_state = 9}, + [5733] = {.lex_state = 26, .external_lex_state = 8}, + [5734] = {.lex_state = 23, .external_lex_state = 8}, + [5735] = {.lex_state = 26, .external_lex_state = 8}, + [5736] = {.lex_state = 23, .external_lex_state = 8}, + [5737] = {.lex_state = 23, .external_lex_state = 8}, + [5738] = {.lex_state = 23, .external_lex_state = 8}, + [5739] = {.lex_state = 23, .external_lex_state = 8}, + [5740] = {.lex_state = 23, .external_lex_state = 8}, + [5741] = {.lex_state = 23, .external_lex_state = 9}, + [5742] = {.lex_state = 26, .external_lex_state = 8}, + [5743] = {.lex_state = 23, .external_lex_state = 8}, + [5744] = {.lex_state = 23, .external_lex_state = 8}, + [5745] = {.lex_state = 26, .external_lex_state = 8}, + [5746] = {.lex_state = 23, .external_lex_state = 8}, + [5747] = {.lex_state = 26, .external_lex_state = 8}, + [5748] = {.lex_state = 26, .external_lex_state = 8}, + [5749] = {.lex_state = 23, .external_lex_state = 8}, + [5750] = {.lex_state = 23, .external_lex_state = 8}, + [5751] = {.lex_state = 26, .external_lex_state = 8}, + [5752] = {.lex_state = 23, .external_lex_state = 8}, + [5753] = {.lex_state = 26, .external_lex_state = 8}, + [5754] = {.lex_state = 23, .external_lex_state = 8}, + [5755] = {.lex_state = 26, .external_lex_state = 8}, + [5756] = {.lex_state = 26, .external_lex_state = 8}, + [5757] = {.lex_state = 23, .external_lex_state = 8}, + [5758] = {.lex_state = 26, .external_lex_state = 8}, + [5759] = {.lex_state = 26, .external_lex_state = 8}, + [5760] = {.lex_state = 23, .external_lex_state = 8}, + [5761] = {.lex_state = 26, .external_lex_state = 8}, + [5762] = {.lex_state = 23, .external_lex_state = 8}, + [5763] = {.lex_state = 26, .external_lex_state = 8}, + [5764] = {.lex_state = 23, .external_lex_state = 8}, + [5765] = {.lex_state = 23, .external_lex_state = 9}, + [5766] = {.lex_state = 26, .external_lex_state = 8}, + [5767] = {.lex_state = 23, .external_lex_state = 9}, + [5768] = {.lex_state = 23, .external_lex_state = 9}, + [5769] = {.lex_state = 23, .external_lex_state = 9}, + [5770] = {.lex_state = 23, .external_lex_state = 9}, + [5771] = {.lex_state = 23, .external_lex_state = 8}, + [5772] = {.lex_state = 23, .external_lex_state = 9}, + [5773] = {.lex_state = 23, .external_lex_state = 8}, + [5774] = {.lex_state = 23, .external_lex_state = 9}, + [5775] = {.lex_state = 23, .external_lex_state = 8}, + [5776] = {.lex_state = 23, .external_lex_state = 8}, + [5777] = {.lex_state = 23, .external_lex_state = 9}, + [5778] = {.lex_state = 23, .external_lex_state = 8}, + [5779] = {.lex_state = 23, .external_lex_state = 8}, + [5780] = {.lex_state = 23, .external_lex_state = 8}, + [5781] = {.lex_state = 23, .external_lex_state = 8}, + [5782] = {.lex_state = 23, .external_lex_state = 8}, + [5783] = {.lex_state = 23, .external_lex_state = 8}, + [5784] = {.lex_state = 23, .external_lex_state = 9}, + [5785] = {.lex_state = 23, .external_lex_state = 9}, + [5786] = {.lex_state = 23, .external_lex_state = 8}, + [5787] = {.lex_state = 23, .external_lex_state = 9}, + [5788] = {.lex_state = 23, .external_lex_state = 8}, + [5789] = {.lex_state = 23, .external_lex_state = 8}, + [5790] = {.lex_state = 23, .external_lex_state = 8}, + [5791] = {.lex_state = 23, .external_lex_state = 8}, + [5792] = {.lex_state = 23, .external_lex_state = 8}, + [5793] = {.lex_state = 23, .external_lex_state = 9}, + [5794] = {.lex_state = 23, .external_lex_state = 8}, + [5795] = {.lex_state = 23, .external_lex_state = 8}, + [5796] = {.lex_state = 23, .external_lex_state = 8}, + [5797] = {.lex_state = 23, .external_lex_state = 8}, + [5798] = {.lex_state = 23, .external_lex_state = 8}, + [5799] = {.lex_state = 23, .external_lex_state = 9}, + [5800] = {.lex_state = 23, .external_lex_state = 8}, + [5801] = {.lex_state = 23, .external_lex_state = 8}, + [5802] = {.lex_state = 23, .external_lex_state = 8}, + [5803] = {.lex_state = 23, .external_lex_state = 8}, + [5804] = {.lex_state = 23, .external_lex_state = 8}, + [5805] = {.lex_state = 23, .external_lex_state = 9}, + [5806] = {.lex_state = 23, .external_lex_state = 8}, + [5807] = {.lex_state = 23, .external_lex_state = 8}, + [5808] = {.lex_state = 23, .external_lex_state = 9}, + [5809] = {.lex_state = 23, .external_lex_state = 9}, + [5810] = {.lex_state = 23, .external_lex_state = 8}, + [5811] = {.lex_state = 23, .external_lex_state = 9}, + [5812] = {.lex_state = 23, .external_lex_state = 9}, + [5813] = {.lex_state = 23, .external_lex_state = 9}, + [5814] = {.lex_state = 23, .external_lex_state = 9}, + [5815] = {.lex_state = 23, .external_lex_state = 8}, + [5816] = {.lex_state = 23, .external_lex_state = 8}, + [5817] = {.lex_state = 23, .external_lex_state = 8}, + [5818] = {.lex_state = 23, .external_lex_state = 8}, + [5819] = {.lex_state = 23, .external_lex_state = 8}, + [5820] = {.lex_state = 23, .external_lex_state = 8}, + [5821] = {.lex_state = 23, .external_lex_state = 9}, + [5822] = {.lex_state = 23, .external_lex_state = 8}, + [5823] = {.lex_state = 23, .external_lex_state = 8}, + [5824] = {.lex_state = 23, .external_lex_state = 8}, + [5825] = {.lex_state = 23, .external_lex_state = 8}, + [5826] = {.lex_state = 23, .external_lex_state = 8}, + [5827] = {.lex_state = 23, .external_lex_state = 8}, + [5828] = {.lex_state = 23, .external_lex_state = 8}, + [5829] = {.lex_state = 23, .external_lex_state = 8}, + [5830] = {.lex_state = 23, .external_lex_state = 9}, + [5831] = {.lex_state = 23, .external_lex_state = 8}, + [5832] = {.lex_state = 23, .external_lex_state = 8}, + [5833] = {.lex_state = 23, .external_lex_state = 8}, + [5834] = {.lex_state = 29, .external_lex_state = 8}, + [5835] = {.lex_state = 23, .external_lex_state = 8}, + [5836] = {.lex_state = 23, .external_lex_state = 8}, + [5837] = {.lex_state = 23, .external_lex_state = 8}, + [5838] = {.lex_state = 23, .external_lex_state = 9}, + [5839] = {.lex_state = 29, .external_lex_state = 8}, + [5840] = {.lex_state = 23, .external_lex_state = 8}, + [5841] = {.lex_state = 25, .external_lex_state = 9}, + [5842] = {.lex_state = 29, .external_lex_state = 8}, + [5843] = {.lex_state = 29, .external_lex_state = 8}, + [5844] = {.lex_state = 29, .external_lex_state = 8}, + [5845] = {.lex_state = 29, .external_lex_state = 8}, + [5846] = {.lex_state = 23, .external_lex_state = 8}, + [5847] = {.lex_state = 29, .external_lex_state = 8}, + [5848] = {.lex_state = 23, .external_lex_state = 8}, + [5849] = {.lex_state = 25, .external_lex_state = 9}, + [5850] = {.lex_state = 23, .external_lex_state = 8}, + [5851] = {.lex_state = 23, .external_lex_state = 8}, + [5852] = {.lex_state = 26, .external_lex_state = 8}, + [5853] = {.lex_state = 26, .external_lex_state = 8}, + [5854] = {.lex_state = 29, .external_lex_state = 8}, + [5855] = {.lex_state = 26, .external_lex_state = 8}, + [5856] = {.lex_state = 23, .external_lex_state = 8}, + [5857] = {.lex_state = 29, .external_lex_state = 8}, + [5858] = {.lex_state = 26, .external_lex_state = 8}, + [5859] = {.lex_state = 23, .external_lex_state = 8}, + [5860] = {.lex_state = 26, .external_lex_state = 8}, + [5861] = {.lex_state = 26, .external_lex_state = 8}, + [5862] = {.lex_state = 26, .external_lex_state = 8}, + [5863] = {.lex_state = 29, .external_lex_state = 8}, + [5864] = {.lex_state = 23, .external_lex_state = 8}, + [5865] = {.lex_state = 23, .external_lex_state = 8}, + [5866] = {.lex_state = 26, .external_lex_state = 8}, + [5867] = {.lex_state = 23, .external_lex_state = 8}, + [5868] = {.lex_state = 26, .external_lex_state = 8}, + [5869] = {.lex_state = 23, .external_lex_state = 8}, + [5870] = {.lex_state = 26, .external_lex_state = 8}, + [5871] = {.lex_state = 23, .external_lex_state = 8}, + [5872] = {.lex_state = 23, .external_lex_state = 8}, + [5873] = {.lex_state = 26, .external_lex_state = 8}, + [5874] = {.lex_state = 23, .external_lex_state = 8}, + [5875] = {.lex_state = 23, .external_lex_state = 8}, + [5876] = {.lex_state = 23, .external_lex_state = 8}, + [5877] = {.lex_state = 23, .external_lex_state = 8}, + [5878] = {.lex_state = 23, .external_lex_state = 8}, [5879] = {.lex_state = 25, .external_lex_state = 8}, - [5880] = {.lex_state = 21, .external_lex_state = 8}, + [5880] = {.lex_state = 23, .external_lex_state = 8}, [5881] = {.lex_state = 25, .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 = 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 = 25, .external_lex_state = 8}, - [5895] = {.lex_state = 25, .external_lex_state = 8}, - [5896] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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 = 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 = 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}, - [5917] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 25, .external_lex_state = 8}, - [5922] = {.lex_state = 25, .external_lex_state = 8}, - [5923] = {.lex_state = 25, .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 = 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 = 25, .external_lex_state = 8}, - [6013] = {.lex_state = 25, .external_lex_state = 8}, - [6014] = {.lex_state = 25, .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 = 25, .external_lex_state = 8}, - [6023] = {.lex_state = 25, .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 = 25, .external_lex_state = 8}, - [6029] = {.lex_state = 25, .external_lex_state = 8}, - [6030] = {.lex_state = 25, .external_lex_state = 8}, - [6031] = {.lex_state = 25, .external_lex_state = 8}, - [6032] = {.lex_state = 25, .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 = 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 = 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}, - [6048] = {.lex_state = 25, .external_lex_state = 8}, - [6049] = {.lex_state = 25, .external_lex_state = 8}, - [6050] = {.lex_state = 25, .external_lex_state = 8}, - [6051] = {.lex_state = 25, .external_lex_state = 8}, - [6052] = {.lex_state = 25, .external_lex_state = 8}, - [6053] = {.lex_state = 25, .external_lex_state = 8}, - [6054] = {.lex_state = 25, .external_lex_state = 8}, - [6055] = {.lex_state = 25, .external_lex_state = 8}, - [6056] = {.lex_state = 25, .external_lex_state = 8}, - [6057] = {.lex_state = 25, .external_lex_state = 8}, - [6058] = {.lex_state = 25, .external_lex_state = 8}, - [6059] = {.lex_state = 25, .external_lex_state = 8}, - [6060] = {.lex_state = 25, .external_lex_state = 8}, - [6061] = {.lex_state = 25, .external_lex_state = 8}, - [6062] = {.lex_state = 25, .external_lex_state = 8}, - [6063] = {.lex_state = 25, .external_lex_state = 8}, - [6064] = {.lex_state = 25, .external_lex_state = 8}, - [6065] = {.lex_state = 25, .external_lex_state = 8}, - [6066] = {.lex_state = 25, .external_lex_state = 8}, - [6067] = {.lex_state = 25, .external_lex_state = 8}, - [6068] = {.lex_state = 25, .external_lex_state = 8}, - [6069] = {.lex_state = 25, .external_lex_state = 8}, - [6070] = {.lex_state = 25, .external_lex_state = 8}, - [6071] = {.lex_state = 25, .external_lex_state = 8}, - [6072] = {.lex_state = 25, .external_lex_state = 8}, - [6073] = {.lex_state = 25, .external_lex_state = 8}, - [6074] = {.lex_state = 25, .external_lex_state = 8}, - [6075] = {.lex_state = 25, .external_lex_state = 8}, - [6076] = {.lex_state = 25, .external_lex_state = 8}, - [6077] = {.lex_state = 25, .external_lex_state = 8}, - [6078] = {.lex_state = 25, .external_lex_state = 8}, - [6079] = {.lex_state = 25, .external_lex_state = 8}, - [6080] = {.lex_state = 25, .external_lex_state = 8}, - [6081] = {.lex_state = 25, .external_lex_state = 8}, - [6082] = {.lex_state = 25, .external_lex_state = 8}, - [6083] = {.lex_state = 25, .external_lex_state = 8}, - [6084] = {.lex_state = 25, .external_lex_state = 8}, - [6085] = {.lex_state = 25, .external_lex_state = 8}, - [6086] = {.lex_state = 25, .external_lex_state = 8}, - [6087] = {.lex_state = 25, .external_lex_state = 8}, - [6088] = {.lex_state = 25, .external_lex_state = 8}, - [6089] = {.lex_state = 25, .external_lex_state = 8}, - [6090] = {.lex_state = 25, .external_lex_state = 8}, - [6091] = {.lex_state = 25, .external_lex_state = 8}, - [6092] = {.lex_state = 25, .external_lex_state = 8}, - [6093] = {.lex_state = 25, .external_lex_state = 8}, - [6094] = {.lex_state = 25, .external_lex_state = 8}, - [6095] = {.lex_state = 25, .external_lex_state = 8}, - [6096] = {.lex_state = 25, .external_lex_state = 8}, - [6097] = {.lex_state = 25, .external_lex_state = 8}, - [6098] = {.lex_state = 25, .external_lex_state = 8}, - [6099] = {.lex_state = 25, .external_lex_state = 8}, - [6100] = {.lex_state = 25, .external_lex_state = 8}, - [6101] = {.lex_state = 25, .external_lex_state = 8}, - [6102] = {.lex_state = 25, .external_lex_state = 8}, - [6103] = {.lex_state = 25, .external_lex_state = 8}, - [6104] = {.lex_state = 25, .external_lex_state = 8}, - [6105] = {.lex_state = 25, .external_lex_state = 8}, - [6106] = {.lex_state = 25, .external_lex_state = 8}, - [6107] = {.lex_state = 25, .external_lex_state = 8}, - [6108] = {.lex_state = 25, .external_lex_state = 8}, - [6109] = {.lex_state = 25, .external_lex_state = 8}, - [6110] = {.lex_state = 25, .external_lex_state = 8}, - [6111] = {.lex_state = 25, .external_lex_state = 8}, - [6112] = {.lex_state = 25, .external_lex_state = 8}, - [6113] = {.lex_state = 25, .external_lex_state = 8}, - [6114] = {.lex_state = 25, .external_lex_state = 8}, - [6115] = {.lex_state = 25, .external_lex_state = 8}, - [6116] = {.lex_state = 25, .external_lex_state = 8}, - [6117] = {.lex_state = 25, .external_lex_state = 8}, - [6118] = {.lex_state = 25, .external_lex_state = 8}, - [6119] = {.lex_state = 25, .external_lex_state = 8}, - [6120] = {.lex_state = 25, .external_lex_state = 8}, - [6121] = {.lex_state = 25, .external_lex_state = 8}, - [6122] = {.lex_state = 25, .external_lex_state = 8}, - [6123] = {.lex_state = 25, .external_lex_state = 8}, - [6124] = {.lex_state = 25, .external_lex_state = 8}, - [6125] = {.lex_state = 25, .external_lex_state = 8}, - [6126] = {.lex_state = 25, .external_lex_state = 8}, - [6127] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6135] = {.lex_state = 25, .external_lex_state = 8}, - [6136] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 25, .external_lex_state = 8}, - [6141] = {.lex_state = 25, .external_lex_state = 8}, - [6142] = {.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 = 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}, - [6149] = {.lex_state = 25, .external_lex_state = 8}, - [6150] = {.lex_state = 25, .external_lex_state = 8}, - [6151] = {.lex_state = 25, .external_lex_state = 8}, - [6152] = {.lex_state = 25, .external_lex_state = 8}, - [6153] = {.lex_state = 25, .external_lex_state = 8}, - [6154] = {.lex_state = 25, .external_lex_state = 8}, - [6155] = {.lex_state = 25, .external_lex_state = 8}, - [6156] = {.lex_state = 25, .external_lex_state = 8}, - [6157] = {.lex_state = 25, .external_lex_state = 8}, - [6158] = {.lex_state = 25, .external_lex_state = 8}, - [6159] = {.lex_state = 25, .external_lex_state = 8}, - [6160] = {.lex_state = 25, .external_lex_state = 8}, - [6161] = {.lex_state = 25, .external_lex_state = 8}, - [6162] = {.lex_state = 25, .external_lex_state = 8}, - [6163] = {.lex_state = 25, .external_lex_state = 8}, - [6164] = {.lex_state = 25, .external_lex_state = 8}, - [6165] = {.lex_state = 25, .external_lex_state = 8}, - [6166] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6174] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6182] = {.lex_state = 25, .external_lex_state = 8}, - [6183] = {.lex_state = 25, .external_lex_state = 8}, - [6184] = {.lex_state = 25, .external_lex_state = 8}, - [6185] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6193] = {.lex_state = 25, .external_lex_state = 8}, - [6194] = {.lex_state = 25, .external_lex_state = 8}, - [6195] = {.lex_state = 25, .external_lex_state = 8}, - [6196] = {.lex_state = 25, .external_lex_state = 8}, - [6197] = {.lex_state = 25, .external_lex_state = 8}, - [6198] = {.lex_state = 25, .external_lex_state = 8}, - [6199] = {.lex_state = 25, .external_lex_state = 8}, - [6200] = {.lex_state = 25, .external_lex_state = 8}, - [6201] = {.lex_state = 25, .external_lex_state = 8}, - [6202] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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 = 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}, - [6215] = {.lex_state = 25, .external_lex_state = 8}, - [6216] = {.lex_state = 25, .external_lex_state = 8}, - [6217] = {.lex_state = 25, .external_lex_state = 8}, - [6218] = {.lex_state = 25, .external_lex_state = 8}, - [6219] = {.lex_state = 25, .external_lex_state = 8}, - [6220] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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 = 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}, - [6232] = {.lex_state = 25, .external_lex_state = 8}, - [6233] = {.lex_state = 25, .external_lex_state = 8}, - [6234] = {.lex_state = 25, .external_lex_state = 8}, - [6235] = {.lex_state = 25, .external_lex_state = 8}, - [6236] = {.lex_state = 25, .external_lex_state = 8}, - [6237] = {.lex_state = 25, .external_lex_state = 8}, - [6238] = {.lex_state = 25, .external_lex_state = 8}, - [6239] = {.lex_state = 25, .external_lex_state = 8}, - [6240] = {.lex_state = 25, .external_lex_state = 8}, - [6241] = {.lex_state = 25, .external_lex_state = 8}, - [6242] = {.lex_state = 25, .external_lex_state = 8}, - [6243] = {.lex_state = 25, .external_lex_state = 8}, - [6244] = {.lex_state = 25, .external_lex_state = 8}, - [6245] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 28, .external_lex_state = 8}, - [6250] = {.lex_state = 25, .external_lex_state = 8}, - [6251] = {.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}, - [6256] = {.lex_state = 25, .external_lex_state = 8}, - [6257] = {.lex_state = 25, .external_lex_state = 8}, - [6258] = {.lex_state = 25, .external_lex_state = 8}, - [6259] = {.lex_state = 25, .external_lex_state = 8}, - [6260] = {.lex_state = 25, .external_lex_state = 8}, - [6261] = {.lex_state = 25, .external_lex_state = 8}, - [6262] = {.lex_state = 25, .external_lex_state = 8}, - [6263] = {.lex_state = 25, .external_lex_state = 8}, - [6264] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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 = 25, .external_lex_state = 8}, - [6273] = {.lex_state = 25, .external_lex_state = 8}, - [6274] = {.lex_state = 25, .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}, - [6279] = {.lex_state = 25, .external_lex_state = 8}, - [6280] = {.lex_state = 25, .external_lex_state = 8}, - [6281] = {.lex_state = 25, .external_lex_state = 8}, - [6282] = {.lex_state = 25, .external_lex_state = 8}, - [6283] = {.lex_state = 25, .external_lex_state = 8}, - [6284] = {.lex_state = 25, .external_lex_state = 8}, - [6285] = {.lex_state = 25, .external_lex_state = 8}, - [6286] = {.lex_state = 25, .external_lex_state = 8}, - [6287] = {.lex_state = 25, .external_lex_state = 8}, - [6288] = {.lex_state = 25, .external_lex_state = 8}, - [6289] = {.lex_state = 25, .external_lex_state = 8}, - [6290] = {.lex_state = 25, .external_lex_state = 8}, - [6291] = {.lex_state = 25, .external_lex_state = 8}, - [6292] = {.lex_state = 25, .external_lex_state = 8}, - [6293] = {.lex_state = 25, .external_lex_state = 8}, - [6294] = {.lex_state = 25, .external_lex_state = 8}, - [6295] = {.lex_state = 25, .external_lex_state = 8}, - [6296] = {.lex_state = 25, .external_lex_state = 8}, - [6297] = {.lex_state = 25, .external_lex_state = 8}, - [6298] = {.lex_state = 25, .external_lex_state = 8}, - [6299] = {.lex_state = 25, .external_lex_state = 8}, - [6300] = {.lex_state = 25, .external_lex_state = 8}, - [6301] = {.lex_state = 25, .external_lex_state = 8}, - [6302] = {.lex_state = 25, .external_lex_state = 8}, - [6303] = {.lex_state = 25, .external_lex_state = 8}, - [6304] = {.lex_state = 25, .external_lex_state = 8}, - [6305] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6313] = {.lex_state = 25, .external_lex_state = 8}, - [6314] = {.lex_state = 25, .external_lex_state = 8}, - [6315] = {.lex_state = 25, .external_lex_state = 8}, - [6316] = {.lex_state = 25, .external_lex_state = 8}, - [6317] = {.lex_state = 25, .external_lex_state = 8}, - [6318] = {.lex_state = 25, .external_lex_state = 8}, - [6319] = {.lex_state = 25, .external_lex_state = 8}, - [6320] = {.lex_state = 25, .external_lex_state = 8}, - [6321] = {.lex_state = 25, .external_lex_state = 8}, - [6322] = {.lex_state = 25, .external_lex_state = 8}, - [6323] = {.lex_state = 25, .external_lex_state = 8}, - [6324] = {.lex_state = 25, .external_lex_state = 8}, - [6325] = {.lex_state = 25, .external_lex_state = 8}, - [6326] = {.lex_state = 25, .external_lex_state = 8}, - [6327] = {.lex_state = 25, .external_lex_state = 8}, - [6328] = {.lex_state = 25, .external_lex_state = 8}, - [6329] = {.lex_state = 25, .external_lex_state = 8}, - [6330] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 25, .external_lex_state = 8}, - [6335] = {.lex_state = 25, .external_lex_state = 8}, - [6336] = {.lex_state = 25, .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}, - [6341] = {.lex_state = 25, .external_lex_state = 8}, - [6342] = {.lex_state = 25, .external_lex_state = 8}, - [6343] = {.lex_state = 25, .external_lex_state = 8}, - [6344] = {.lex_state = 25, .external_lex_state = 8}, - [6345] = {.lex_state = 25, .external_lex_state = 8}, - [6346] = {.lex_state = 25, .external_lex_state = 8}, - [6347] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6355] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6363] = {.lex_state = 25, .external_lex_state = 8}, - [6364] = {.lex_state = 25, .external_lex_state = 8}, - [6365] = {.lex_state = 25, .external_lex_state = 8}, - [6366] = {.lex_state = 25, .external_lex_state = 8}, - [6367] = {.lex_state = 25, .external_lex_state = 8}, - [6368] = {.lex_state = 25, .external_lex_state = 8}, - [6369] = {.lex_state = 25, .external_lex_state = 8}, - [6370] = {.lex_state = 25, .external_lex_state = 8}, - [6371] = {.lex_state = 25, .external_lex_state = 8}, - [6372] = {.lex_state = 25, .external_lex_state = 8}, - [6373] = {.lex_state = 25, .external_lex_state = 8}, - [6374] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6382] = {.lex_state = 25, .external_lex_state = 8}, - [6383] = {.lex_state = 25, .external_lex_state = 8}, - [6384] = {.lex_state = 25, .external_lex_state = 8}, - [6385] = {.lex_state = 25, .external_lex_state = 8}, - [6386] = {.lex_state = 25, .external_lex_state = 8}, - [6387] = {.lex_state = 25, .external_lex_state = 8}, - [6388] = {.lex_state = 25, .external_lex_state = 8}, - [6389] = {.lex_state = 25, .external_lex_state = 8}, - [6390] = {.lex_state = 25, .external_lex_state = 8}, - [6391] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6399] = {.lex_state = 25, .external_lex_state = 8}, - [6400] = {.lex_state = 25, .external_lex_state = 8}, - [6401] = {.lex_state = 25, .external_lex_state = 8}, - [6402] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6410] = {.lex_state = 25, .external_lex_state = 8}, - [6411] = {.lex_state = 25, .external_lex_state = 8}, - [6412] = {.lex_state = 25, .external_lex_state = 8}, - [6413] = {.lex_state = 25, .external_lex_state = 8}, - [6414] = {.lex_state = 25, .external_lex_state = 8}, - [6415] = {.lex_state = 25, .external_lex_state = 8}, - [6416] = {.lex_state = 25, .external_lex_state = 8}, - [6417] = {.lex_state = 25, .external_lex_state = 8}, - [6418] = {.lex_state = 25, .external_lex_state = 8}, - [6419] = {.lex_state = 25, .external_lex_state = 8}, - [6420] = {.lex_state = 25, .external_lex_state = 8}, - [6421] = {.lex_state = 25, .external_lex_state = 8}, - [6422] = {.lex_state = 25, .external_lex_state = 8}, - [6423] = {.lex_state = 25, .external_lex_state = 8}, - [6424] = {.lex_state = 25, .external_lex_state = 8}, - [6425] = {.lex_state = 25, .external_lex_state = 8}, - [6426] = {.lex_state = 25, .external_lex_state = 8}, - [6427] = {.lex_state = 25, .external_lex_state = 8}, - [6428] = {.lex_state = 25, .external_lex_state = 8}, - [6429] = {.lex_state = 25, .external_lex_state = 8}, - [6430] = {.lex_state = 25, .external_lex_state = 8}, - [6431] = {.lex_state = 25, .external_lex_state = 8}, - [6432] = {.lex_state = 25, .external_lex_state = 8}, - [6433] = {.lex_state = 25, .external_lex_state = 8}, - [6434] = {.lex_state = 25, .external_lex_state = 8}, - [6435] = {.lex_state = 25, .external_lex_state = 8}, - [6436] = {.lex_state = 25, .external_lex_state = 8}, - [6437] = {.lex_state = 25, .external_lex_state = 8}, - [6438] = {.lex_state = 25, .external_lex_state = 8}, - [6439] = {.lex_state = 25, .external_lex_state = 8}, - [6440] = {.lex_state = 25, .external_lex_state = 8}, - [6441] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6449] = {.lex_state = 25, .external_lex_state = 8}, - [6450] = {.lex_state = 25, .external_lex_state = 8}, - [6451] = {.lex_state = 25, .external_lex_state = 8}, - [6452] = {.lex_state = 25, .external_lex_state = 8}, - [6453] = {.lex_state = 25, .external_lex_state = 8}, - [6454] = {.lex_state = 25, .external_lex_state = 8}, - [6455] = {.lex_state = 25, .external_lex_state = 8}, - [6456] = {.lex_state = 25, .external_lex_state = 8}, - [6457] = {.lex_state = 25, .external_lex_state = 8}, - [6458] = {.lex_state = 25, .external_lex_state = 8}, - [6459] = {.lex_state = 25, .external_lex_state = 8}, - [6460] = {.lex_state = 25, .external_lex_state = 8}, - [6461] = {.lex_state = 25, .external_lex_state = 8}, - [6462] = {.lex_state = 25, .external_lex_state = 8}, - [6463] = {.lex_state = 25, .external_lex_state = 8}, - [6464] = {.lex_state = 25, .external_lex_state = 8}, - [6465] = {.lex_state = 25, .external_lex_state = 8}, - [6466] = {.lex_state = 25, .external_lex_state = 8}, - [6467] = {.lex_state = 25, .external_lex_state = 8}, - [6468] = {.lex_state = 25, .external_lex_state = 8}, - [6469] = {.lex_state = 25, .external_lex_state = 8}, - [6470] = {.lex_state = 25, .external_lex_state = 8}, - [6471] = {.lex_state = 25, .external_lex_state = 8}, - [6472] = {.lex_state = 25, .external_lex_state = 8}, - [6473] = {.lex_state = 25, .external_lex_state = 8}, - [6474] = {.lex_state = 25, .external_lex_state = 8}, - [6475] = {.lex_state = 25, .external_lex_state = 8}, - [6476] = {.lex_state = 25, .external_lex_state = 8}, - [6477] = {.lex_state = 25, .external_lex_state = 8}, - [6478] = {.lex_state = 25, .external_lex_state = 8}, - [6479] = {.lex_state = 25, .external_lex_state = 8}, - [6480] = {.lex_state = 25, .external_lex_state = 8}, - [6481] = {.lex_state = 25, .external_lex_state = 8}, - [6482] = {.lex_state = 25, .external_lex_state = 8}, - [6483] = {.lex_state = 25, .external_lex_state = 8}, - [6484] = {.lex_state = 25, .external_lex_state = 8}, - [6485] = {.lex_state = 25, .external_lex_state = 8}, - [6486] = {.lex_state = 25, .external_lex_state = 8}, - [6487] = {.lex_state = 25, .external_lex_state = 8}, - [6488] = {.lex_state = 25, .external_lex_state = 8}, - [6489] = {.lex_state = 25, .external_lex_state = 8}, - [6490] = {.lex_state = 25, .external_lex_state = 8}, - [6491] = {.lex_state = 25, .external_lex_state = 8}, - [6492] = {.lex_state = 25, .external_lex_state = 8}, - [6493] = {.lex_state = 25, .external_lex_state = 8}, - [6494] = {.lex_state = 25, .external_lex_state = 8}, - [6495] = {.lex_state = 25, .external_lex_state = 8}, - [6496] = {.lex_state = 25, .external_lex_state = 8}, - [6497] = {.lex_state = 25, .external_lex_state = 8}, - [6498] = {.lex_state = 25, .external_lex_state = 8}, - [6499] = {.lex_state = 25, .external_lex_state = 8}, - [6500] = {.lex_state = 25, .external_lex_state = 8}, - [6501] = {.lex_state = 25, .external_lex_state = 8}, - [6502] = {.lex_state = 25, .external_lex_state = 8}, - [6503] = {.lex_state = 25, .external_lex_state = 8}, - [6504] = {.lex_state = 25, .external_lex_state = 8}, - [6505] = {.lex_state = 25, .external_lex_state = 8}, - [6506] = {.lex_state = 25, .external_lex_state = 8}, - [6507] = {.lex_state = 25, .external_lex_state = 8}, - [6508] = {.lex_state = 25, .external_lex_state = 8}, - [6509] = {.lex_state = 25, .external_lex_state = 8}, - [6510] = {.lex_state = 25, .external_lex_state = 8}, - [6511] = {.lex_state = 25, .external_lex_state = 8}, - [6512] = {.lex_state = 25, .external_lex_state = 8}, - [6513] = {.lex_state = 25, .external_lex_state = 8}, - [6514] = {.lex_state = 25, .external_lex_state = 8}, - [6515] = {.lex_state = 25, .external_lex_state = 8}, - [6516] = {.lex_state = 25, .external_lex_state = 8}, - [6517] = {.lex_state = 25, .external_lex_state = 8}, - [6518] = {.lex_state = 25, .external_lex_state = 8}, - [6519] = {.lex_state = 25, .external_lex_state = 8}, - [6520] = {.lex_state = 25, .external_lex_state = 8}, - [6521] = {.lex_state = 25, .external_lex_state = 8}, - [6522] = {.lex_state = 25, .external_lex_state = 8}, - [6523] = {.lex_state = 25, .external_lex_state = 8}, - [6524] = {.lex_state = 25, .external_lex_state = 8}, - [6525] = {.lex_state = 25, .external_lex_state = 8}, - [6526] = {.lex_state = 25, .external_lex_state = 8}, - [6527] = {.lex_state = 25, .external_lex_state = 8}, - [6528] = {.lex_state = 25, .external_lex_state = 8}, - [6529] = {.lex_state = 25, .external_lex_state = 8}, - [6530] = {.lex_state = 25, .external_lex_state = 8}, - [6531] = {.lex_state = 25, .external_lex_state = 8}, - [6532] = {.lex_state = 25, .external_lex_state = 8}, - [6533] = {.lex_state = 25, .external_lex_state = 8}, - [6534] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6542] = {.lex_state = 25, .external_lex_state = 8}, - [6543] = {.lex_state = 25, .external_lex_state = 8}, - [6544] = {.lex_state = 25, .external_lex_state = 8}, - [6545] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 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}, - [6553] = {.lex_state = 25, .external_lex_state = 8}, - [6554] = {.lex_state = 25, .external_lex_state = 8}, - [6555] = {.lex_state = 25, .external_lex_state = 8}, - [6556] = {.lex_state = 25, .external_lex_state = 8}, - [6557] = {.lex_state = 25, .external_lex_state = 8}, - [6558] = {.lex_state = 25, .external_lex_state = 8}, - [6559] = {.lex_state = 25, .external_lex_state = 8}, - [6560] = {.lex_state = 25, .external_lex_state = 8}, - [6561] = {.lex_state = 25, .external_lex_state = 8}, - [6562] = {.lex_state = 25, .external_lex_state = 8}, - [6563] = {.lex_state = 25, .external_lex_state = 8}, - [6564] = {.lex_state = 25, .external_lex_state = 8}, - [6565] = {.lex_state = 25, .external_lex_state = 8}, - [6566] = {.lex_state = 25, .external_lex_state = 8}, - [6567] = {.lex_state = 25, .external_lex_state = 8}, - [6568] = {.lex_state = 25, .external_lex_state = 8}, - [6569] = {.lex_state = 25, .external_lex_state = 8}, - [6570] = {.lex_state = 25, .external_lex_state = 8}, - [6571] = {.lex_state = 25, .external_lex_state = 8}, - [6572] = {.lex_state = 25, .external_lex_state = 8}, - [6573] = {.lex_state = 25, .external_lex_state = 8}, - [6574] = {.lex_state = 25, .external_lex_state = 8}, - [6575] = {.lex_state = 25, .external_lex_state = 8}, - [6576] = {.lex_state = 25, .external_lex_state = 8}, - [6577] = {.lex_state = 25, .external_lex_state = 8}, - [6578] = {.lex_state = 25, .external_lex_state = 8}, - [6579] = {.lex_state = 25, .external_lex_state = 8}, - [6580] = {.lex_state = 25, .external_lex_state = 8}, - [6581] = {.lex_state = 25, .external_lex_state = 8}, - [6582] = {.lex_state = 25, .external_lex_state = 8}, - [6583] = {.lex_state = 25, .external_lex_state = 8}, - [6584] = {.lex_state = 25, .external_lex_state = 8}, - [6585] = {.lex_state = 25, .external_lex_state = 8}, - [6586] = {.lex_state = 25, .external_lex_state = 8}, - [6587] = {.lex_state = 25, .external_lex_state = 8}, - [6588] = {.lex_state = 25, .external_lex_state = 8}, - [6589] = {.lex_state = 25, .external_lex_state = 8}, + [5882] = {.lex_state = 23, .external_lex_state = 8}, + [5883] = {.lex_state = 23, .external_lex_state = 8}, + [5884] = {.lex_state = 26, .external_lex_state = 8}, + [5885] = {.lex_state = 26, .external_lex_state = 8}, + [5886] = {.lex_state = 26, .external_lex_state = 8}, + [5887] = {.lex_state = 26, .external_lex_state = 8}, + [5888] = {.lex_state = 26, .external_lex_state = 8}, + [5889] = {.lex_state = 26, .external_lex_state = 8}, + [5890] = {.lex_state = 26, .external_lex_state = 8}, + [5891] = {.lex_state = 26, .external_lex_state = 8}, + [5892] = {.lex_state = 26, .external_lex_state = 8}, + [5893] = {.lex_state = 26, .external_lex_state = 8}, + [5894] = {.lex_state = 26, .external_lex_state = 8}, + [5895] = {.lex_state = 26, .external_lex_state = 8}, + [5896] = {.lex_state = 26, .external_lex_state = 8}, + [5897] = {.lex_state = 26, .external_lex_state = 8}, + [5898] = {.lex_state = 26, .external_lex_state = 8}, + [5899] = {.lex_state = 29, .external_lex_state = 8}, + [5900] = {.lex_state = 26, .external_lex_state = 8}, + [5901] = {.lex_state = 26, .external_lex_state = 8}, + [5902] = {.lex_state = 29, .external_lex_state = 8}, + [5903] = {.lex_state = 26, .external_lex_state = 8}, + [5904] = {.lex_state = 29, .external_lex_state = 8}, + [5905] = {.lex_state = 26, .external_lex_state = 8}, + [5906] = {.lex_state = 26, .external_lex_state = 8}, + [5907] = {.lex_state = 26, .external_lex_state = 8}, + [5908] = {.lex_state = 26, .external_lex_state = 8}, + [5909] = {.lex_state = 26, .external_lex_state = 8}, + [5910] = {.lex_state = 26, .external_lex_state = 8}, + [5911] = {.lex_state = 26, .external_lex_state = 8}, + [5912] = {.lex_state = 26, .external_lex_state = 8}, + [5913] = {.lex_state = 26, .external_lex_state = 8}, + [5914] = {.lex_state = 26, .external_lex_state = 8}, + [5915] = {.lex_state = 26, .external_lex_state = 8}, + [5916] = {.lex_state = 26, .external_lex_state = 8}, + [5917] = {.lex_state = 26, .external_lex_state = 8}, + [5918] = {.lex_state = 26, .external_lex_state = 8}, + [5919] = {.lex_state = 26, .external_lex_state = 8}, + [5920] = {.lex_state = 26, .external_lex_state = 8}, + [5921] = {.lex_state = 26, .external_lex_state = 8}, + [5922] = {.lex_state = 26, .external_lex_state = 8}, + [5923] = {.lex_state = 26, .external_lex_state = 8}, + [5924] = {.lex_state = 26, .external_lex_state = 8}, + [5925] = {.lex_state = 26, .external_lex_state = 8}, + [5926] = {.lex_state = 26, .external_lex_state = 8}, + [5927] = {.lex_state = 26, .external_lex_state = 8}, + [5928] = {.lex_state = 26, .external_lex_state = 8}, + [5929] = {.lex_state = 26, .external_lex_state = 8}, + [5930] = {.lex_state = 26, .external_lex_state = 8}, + [5931] = {.lex_state = 26, .external_lex_state = 8}, + [5932] = {.lex_state = 26, .external_lex_state = 8}, + [5933] = {.lex_state = 26, .external_lex_state = 8}, + [5934] = {.lex_state = 26, .external_lex_state = 8}, + [5935] = {.lex_state = 26, .external_lex_state = 8}, + [5936] = {.lex_state = 26, .external_lex_state = 8}, + [5937] = {.lex_state = 29, .external_lex_state = 8}, + [5938] = {.lex_state = 26, .external_lex_state = 8}, + [5939] = {.lex_state = 26, .external_lex_state = 8}, + [5940] = {.lex_state = 26, .external_lex_state = 8}, + [5941] = {.lex_state = 26, .external_lex_state = 8}, + [5942] = {.lex_state = 26, .external_lex_state = 8}, + [5943] = {.lex_state = 26, .external_lex_state = 8}, + [5944] = {.lex_state = 26, .external_lex_state = 8}, + [5945] = {.lex_state = 26, .external_lex_state = 8}, + [5946] = {.lex_state = 26, .external_lex_state = 8}, + [5947] = {.lex_state = 26, .external_lex_state = 8}, + [5948] = {.lex_state = 26, .external_lex_state = 8}, + [5949] = {.lex_state = 26, .external_lex_state = 8}, + [5950] = {.lex_state = 26, .external_lex_state = 8}, + [5951] = {.lex_state = 26, .external_lex_state = 8}, + [5952] = {.lex_state = 26, .external_lex_state = 8}, + [5953] = {.lex_state = 26, .external_lex_state = 8}, + [5954] = {.lex_state = 26, .external_lex_state = 8}, + [5955] = {.lex_state = 26, .external_lex_state = 8}, + [5956] = {.lex_state = 26, .external_lex_state = 8}, + [5957] = {.lex_state = 26, .external_lex_state = 8}, + [5958] = {.lex_state = 26, .external_lex_state = 8}, + [5959] = {.lex_state = 26, .external_lex_state = 8}, + [5960] = {.lex_state = 26, .external_lex_state = 8}, + [5961] = {.lex_state = 26, .external_lex_state = 8}, + [5962] = {.lex_state = 26, .external_lex_state = 8}, + [5963] = {.lex_state = 26, .external_lex_state = 8}, + [5964] = {.lex_state = 26, .external_lex_state = 8}, + [5965] = {.lex_state = 26, .external_lex_state = 8}, + [5966] = {.lex_state = 26, .external_lex_state = 8}, + [5967] = {.lex_state = 26, .external_lex_state = 8}, + [5968] = {.lex_state = 26, .external_lex_state = 8}, + [5969] = {.lex_state = 26, .external_lex_state = 8}, + [5970] = {.lex_state = 26, .external_lex_state = 8}, + [5971] = {.lex_state = 26, .external_lex_state = 8}, + [5972] = {.lex_state = 26, .external_lex_state = 8}, + [5973] = {.lex_state = 26, .external_lex_state = 8}, + [5974] = {.lex_state = 26, .external_lex_state = 8}, + [5975] = {.lex_state = 26, .external_lex_state = 8}, + [5976] = {.lex_state = 26, .external_lex_state = 8}, + [5977] = {.lex_state = 26, .external_lex_state = 8}, + [5978] = {.lex_state = 26, .external_lex_state = 8}, + [5979] = {.lex_state = 26, .external_lex_state = 8}, + [5980] = {.lex_state = 26, .external_lex_state = 8}, + [5981] = {.lex_state = 26, .external_lex_state = 8}, + [5982] = {.lex_state = 29, .external_lex_state = 8}, + [5983] = {.lex_state = 26, .external_lex_state = 8}, + [5984] = {.lex_state = 26, .external_lex_state = 8}, + [5985] = {.lex_state = 26, .external_lex_state = 8}, + [5986] = {.lex_state = 26, .external_lex_state = 8}, + [5987] = {.lex_state = 26, .external_lex_state = 8}, + [5988] = {.lex_state = 26, .external_lex_state = 8}, + [5989] = {.lex_state = 26, .external_lex_state = 8}, + [5990] = {.lex_state = 26, .external_lex_state = 8}, + [5991] = {.lex_state = 26, .external_lex_state = 8}, + [5992] = {.lex_state = 26, .external_lex_state = 8}, + [5993] = {.lex_state = 26, .external_lex_state = 8}, + [5994] = {.lex_state = 26, .external_lex_state = 8}, + [5995] = {.lex_state = 26, .external_lex_state = 8}, + [5996] = {.lex_state = 26, .external_lex_state = 8}, + [5997] = {.lex_state = 26, .external_lex_state = 8}, + [5998] = {.lex_state = 26, .external_lex_state = 8}, + [5999] = {.lex_state = 26, .external_lex_state = 8}, + [6000] = {.lex_state = 26, .external_lex_state = 8}, + [6001] = {.lex_state = 26, .external_lex_state = 8}, + [6002] = {.lex_state = 26, .external_lex_state = 8}, + [6003] = {.lex_state = 26, .external_lex_state = 8}, + [6004] = {.lex_state = 26, .external_lex_state = 8}, + [6005] = {.lex_state = 26, .external_lex_state = 8}, + [6006] = {.lex_state = 26, .external_lex_state = 8}, + [6007] = {.lex_state = 26, .external_lex_state = 8}, + [6008] = {.lex_state = 26, .external_lex_state = 8}, + [6009] = {.lex_state = 26, .external_lex_state = 8}, + [6010] = {.lex_state = 26, .external_lex_state = 8}, + [6011] = {.lex_state = 26, .external_lex_state = 8}, + [6012] = {.lex_state = 26, .external_lex_state = 8}, + [6013] = {.lex_state = 26, .external_lex_state = 8}, + [6014] = {.lex_state = 26, .external_lex_state = 8}, + [6015] = {.lex_state = 26, .external_lex_state = 8}, + [6016] = {.lex_state = 26, .external_lex_state = 8}, + [6017] = {.lex_state = 26, .external_lex_state = 8}, + [6018] = {.lex_state = 26, .external_lex_state = 8}, + [6019] = {.lex_state = 26, .external_lex_state = 8}, + [6020] = {.lex_state = 26, .external_lex_state = 8}, + [6021] = {.lex_state = 26, .external_lex_state = 8}, + [6022] = {.lex_state = 26, .external_lex_state = 8}, + [6023] = {.lex_state = 26, .external_lex_state = 8}, + [6024] = {.lex_state = 26, .external_lex_state = 8}, + [6025] = {.lex_state = 26, .external_lex_state = 8}, + [6026] = {.lex_state = 26, .external_lex_state = 8}, + [6027] = {.lex_state = 26, .external_lex_state = 8}, + [6028] = {.lex_state = 26, .external_lex_state = 8}, + [6029] = {.lex_state = 26, .external_lex_state = 8}, + [6030] = {.lex_state = 26, .external_lex_state = 8}, + [6031] = {.lex_state = 26, .external_lex_state = 8}, + [6032] = {.lex_state = 26, .external_lex_state = 8}, + [6033] = {.lex_state = 26, .external_lex_state = 8}, + [6034] = {.lex_state = 26, .external_lex_state = 8}, + [6035] = {.lex_state = 26, .external_lex_state = 8}, + [6036] = {.lex_state = 26, .external_lex_state = 8}, + [6037] = {.lex_state = 26, .external_lex_state = 8}, + [6038] = {.lex_state = 26, .external_lex_state = 8}, + [6039] = {.lex_state = 26, .external_lex_state = 8}, + [6040] = {.lex_state = 26, .external_lex_state = 8}, + [6041] = {.lex_state = 26, .external_lex_state = 8}, + [6042] = {.lex_state = 26, .external_lex_state = 8}, + [6043] = {.lex_state = 26, .external_lex_state = 8}, + [6044] = {.lex_state = 26, .external_lex_state = 8}, + [6045] = {.lex_state = 26, .external_lex_state = 8}, + [6046] = {.lex_state = 26, .external_lex_state = 8}, + [6047] = {.lex_state = 26, .external_lex_state = 8}, + [6048] = {.lex_state = 26, .external_lex_state = 8}, + [6049] = {.lex_state = 26, .external_lex_state = 8}, + [6050] = {.lex_state = 26, .external_lex_state = 8}, + [6051] = {.lex_state = 29, .external_lex_state = 8}, + [6052] = {.lex_state = 26, .external_lex_state = 8}, + [6053] = {.lex_state = 26, .external_lex_state = 8}, + [6054] = {.lex_state = 26, .external_lex_state = 8}, + [6055] = {.lex_state = 26, .external_lex_state = 8}, + [6056] = {.lex_state = 26, .external_lex_state = 8}, + [6057] = {.lex_state = 26, .external_lex_state = 8}, + [6058] = {.lex_state = 26, .external_lex_state = 8}, + [6059] = {.lex_state = 26, .external_lex_state = 8}, + [6060] = {.lex_state = 26, .external_lex_state = 8}, + [6061] = {.lex_state = 29, .external_lex_state = 8}, + [6062] = {.lex_state = 26, .external_lex_state = 8}, + [6063] = {.lex_state = 26, .external_lex_state = 8}, + [6064] = {.lex_state = 26, .external_lex_state = 8}, + [6065] = {.lex_state = 26, .external_lex_state = 8}, + [6066] = {.lex_state = 26, .external_lex_state = 8}, + [6067] = {.lex_state = 26, .external_lex_state = 8}, + [6068] = {.lex_state = 26, .external_lex_state = 8}, + [6069] = {.lex_state = 29, .external_lex_state = 8}, + [6070] = {.lex_state = 26, .external_lex_state = 8}, + [6071] = {.lex_state = 26, .external_lex_state = 8}, + [6072] = {.lex_state = 26, .external_lex_state = 8}, + [6073] = {.lex_state = 26, .external_lex_state = 8}, + [6074] = {.lex_state = 26, .external_lex_state = 8}, + [6075] = {.lex_state = 26, .external_lex_state = 8}, + [6076] = {.lex_state = 26, .external_lex_state = 8}, + [6077] = {.lex_state = 26, .external_lex_state = 8}, + [6078] = {.lex_state = 26, .external_lex_state = 8}, + [6079] = {.lex_state = 26, .external_lex_state = 8}, + [6080] = {.lex_state = 26, .external_lex_state = 8}, + [6081] = {.lex_state = 26, .external_lex_state = 8}, + [6082] = {.lex_state = 26, .external_lex_state = 8}, + [6083] = {.lex_state = 26, .external_lex_state = 8}, + [6084] = {.lex_state = 26, .external_lex_state = 8}, + [6085] = {.lex_state = 26, .external_lex_state = 8}, + [6086] = {.lex_state = 26, .external_lex_state = 8}, + [6087] = {.lex_state = 26, .external_lex_state = 8}, + [6088] = {.lex_state = 26, .external_lex_state = 8}, + [6089] = {.lex_state = 26, .external_lex_state = 8}, + [6090] = {.lex_state = 26, .external_lex_state = 8}, + [6091] = {.lex_state = 26, .external_lex_state = 8}, + [6092] = {.lex_state = 26, .external_lex_state = 8}, + [6093] = {.lex_state = 26, .external_lex_state = 8}, + [6094] = {.lex_state = 26, .external_lex_state = 8}, + [6095] = {.lex_state = 26, .external_lex_state = 8}, + [6096] = {.lex_state = 26, .external_lex_state = 8}, + [6097] = {.lex_state = 26, .external_lex_state = 8}, + [6098] = {.lex_state = 26, .external_lex_state = 8}, + [6099] = {.lex_state = 26, .external_lex_state = 8}, + [6100] = {.lex_state = 26, .external_lex_state = 8}, + [6101] = {.lex_state = 26, .external_lex_state = 8}, + [6102] = {.lex_state = 26, .external_lex_state = 8}, + [6103] = {.lex_state = 26, .external_lex_state = 8}, + [6104] = {.lex_state = 26, .external_lex_state = 8}, + [6105] = {.lex_state = 26, .external_lex_state = 8}, + [6106] = {.lex_state = 26, .external_lex_state = 8}, + [6107] = {.lex_state = 26, .external_lex_state = 8}, + [6108] = {.lex_state = 29, .external_lex_state = 8}, + [6109] = {.lex_state = 26, .external_lex_state = 8}, + [6110] = {.lex_state = 26, .external_lex_state = 8}, + [6111] = {.lex_state = 26, .external_lex_state = 8}, + [6112] = {.lex_state = 26, .external_lex_state = 8}, + [6113] = {.lex_state = 26, .external_lex_state = 8}, + [6114] = {.lex_state = 26, .external_lex_state = 8}, + [6115] = {.lex_state = 26, .external_lex_state = 8}, + [6116] = {.lex_state = 26, .external_lex_state = 8}, + [6117] = {.lex_state = 26, .external_lex_state = 8}, + [6118] = {.lex_state = 26, .external_lex_state = 8}, + [6119] = {.lex_state = 26, .external_lex_state = 8}, + [6120] = {.lex_state = 26, .external_lex_state = 8}, + [6121] = {.lex_state = 26, .external_lex_state = 8}, + [6122] = {.lex_state = 26, .external_lex_state = 8}, + [6123] = {.lex_state = 26, .external_lex_state = 8}, + [6124] = {.lex_state = 26, .external_lex_state = 8}, + [6125] = {.lex_state = 26, .external_lex_state = 8}, + [6126] = {.lex_state = 26, .external_lex_state = 8}, + [6127] = {.lex_state = 26, .external_lex_state = 8}, + [6128] = {.lex_state = 26, .external_lex_state = 8}, + [6129] = {.lex_state = 26, .external_lex_state = 8}, + [6130] = {.lex_state = 26, .external_lex_state = 8}, + [6131] = {.lex_state = 26, .external_lex_state = 8}, + [6132] = {.lex_state = 29, .external_lex_state = 8}, + [6133] = {.lex_state = 26, .external_lex_state = 8}, + [6134] = {.lex_state = 26, .external_lex_state = 8}, + [6135] = {.lex_state = 26, .external_lex_state = 8}, + [6136] = {.lex_state = 26, .external_lex_state = 8}, + [6137] = {.lex_state = 26, .external_lex_state = 8}, + [6138] = {.lex_state = 26, .external_lex_state = 8}, + [6139] = {.lex_state = 26, .external_lex_state = 8}, + [6140] = {.lex_state = 26, .external_lex_state = 8}, + [6141] = {.lex_state = 26, .external_lex_state = 8}, + [6142] = {.lex_state = 26, .external_lex_state = 8}, + [6143] = {.lex_state = 26, .external_lex_state = 8}, + [6144] = {.lex_state = 26, .external_lex_state = 8}, + [6145] = {.lex_state = 26, .external_lex_state = 8}, + [6146] = {.lex_state = 26, .external_lex_state = 8}, + [6147] = {.lex_state = 26, .external_lex_state = 8}, + [6148] = {.lex_state = 26, .external_lex_state = 8}, + [6149] = {.lex_state = 26, .external_lex_state = 8}, + [6150] = {.lex_state = 26, .external_lex_state = 8}, + [6151] = {.lex_state = 26, .external_lex_state = 8}, + [6152] = {.lex_state = 26, .external_lex_state = 8}, + [6153] = {.lex_state = 26, .external_lex_state = 8}, + [6154] = {.lex_state = 26, .external_lex_state = 8}, + [6155] = {.lex_state = 26, .external_lex_state = 8}, + [6156] = {.lex_state = 26, .external_lex_state = 8}, + [6157] = {.lex_state = 26, .external_lex_state = 8}, + [6158] = {.lex_state = 26, .external_lex_state = 8}, + [6159] = {.lex_state = 26, .external_lex_state = 8}, + [6160] = {.lex_state = 26, .external_lex_state = 8}, + [6161] = {.lex_state = 26, .external_lex_state = 8}, + [6162] = {.lex_state = 26, .external_lex_state = 8}, + [6163] = {.lex_state = 26, .external_lex_state = 8}, + [6164] = {.lex_state = 26, .external_lex_state = 8}, + [6165] = {.lex_state = 26, .external_lex_state = 8}, + [6166] = {.lex_state = 26, .external_lex_state = 8}, + [6167] = {.lex_state = 26, .external_lex_state = 8}, + [6168] = {.lex_state = 26, .external_lex_state = 8}, + [6169] = {.lex_state = 26, .external_lex_state = 8}, + [6170] = {.lex_state = 26, .external_lex_state = 8}, + [6171] = {.lex_state = 26, .external_lex_state = 8}, + [6172] = {.lex_state = 26, .external_lex_state = 8}, + [6173] = {.lex_state = 26, .external_lex_state = 8}, + [6174] = {.lex_state = 26, .external_lex_state = 8}, + [6175] = {.lex_state = 26, .external_lex_state = 8}, + [6176] = {.lex_state = 26, .external_lex_state = 8}, + [6177] = {.lex_state = 26, .external_lex_state = 8}, + [6178] = {.lex_state = 26, .external_lex_state = 8}, + [6179] = {.lex_state = 26, .external_lex_state = 8}, + [6180] = {.lex_state = 26, .external_lex_state = 8}, + [6181] = {.lex_state = 26, .external_lex_state = 8}, + [6182] = {.lex_state = 26, .external_lex_state = 8}, + [6183] = {.lex_state = 26, .external_lex_state = 8}, + [6184] = {.lex_state = 26, .external_lex_state = 8}, + [6185] = {.lex_state = 26, .external_lex_state = 8}, + [6186] = {.lex_state = 26, .external_lex_state = 8}, + [6187] = {.lex_state = 26, .external_lex_state = 8}, + [6188] = {.lex_state = 26, .external_lex_state = 8}, + [6189] = {.lex_state = 26, .external_lex_state = 8}, + [6190] = {.lex_state = 26, .external_lex_state = 8}, + [6191] = {.lex_state = 26, .external_lex_state = 8}, + [6192] = {.lex_state = 26, .external_lex_state = 8}, + [6193] = {.lex_state = 26, .external_lex_state = 8}, + [6194] = {.lex_state = 26, .external_lex_state = 8}, + [6195] = {.lex_state = 26, .external_lex_state = 8}, + [6196] = {.lex_state = 26, .external_lex_state = 8}, + [6197] = {.lex_state = 26, .external_lex_state = 8}, + [6198] = {.lex_state = 26, .external_lex_state = 8}, + [6199] = {.lex_state = 26, .external_lex_state = 8}, + [6200] = {.lex_state = 26, .external_lex_state = 8}, + [6201] = {.lex_state = 26, .external_lex_state = 8}, + [6202] = {.lex_state = 26, .external_lex_state = 8}, + [6203] = {.lex_state = 26, .external_lex_state = 8}, + [6204] = {.lex_state = 26, .external_lex_state = 8}, + [6205] = {.lex_state = 26, .external_lex_state = 8}, + [6206] = {.lex_state = 26, .external_lex_state = 8}, + [6207] = {.lex_state = 26, .external_lex_state = 8}, + [6208] = {.lex_state = 26, .external_lex_state = 8}, + [6209] = {.lex_state = 26, .external_lex_state = 8}, + [6210] = {.lex_state = 26, .external_lex_state = 8}, + [6211] = {.lex_state = 26, .external_lex_state = 8}, + [6212] = {.lex_state = 26, .external_lex_state = 8}, + [6213] = {.lex_state = 26, .external_lex_state = 8}, + [6214] = {.lex_state = 26, .external_lex_state = 8}, + [6215] = {.lex_state = 26, .external_lex_state = 8}, + [6216] = {.lex_state = 26, .external_lex_state = 8}, + [6217] = {.lex_state = 26, .external_lex_state = 8}, + [6218] = {.lex_state = 26, .external_lex_state = 8}, + [6219] = {.lex_state = 26, .external_lex_state = 8}, + [6220] = {.lex_state = 26, .external_lex_state = 8}, + [6221] = {.lex_state = 26, .external_lex_state = 8}, + [6222] = {.lex_state = 26, .external_lex_state = 8}, + [6223] = {.lex_state = 26, .external_lex_state = 8}, + [6224] = {.lex_state = 26, .external_lex_state = 8}, + [6225] = {.lex_state = 26, .external_lex_state = 8}, + [6226] = {.lex_state = 26, .external_lex_state = 8}, + [6227] = {.lex_state = 26, .external_lex_state = 8}, + [6228] = {.lex_state = 26, .external_lex_state = 8}, + [6229] = {.lex_state = 26, .external_lex_state = 8}, + [6230] = {.lex_state = 26, .external_lex_state = 8}, + [6231] = {.lex_state = 26, .external_lex_state = 8}, + [6232] = {.lex_state = 26, .external_lex_state = 8}, + [6233] = {.lex_state = 26, .external_lex_state = 8}, + [6234] = {.lex_state = 26, .external_lex_state = 8}, + [6235] = {.lex_state = 26, .external_lex_state = 8}, + [6236] = {.lex_state = 26, .external_lex_state = 8}, + [6237] = {.lex_state = 26, .external_lex_state = 8}, + [6238] = {.lex_state = 26, .external_lex_state = 8}, + [6239] = {.lex_state = 26, .external_lex_state = 8}, + [6240] = {.lex_state = 26, .external_lex_state = 8}, + [6241] = {.lex_state = 26, .external_lex_state = 8}, + [6242] = {.lex_state = 26, .external_lex_state = 8}, + [6243] = {.lex_state = 26, .external_lex_state = 8}, + [6244] = {.lex_state = 26, .external_lex_state = 8}, + [6245] = {.lex_state = 26, .external_lex_state = 8}, + [6246] = {.lex_state = 26, .external_lex_state = 8}, + [6247] = {.lex_state = 26, .external_lex_state = 8}, + [6248] = {.lex_state = 26, .external_lex_state = 8}, + [6249] = {.lex_state = 26, .external_lex_state = 8}, + [6250] = {.lex_state = 26, .external_lex_state = 8}, + [6251] = {.lex_state = 26, .external_lex_state = 8}, + [6252] = {.lex_state = 26, .external_lex_state = 8}, + [6253] = {.lex_state = 26, .external_lex_state = 8}, + [6254] = {.lex_state = 26, .external_lex_state = 8}, + [6255] = {.lex_state = 26, .external_lex_state = 8}, + [6256] = {.lex_state = 26, .external_lex_state = 8}, + [6257] = {.lex_state = 26, .external_lex_state = 8}, + [6258] = {.lex_state = 26, .external_lex_state = 8}, + [6259] = {.lex_state = 26, .external_lex_state = 8}, + [6260] = {.lex_state = 26, .external_lex_state = 8}, + [6261] = {.lex_state = 26, .external_lex_state = 8}, + [6262] = {.lex_state = 26, .external_lex_state = 8}, + [6263] = {.lex_state = 26, .external_lex_state = 8}, + [6264] = {.lex_state = 26, .external_lex_state = 8}, + [6265] = {.lex_state = 26, .external_lex_state = 8}, + [6266] = {.lex_state = 26, .external_lex_state = 8}, + [6267] = {.lex_state = 26, .external_lex_state = 8}, + [6268] = {.lex_state = 26, .external_lex_state = 8}, + [6269] = {.lex_state = 26, .external_lex_state = 8}, + [6270] = {.lex_state = 26, .external_lex_state = 8}, + [6271] = {.lex_state = 26, .external_lex_state = 8}, + [6272] = {.lex_state = 26, .external_lex_state = 8}, + [6273] = {.lex_state = 26, .external_lex_state = 8}, + [6274] = {.lex_state = 26, .external_lex_state = 8}, + [6275] = {.lex_state = 26, .external_lex_state = 8}, + [6276] = {.lex_state = 26, .external_lex_state = 8}, + [6277] = {.lex_state = 26, .external_lex_state = 8}, + [6278] = {.lex_state = 26, .external_lex_state = 8}, + [6279] = {.lex_state = 26, .external_lex_state = 8}, + [6280] = {.lex_state = 26, .external_lex_state = 8}, + [6281] = {.lex_state = 26, .external_lex_state = 8}, + [6282] = {.lex_state = 26, .external_lex_state = 8}, + [6283] = {.lex_state = 26, .external_lex_state = 8}, + [6284] = {.lex_state = 26, .external_lex_state = 8}, + [6285] = {.lex_state = 26, .external_lex_state = 8}, + [6286] = {.lex_state = 26, .external_lex_state = 8}, + [6287] = {.lex_state = 26, .external_lex_state = 8}, + [6288] = {.lex_state = 26, .external_lex_state = 8}, + [6289] = {.lex_state = 26, .external_lex_state = 8}, + [6290] = {.lex_state = 26, .external_lex_state = 8}, + [6291] = {.lex_state = 26, .external_lex_state = 8}, + [6292] = {.lex_state = 26, .external_lex_state = 8}, + [6293] = {.lex_state = 26, .external_lex_state = 8}, + [6294] = {.lex_state = 26, .external_lex_state = 8}, + [6295] = {.lex_state = 26, .external_lex_state = 8}, + [6296] = {.lex_state = 26, .external_lex_state = 8}, + [6297] = {.lex_state = 26, .external_lex_state = 8}, + [6298] = {.lex_state = 26, .external_lex_state = 8}, + [6299] = {.lex_state = 26, .external_lex_state = 8}, + [6300] = {.lex_state = 26, .external_lex_state = 8}, + [6301] = {.lex_state = 26, .external_lex_state = 8}, + [6302] = {.lex_state = 26, .external_lex_state = 8}, + [6303] = {.lex_state = 26, .external_lex_state = 8}, + [6304] = {.lex_state = 26, .external_lex_state = 8}, + [6305] = {.lex_state = 26, .external_lex_state = 8}, + [6306] = {.lex_state = 26, .external_lex_state = 8}, + [6307] = {.lex_state = 26, .external_lex_state = 8}, + [6308] = {.lex_state = 26, .external_lex_state = 8}, + [6309] = {.lex_state = 26, .external_lex_state = 8}, + [6310] = {.lex_state = 26, .external_lex_state = 8}, + [6311] = {.lex_state = 26, .external_lex_state = 8}, + [6312] = {.lex_state = 26, .external_lex_state = 8}, + [6313] = {.lex_state = 26, .external_lex_state = 8}, + [6314] = {.lex_state = 26, .external_lex_state = 8}, + [6315] = {.lex_state = 26, .external_lex_state = 8}, + [6316] = {.lex_state = 26, .external_lex_state = 8}, + [6317] = {.lex_state = 26, .external_lex_state = 8}, + [6318] = {.lex_state = 26, .external_lex_state = 8}, + [6319] = {.lex_state = 26, .external_lex_state = 8}, + [6320] = {.lex_state = 26, .external_lex_state = 8}, + [6321] = {.lex_state = 26, .external_lex_state = 8}, + [6322] = {.lex_state = 26, .external_lex_state = 8}, + [6323] = {.lex_state = 26, .external_lex_state = 8}, + [6324] = {.lex_state = 26, .external_lex_state = 8}, + [6325] = {.lex_state = 26, .external_lex_state = 8}, + [6326] = {.lex_state = 26, .external_lex_state = 8}, + [6327] = {.lex_state = 26, .external_lex_state = 8}, + [6328] = {.lex_state = 26, .external_lex_state = 8}, + [6329] = {.lex_state = 26, .external_lex_state = 8}, + [6330] = {.lex_state = 26, .external_lex_state = 8}, + [6331] = {.lex_state = 26, .external_lex_state = 8}, + [6332] = {.lex_state = 26, .external_lex_state = 8}, + [6333] = {.lex_state = 26, .external_lex_state = 8}, + [6334] = {.lex_state = 26, .external_lex_state = 8}, + [6335] = {.lex_state = 26, .external_lex_state = 8}, + [6336] = {.lex_state = 26, .external_lex_state = 8}, + [6337] = {.lex_state = 26, .external_lex_state = 8}, + [6338] = {.lex_state = 26, .external_lex_state = 8}, + [6339] = {.lex_state = 26, .external_lex_state = 8}, + [6340] = {.lex_state = 26, .external_lex_state = 8}, + [6341] = {.lex_state = 26, .external_lex_state = 8}, + [6342] = {.lex_state = 26, .external_lex_state = 8}, + [6343] = {.lex_state = 26, .external_lex_state = 8}, + [6344] = {.lex_state = 26, .external_lex_state = 8}, + [6345] = {.lex_state = 26, .external_lex_state = 8}, + [6346] = {.lex_state = 26, .external_lex_state = 8}, + [6347] = {.lex_state = 26, .external_lex_state = 8}, + [6348] = {.lex_state = 26, .external_lex_state = 8}, + [6349] = {.lex_state = 26, .external_lex_state = 8}, + [6350] = {.lex_state = 26, .external_lex_state = 8}, + [6351] = {.lex_state = 26, .external_lex_state = 8}, + [6352] = {.lex_state = 26, .external_lex_state = 8}, + [6353] = {.lex_state = 26, .external_lex_state = 8}, + [6354] = {.lex_state = 26, .external_lex_state = 8}, + [6355] = {.lex_state = 26, .external_lex_state = 8}, + [6356] = {.lex_state = 26, .external_lex_state = 8}, + [6357] = {.lex_state = 26, .external_lex_state = 8}, + [6358] = {.lex_state = 26, .external_lex_state = 8}, + [6359] = {.lex_state = 26, .external_lex_state = 8}, + [6360] = {.lex_state = 26, .external_lex_state = 8}, + [6361] = {.lex_state = 26, .external_lex_state = 8}, + [6362] = {.lex_state = 26, .external_lex_state = 8}, + [6363] = {.lex_state = 26, .external_lex_state = 8}, + [6364] = {.lex_state = 26, .external_lex_state = 8}, + [6365] = {.lex_state = 26, .external_lex_state = 8}, + [6366] = {.lex_state = 26, .external_lex_state = 8}, + [6367] = {.lex_state = 26, .external_lex_state = 8}, + [6368] = {.lex_state = 26, .external_lex_state = 8}, + [6369] = {.lex_state = 26, .external_lex_state = 8}, + [6370] = {.lex_state = 26, .external_lex_state = 8}, + [6371] = {.lex_state = 26, .external_lex_state = 8}, + [6372] = {.lex_state = 26, .external_lex_state = 8}, + [6373] = {.lex_state = 29, .external_lex_state = 8}, + [6374] = {.lex_state = 26, .external_lex_state = 8}, + [6375] = {.lex_state = 26, .external_lex_state = 8}, + [6376] = {.lex_state = 26, .external_lex_state = 8}, + [6377] = {.lex_state = 26, .external_lex_state = 8}, + [6378] = {.lex_state = 26, .external_lex_state = 8}, + [6379] = {.lex_state = 26, .external_lex_state = 8}, + [6380] = {.lex_state = 26, .external_lex_state = 8}, + [6381] = {.lex_state = 26, .external_lex_state = 8}, + [6382] = {.lex_state = 26, .external_lex_state = 8}, + [6383] = {.lex_state = 26, .external_lex_state = 8}, + [6384] = {.lex_state = 26, .external_lex_state = 8}, + [6385] = {.lex_state = 26, .external_lex_state = 8}, + [6386] = {.lex_state = 20, .external_lex_state = 8}, + [6387] = {.lex_state = 26, .external_lex_state = 8}, + [6388] = {.lex_state = 26, .external_lex_state = 8}, + [6389] = {.lex_state = 26, .external_lex_state = 8}, + [6390] = {.lex_state = 20, .external_lex_state = 8}, + [6391] = {.lex_state = 26, .external_lex_state = 8}, + [6392] = {.lex_state = 26, .external_lex_state = 8}, + [6393] = {.lex_state = 26, .external_lex_state = 8}, + [6394] = {.lex_state = 26, .external_lex_state = 8}, + [6395] = {.lex_state = 26, .external_lex_state = 8}, + [6396] = {.lex_state = 26, .external_lex_state = 8}, + [6397] = {.lex_state = 26, .external_lex_state = 8}, + [6398] = {.lex_state = 26, .external_lex_state = 8}, + [6399] = {.lex_state = 26, .external_lex_state = 8}, + [6400] = {.lex_state = 26, .external_lex_state = 8}, + [6401] = {.lex_state = 26, .external_lex_state = 8}, + [6402] = {.lex_state = 26, .external_lex_state = 8}, + [6403] = {.lex_state = 26, .external_lex_state = 8}, + [6404] = {.lex_state = 26, .external_lex_state = 8}, + [6405] = {.lex_state = 26, .external_lex_state = 8}, + [6406] = {.lex_state = 26, .external_lex_state = 8}, + [6407] = {.lex_state = 26, .external_lex_state = 8}, + [6408] = {.lex_state = 26, .external_lex_state = 8}, + [6409] = {.lex_state = 26, .external_lex_state = 8}, + [6410] = {.lex_state = 26, .external_lex_state = 8}, + [6411] = {.lex_state = 26, .external_lex_state = 8}, + [6412] = {.lex_state = 26, .external_lex_state = 8}, + [6413] = {.lex_state = 26, .external_lex_state = 8}, + [6414] = {.lex_state = 26, .external_lex_state = 8}, + [6415] = {.lex_state = 26, .external_lex_state = 8}, + [6416] = {.lex_state = 26, .external_lex_state = 8}, + [6417] = {.lex_state = 26, .external_lex_state = 8}, + [6418] = {.lex_state = 26, .external_lex_state = 8}, + [6419] = {.lex_state = 26, .external_lex_state = 8}, + [6420] = {.lex_state = 26, .external_lex_state = 8}, + [6421] = {.lex_state = 26, .external_lex_state = 8}, + [6422] = {.lex_state = 26, .external_lex_state = 8}, + [6423] = {.lex_state = 26, .external_lex_state = 8}, + [6424] = {.lex_state = 26, .external_lex_state = 8}, + [6425] = {.lex_state = 26, .external_lex_state = 8}, + [6426] = {.lex_state = 26, .external_lex_state = 8}, + [6427] = {.lex_state = 26, .external_lex_state = 8}, + [6428] = {.lex_state = 26, .external_lex_state = 8}, + [6429] = {.lex_state = 26, .external_lex_state = 8}, + [6430] = {.lex_state = 26, .external_lex_state = 8}, + [6431] = {.lex_state = 26, .external_lex_state = 8}, + [6432] = {.lex_state = 26, .external_lex_state = 8}, + [6433] = {.lex_state = 26, .external_lex_state = 8}, + [6434] = {.lex_state = 26, .external_lex_state = 8}, + [6435] = {.lex_state = 26, .external_lex_state = 8}, + [6436] = {.lex_state = 26, .external_lex_state = 8}, + [6437] = {.lex_state = 26, .external_lex_state = 8}, + [6438] = {.lex_state = 26, .external_lex_state = 8}, + [6439] = {.lex_state = 26, .external_lex_state = 8}, + [6440] = {.lex_state = 26, .external_lex_state = 8}, + [6441] = {.lex_state = 26, .external_lex_state = 8}, + [6442] = {.lex_state = 26, .external_lex_state = 8}, + [6443] = {.lex_state = 26, .external_lex_state = 8}, + [6444] = {.lex_state = 26, .external_lex_state = 8}, + [6445] = {.lex_state = 26, .external_lex_state = 8}, + [6446] = {.lex_state = 26, .external_lex_state = 8}, + [6447] = {.lex_state = 26, .external_lex_state = 8}, + [6448] = {.lex_state = 26, .external_lex_state = 8}, + [6449] = {.lex_state = 26, .external_lex_state = 8}, + [6450] = {.lex_state = 26, .external_lex_state = 8}, + [6451] = {.lex_state = 26, .external_lex_state = 8}, + [6452] = {.lex_state = 26, .external_lex_state = 8}, + [6453] = {.lex_state = 26, .external_lex_state = 8}, + [6454] = {.lex_state = 26, .external_lex_state = 8}, + [6455] = {.lex_state = 26, .external_lex_state = 8}, + [6456] = {.lex_state = 26, .external_lex_state = 8}, + [6457] = {.lex_state = 26, .external_lex_state = 8}, + [6458] = {.lex_state = 26, .external_lex_state = 8}, + [6459] = {.lex_state = 26, .external_lex_state = 8}, + [6460] = {.lex_state = 26, .external_lex_state = 8}, + [6461] = {.lex_state = 26, .external_lex_state = 8}, + [6462] = {.lex_state = 26, .external_lex_state = 8}, + [6463] = {.lex_state = 26, .external_lex_state = 8}, + [6464] = {.lex_state = 26, .external_lex_state = 8}, + [6465] = {.lex_state = 26, .external_lex_state = 8}, + [6466] = {.lex_state = 26, .external_lex_state = 8}, + [6467] = {.lex_state = 26, .external_lex_state = 8}, + [6468] = {.lex_state = 26, .external_lex_state = 8}, + [6469] = {.lex_state = 26, .external_lex_state = 8}, + [6470] = {.lex_state = 26, .external_lex_state = 8}, + [6471] = {.lex_state = 26, .external_lex_state = 8}, + [6472] = {.lex_state = 26, .external_lex_state = 8}, + [6473] = {.lex_state = 26, .external_lex_state = 8}, + [6474] = {.lex_state = 26, .external_lex_state = 8}, + [6475] = {.lex_state = 26, .external_lex_state = 8}, + [6476] = {.lex_state = 26, .external_lex_state = 8}, + [6477] = {.lex_state = 26, .external_lex_state = 8}, + [6478] = {.lex_state = 26, .external_lex_state = 8}, + [6479] = {.lex_state = 26, .external_lex_state = 8}, + [6480] = {.lex_state = 26, .external_lex_state = 8}, + [6481] = {.lex_state = 26, .external_lex_state = 8}, + [6482] = {.lex_state = 26, .external_lex_state = 8}, + [6483] = {.lex_state = 26, .external_lex_state = 8}, + [6484] = {.lex_state = 26, .external_lex_state = 8}, + [6485] = {.lex_state = 26, .external_lex_state = 8}, + [6486] = {.lex_state = 26, .external_lex_state = 8}, + [6487] = {.lex_state = 26, .external_lex_state = 8}, + [6488] = {.lex_state = 26, .external_lex_state = 8}, + [6489] = {.lex_state = 26, .external_lex_state = 8}, + [6490] = {.lex_state = 26, .external_lex_state = 8}, + [6491] = {.lex_state = 26, .external_lex_state = 8}, + [6492] = {.lex_state = 26, .external_lex_state = 8}, + [6493] = {.lex_state = 26, .external_lex_state = 8}, + [6494] = {.lex_state = 26, .external_lex_state = 8}, + [6495] = {.lex_state = 26, .external_lex_state = 8}, + [6496] = {.lex_state = 26, .external_lex_state = 8}, + [6497] = {.lex_state = 26, .external_lex_state = 8}, + [6498] = {.lex_state = 26, .external_lex_state = 8}, + [6499] = {.lex_state = 26, .external_lex_state = 8}, + [6500] = {.lex_state = 26, .external_lex_state = 8}, + [6501] = {.lex_state = 26, .external_lex_state = 8}, + [6502] = {.lex_state = 26, .external_lex_state = 8}, + [6503] = {.lex_state = 26, .external_lex_state = 8}, + [6504] = {.lex_state = 26, .external_lex_state = 8}, + [6505] = {.lex_state = 26, .external_lex_state = 8}, + [6506] = {.lex_state = 26, .external_lex_state = 8}, + [6507] = {.lex_state = 26, .external_lex_state = 8}, + [6508] = {.lex_state = 26, .external_lex_state = 8}, + [6509] = {.lex_state = 26, .external_lex_state = 8}, + [6510] = {.lex_state = 26, .external_lex_state = 8}, + [6511] = {.lex_state = 26, .external_lex_state = 8}, + [6512] = {.lex_state = 26, .external_lex_state = 8}, + [6513] = {.lex_state = 26, .external_lex_state = 8}, + [6514] = {.lex_state = 26, .external_lex_state = 8}, + [6515] = {.lex_state = 26, .external_lex_state = 8}, + [6516] = {.lex_state = 26, .external_lex_state = 8}, + [6517] = {.lex_state = 26, .external_lex_state = 8}, + [6518] = {.lex_state = 26, .external_lex_state = 8}, + [6519] = {.lex_state = 26, .external_lex_state = 8}, + [6520] = {.lex_state = 26, .external_lex_state = 8}, + [6521] = {.lex_state = 26, .external_lex_state = 8}, + [6522] = {.lex_state = 26, .external_lex_state = 8}, + [6523] = {.lex_state = 26, .external_lex_state = 8}, + [6524] = {.lex_state = 26, .external_lex_state = 8}, + [6525] = {.lex_state = 26, .external_lex_state = 8}, + [6526] = {.lex_state = 26, .external_lex_state = 8}, + [6527] = {.lex_state = 26, .external_lex_state = 8}, + [6528] = {.lex_state = 26, .external_lex_state = 8}, + [6529] = {.lex_state = 26, .external_lex_state = 8}, + [6530] = {.lex_state = 26, .external_lex_state = 8}, + [6531] = {.lex_state = 26, .external_lex_state = 8}, + [6532] = {.lex_state = 26, .external_lex_state = 8}, + [6533] = {.lex_state = 26, .external_lex_state = 8}, + [6534] = {.lex_state = 26, .external_lex_state = 8}, + [6535] = {.lex_state = 26, .external_lex_state = 8}, + [6536] = {.lex_state = 26, .external_lex_state = 8}, + [6537] = {.lex_state = 26, .external_lex_state = 8}, + [6538] = {.lex_state = 26, .external_lex_state = 8}, + [6539] = {.lex_state = 26, .external_lex_state = 8}, + [6540] = {.lex_state = 26, .external_lex_state = 8}, + [6541] = {.lex_state = 26, .external_lex_state = 8}, + [6542] = {.lex_state = 26, .external_lex_state = 8}, + [6543] = {.lex_state = 26, .external_lex_state = 8}, + [6544] = {.lex_state = 26, .external_lex_state = 8}, + [6545] = {.lex_state = 26, .external_lex_state = 8}, + [6546] = {.lex_state = 26, .external_lex_state = 8}, + [6547] = {.lex_state = 26, .external_lex_state = 8}, + [6548] = {.lex_state = 26, .external_lex_state = 8}, + [6549] = {.lex_state = 26, .external_lex_state = 8}, + [6550] = {.lex_state = 26, .external_lex_state = 8}, + [6551] = {.lex_state = 26, .external_lex_state = 8}, + [6552] = {.lex_state = 26, .external_lex_state = 8}, + [6553] = {.lex_state = 26, .external_lex_state = 8}, + [6554] = {.lex_state = 26, .external_lex_state = 8}, + [6555] = {.lex_state = 26, .external_lex_state = 8}, + [6556] = {.lex_state = 26, .external_lex_state = 8}, + [6557] = {.lex_state = 20, .external_lex_state = 8}, + [6558] = {.lex_state = 26, .external_lex_state = 8}, + [6559] = {.lex_state = 26, .external_lex_state = 8}, + [6560] = {.lex_state = 26, .external_lex_state = 8}, + [6561] = {.lex_state = 26, .external_lex_state = 8}, + [6562] = {.lex_state = 26, .external_lex_state = 8}, + [6563] = {.lex_state = 26, .external_lex_state = 8}, + [6564] = {.lex_state = 26, .external_lex_state = 8}, + [6565] = {.lex_state = 26, .external_lex_state = 8}, + [6566] = {.lex_state = 26, .external_lex_state = 8}, + [6567] = {.lex_state = 26, .external_lex_state = 8}, + [6568] = {.lex_state = 26, .external_lex_state = 8}, + [6569] = {.lex_state = 20, .external_lex_state = 8}, + [6570] = {.lex_state = 26, .external_lex_state = 8}, + [6571] = {.lex_state = 26, .external_lex_state = 8}, + [6572] = {.lex_state = 26, .external_lex_state = 8}, + [6573] = {.lex_state = 26, .external_lex_state = 8}, + [6574] = {.lex_state = 26, .external_lex_state = 8}, + [6575] = {.lex_state = 26, .external_lex_state = 8}, + [6576] = {.lex_state = 26, .external_lex_state = 8}, + [6577] = {.lex_state = 26, .external_lex_state = 8}, + [6578] = {.lex_state = 26, .external_lex_state = 8}, + [6579] = {.lex_state = 26, .external_lex_state = 8}, + [6580] = {.lex_state = 26, .external_lex_state = 8}, + [6581] = {.lex_state = 26, .external_lex_state = 8}, + [6582] = {.lex_state = 26, .external_lex_state = 8}, + [6583] = {.lex_state = 26, .external_lex_state = 8}, + [6584] = {.lex_state = 26, .external_lex_state = 8}, + [6585] = {.lex_state = 26, .external_lex_state = 8}, + [6586] = {.lex_state = 26, .external_lex_state = 8}, + [6587] = {.lex_state = 26, .external_lex_state = 8}, + [6588] = {.lex_state = 26, .external_lex_state = 8}, + [6589] = {.lex_state = 26, .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 = 20, .external_lex_state = 8}, - [6625] = {.lex_state = 27, .external_lex_state = 8}, - [6626] = {.lex_state = 25, .external_lex_state = 8}, - [6627] = {.lex_state = 20, .external_lex_state = 8}, - [6628] = {.lex_state = 25, .external_lex_state = 8}, + [6592] = {.lex_state = 28, .external_lex_state = 8}, + [6593] = {.lex_state = 28, .external_lex_state = 8}, + [6594] = {.lex_state = 28, .external_lex_state = 8}, + [6595] = {.lex_state = 28, .external_lex_state = 8}, + [6596] = {.lex_state = 28, .external_lex_state = 8}, + [6597] = {.lex_state = 28, .external_lex_state = 8}, + [6598] = {.lex_state = 28, .external_lex_state = 8}, + [6599] = {.lex_state = 28, .external_lex_state = 8}, + [6600] = {.lex_state = 28, .external_lex_state = 8}, + [6601] = {.lex_state = 20, .external_lex_state = 8}, + [6602] = {.lex_state = 28, .external_lex_state = 8}, + [6603] = {.lex_state = 28, .external_lex_state = 8}, + [6604] = {.lex_state = 28, .external_lex_state = 8}, + [6605] = {.lex_state = 28, .external_lex_state = 8}, + [6606] = {.lex_state = 28, .external_lex_state = 8}, + [6607] = {.lex_state = 28, .external_lex_state = 8}, + [6608] = {.lex_state = 20, .external_lex_state = 8}, + [6609] = {.lex_state = 20, .external_lex_state = 8}, + [6610] = {.lex_state = 28, .external_lex_state = 8}, + [6611] = {.lex_state = 28, .external_lex_state = 8}, + [6612] = {.lex_state = 28, .external_lex_state = 8}, + [6613] = {.lex_state = 28, .external_lex_state = 8}, + [6614] = {.lex_state = 28, .external_lex_state = 8}, + [6615] = {.lex_state = 28, .external_lex_state = 8}, + [6616] = {.lex_state = 28, .external_lex_state = 8}, + [6617] = {.lex_state = 28, .external_lex_state = 8}, + [6618] = {.lex_state = 20, .external_lex_state = 8}, + [6619] = {.lex_state = 28, .external_lex_state = 8}, + [6620] = {.lex_state = 28, .external_lex_state = 8}, + [6621] = {.lex_state = 28, .external_lex_state = 8}, + [6622] = {.lex_state = 28, .external_lex_state = 8}, + [6623] = {.lex_state = 26, .external_lex_state = 8}, + [6624] = {.lex_state = 26, .external_lex_state = 8}, + [6625] = {.lex_state = 26, .external_lex_state = 8}, + [6626] = {.lex_state = 26, .external_lex_state = 8}, + [6627] = {.lex_state = 26, .external_lex_state = 8}, + [6628] = {.lex_state = 20, .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}, - [6633] = {.lex_state = 25, .external_lex_state = 8}, - [6634] = {.lex_state = 25, .external_lex_state = 8}, - [6635] = {.lex_state = 25, .external_lex_state = 8}, - [6636] = {.lex_state = 25, .external_lex_state = 8}, + [6630] = {.lex_state = 26, .external_lex_state = 8}, + [6631] = {.lex_state = 20, .external_lex_state = 8}, + [6632] = {.lex_state = 20, .external_lex_state = 8}, + [6633] = {.lex_state = 26, .external_lex_state = 8}, + [6634] = {.lex_state = 26, .external_lex_state = 8}, + [6635] = {.lex_state = 20, .external_lex_state = 8}, + [6636] = {.lex_state = 20, .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 = 20, .external_lex_state = 8}, - [6643] = {.lex_state = 25, .external_lex_state = 8}, + [6638] = {.lex_state = 26, .external_lex_state = 8}, + [6639] = {.lex_state = 26, .external_lex_state = 8}, + [6640] = {.lex_state = 20, .external_lex_state = 8}, + [6641] = {.lex_state = 20, .external_lex_state = 8}, + [6642] = {.lex_state = 26, .external_lex_state = 8}, + [6643] = {.lex_state = 20, .external_lex_state = 8}, [6644] = {.lex_state = 20, .external_lex_state = 8}, - [6645] = {.lex_state = 25, .external_lex_state = 8}, + [6645] = {.lex_state = 26, .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 = 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 = 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}, + [6647] = {.lex_state = 26, .external_lex_state = 8}, + [6648] = {.lex_state = 26, .external_lex_state = 8}, + [6649] = {.lex_state = 26, .external_lex_state = 8}, + [6650] = {.lex_state = 26, .external_lex_state = 8}, + [6651] = {.lex_state = 26, .external_lex_state = 8}, + [6652] = {.lex_state = 20, .external_lex_state = 8}, + [6653] = {.lex_state = 20, .external_lex_state = 8}, + [6654] = {.lex_state = 26, .external_lex_state = 8}, + [6655] = {.lex_state = 26, .external_lex_state = 8}, + [6656] = {.lex_state = 26, .external_lex_state = 8}, + [6657] = {.lex_state = 26, .external_lex_state = 8}, [6658] = {.lex_state = 20, .external_lex_state = 8}, - [6659] = {.lex_state = 25, .external_lex_state = 8}, + [6659] = {.lex_state = 26, .external_lex_state = 8}, [6660] = {.lex_state = 20, .external_lex_state = 8}, - [6661] = {.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}, + [6661] = {.lex_state = 28, .external_lex_state = 8}, + [6662] = {.lex_state = 26, .external_lex_state = 8}, + [6663] = {.lex_state = 26, .external_lex_state = 8}, + [6664] = {.lex_state = 26, .external_lex_state = 8}, + [6665] = {.lex_state = 26, .external_lex_state = 8}, + [6666] = {.lex_state = 26, .external_lex_state = 8}, + [6667] = {.lex_state = 26, .external_lex_state = 8}, [6668] = {.lex_state = 20, .external_lex_state = 8}, - [6669] = {.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 = 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}, - [6676] = {.lex_state = 25, .external_lex_state = 8}, - [6677] = {.lex_state = 25, .external_lex_state = 8}, - [6678] = {.lex_state = 25, .external_lex_state = 8}, - [6679] = {.lex_state = 25, .external_lex_state = 8}, - [6680] = {.lex_state = 25, .external_lex_state = 8}, - [6681] = {.lex_state = 25, .external_lex_state = 8}, - [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 = 20, .external_lex_state = 8}, - [6686] = {.lex_state = 20, .external_lex_state = 8}, - [6687] = {.lex_state = 27, .external_lex_state = 8}, + [6669] = {.lex_state = 26, .external_lex_state = 8}, + [6670] = {.lex_state = 26, .external_lex_state = 8}, + [6671] = {.lex_state = 26, .external_lex_state = 8}, + [6672] = {.lex_state = 26, .external_lex_state = 8}, + [6673] = {.lex_state = 26, .external_lex_state = 8}, + [6674] = {.lex_state = 20, .external_lex_state = 8}, + [6675] = {.lex_state = 20, .external_lex_state = 8}, + [6676] = {.lex_state = 26, .external_lex_state = 8}, + [6677] = {.lex_state = 26, .external_lex_state = 8}, + [6678] = {.lex_state = 26, .external_lex_state = 8}, + [6679] = {.lex_state = 20, .external_lex_state = 8}, + [6680] = {.lex_state = 26, .external_lex_state = 8}, + [6681] = {.lex_state = 20, .external_lex_state = 8}, + [6682] = {.lex_state = 26, .external_lex_state = 8}, + [6683] = {.lex_state = 26, .external_lex_state = 8}, + [6684] = {.lex_state = 26, .external_lex_state = 8}, + [6685] = {.lex_state = 26, .external_lex_state = 8}, + [6686] = {.lex_state = 26, .external_lex_state = 8}, + [6687] = {.lex_state = 28, .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}, + [6689] = {.lex_state = 28, .external_lex_state = 8}, + [6690] = {.lex_state = 28, .external_lex_state = 8}, + [6691] = {.lex_state = 28, .external_lex_state = 8}, + [6692] = {.lex_state = 28, .external_lex_state = 8}, + [6693] = {.lex_state = 28, .external_lex_state = 8}, + [6694] = {.lex_state = 28, .external_lex_state = 8}, + [6695] = {.lex_state = 28, .external_lex_state = 8}, + [6696] = {.lex_state = 28, .external_lex_state = 8}, + [6697] = {.lex_state = 28, .external_lex_state = 8}, + [6698] = {.lex_state = 28, .external_lex_state = 8}, + [6699] = {.lex_state = 28, .external_lex_state = 8}, + [6700] = {.lex_state = 28, .external_lex_state = 8}, + [6701] = {.lex_state = 28, .external_lex_state = 8}, + [6702] = {.lex_state = 28, .external_lex_state = 8}, + [6703] = {.lex_state = 28, .external_lex_state = 8}, + [6704] = {.lex_state = 28, .external_lex_state = 8}, + [6705] = {.lex_state = 28, .external_lex_state = 8}, + [6706] = {.lex_state = 28, .external_lex_state = 8}, + [6707] = {.lex_state = 28, .external_lex_state = 8}, + [6708] = {.lex_state = 28, .external_lex_state = 8}, + [6709] = {.lex_state = 28, .external_lex_state = 8}, + [6710] = {.lex_state = 28, .external_lex_state = 8}, + [6711] = {.lex_state = 28, .external_lex_state = 8}, + [6712] = {.lex_state = 28, .external_lex_state = 8}, + [6713] = {.lex_state = 28, .external_lex_state = 8}, + [6714] = {.lex_state = 28, .external_lex_state = 8}, + [6715] = {.lex_state = 28, .external_lex_state = 8}, + [6716] = {.lex_state = 28, .external_lex_state = 8}, + [6717] = {.lex_state = 28, .external_lex_state = 8}, + [6718] = {.lex_state = 28, .external_lex_state = 8}, + [6719] = {.lex_state = 28, .external_lex_state = 8}, + [6720] = {.lex_state = 28, .external_lex_state = 8}, + [6721] = {.lex_state = 28, .external_lex_state = 8}, + [6722] = {.lex_state = 28, .external_lex_state = 8}, + [6723] = {.lex_state = 28, .external_lex_state = 8}, + [6724] = {.lex_state = 28, .external_lex_state = 8}, + [6725] = {.lex_state = 28, .external_lex_state = 8}, + [6726] = {.lex_state = 28, .external_lex_state = 8}, + [6727] = {.lex_state = 28, .external_lex_state = 8}, + [6728] = {.lex_state = 28, .external_lex_state = 8}, + [6729] = {.lex_state = 20, .external_lex_state = 8}, + [6730] = {.lex_state = 28, .external_lex_state = 8}, + [6731] = {.lex_state = 28, .external_lex_state = 8}, + [6732] = {.lex_state = 28, .external_lex_state = 8}, + [6733] = {.lex_state = 28, .external_lex_state = 8}, + [6734] = {.lex_state = 28, .external_lex_state = 8}, + [6735] = {.lex_state = 28, .external_lex_state = 8}, + [6736] = {.lex_state = 28, .external_lex_state = 8}, + [6737] = {.lex_state = 28, .external_lex_state = 8}, + [6738] = {.lex_state = 28, .external_lex_state = 8}, + [6739] = {.lex_state = 28, .external_lex_state = 8}, + [6740] = {.lex_state = 28, .external_lex_state = 8}, + [6741] = {.lex_state = 28, .external_lex_state = 8}, + [6742] = {.lex_state = 28, .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}, @@ -30617,7 +27255,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 = 0, .external_lex_state = 6}, + [7139] = {.lex_state = 20, .external_lex_state = 8}, [7140] = {.lex_state = 20, .external_lex_state = 8}, [7141] = {.lex_state = 20, .external_lex_state = 8}, [7142] = {.lex_state = 20, .external_lex_state = 8}, @@ -30625,10 +27263,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7144] = {.lex_state = 20, .external_lex_state = 8}, [7145] = {.lex_state = 20, .external_lex_state = 8}, [7146] = {.lex_state = 20, .external_lex_state = 8}, - [7147] = {.lex_state = 20, .external_lex_state = 8}, + [7147] = {.lex_state = 27, .external_lex_state = 8}, [7148] = {.lex_state = 20, .external_lex_state = 8}, [7149] = {.lex_state = 20, .external_lex_state = 8}, - [7150] = {.lex_state = 26, .external_lex_state = 8}, + [7150] = {.lex_state = 20, .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}, @@ -30653,7 +27291,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7172] = {.lex_state = 20, .external_lex_state = 8}, [7173] = {.lex_state = 20, .external_lex_state = 8}, [7174] = {.lex_state = 20, .external_lex_state = 8}, - [7175] = {.lex_state = 20, .external_lex_state = 8}, + [7175] = {.lex_state = 1, .external_lex_state = 6}, [7176] = {.lex_state = 20, .external_lex_state = 8}, [7177] = {.lex_state = 20, .external_lex_state = 8}, [7178] = {.lex_state = 20, .external_lex_state = 8}, @@ -30664,11 +27302,11 @@ 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 = 26, .external_lex_state = 8}, + [7186] = {.lex_state = 20, .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}, - [7190] = {.lex_state = 20, .external_lex_state = 8}, + [7190] = {.lex_state = 27, .external_lex_state = 8}, [7191] = {.lex_state = 20, .external_lex_state = 8}, [7192] = {.lex_state = 20, .external_lex_state = 8}, [7193] = {.lex_state = 20, .external_lex_state = 8}, @@ -30681,41 +27319,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7200] = {.lex_state = 20, .external_lex_state = 8}, [7201] = {.lex_state = 20, .external_lex_state = 8}, [7202] = {.lex_state = 20, .external_lex_state = 8}, - [7203] = {.lex_state = 20, .external_lex_state = 8}, + [7203] = {.lex_state = 1, .external_lex_state = 6}, [7204] = {.lex_state = 20, .external_lex_state = 8}, [7205] = {.lex_state = 20, .external_lex_state = 8}, [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 = 0, .external_lex_state = 6}, + [7209] = {.lex_state = 20, .external_lex_state = 8}, [7210] = {.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}, + [7211] = {.lex_state = 27, .external_lex_state = 8}, + [7212] = {.lex_state = 26, .external_lex_state = 8}, + [7213] = {.lex_state = 26, .external_lex_state = 8}, + [7214] = {.lex_state = 27, .external_lex_state = 8}, + [7215] = {.lex_state = 27, .external_lex_state = 8}, [7216] = {.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}, + [7217] = {.lex_state = 26, .external_lex_state = 8}, + [7218] = {.lex_state = 27, .external_lex_state = 8}, + [7219] = {.lex_state = 26, .external_lex_state = 8}, + [7220] = {.lex_state = 28, .external_lex_state = 8}, [7221] = {.lex_state = 26, .external_lex_state = 8}, - [7222] = {.lex_state = 26, .external_lex_state = 8}, + [7222] = {.lex_state = 28, .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}, + [7225] = {.lex_state = 27, .external_lex_state = 8}, [7226] = {.lex_state = 20, .external_lex_state = 8}, [7227] = {.lex_state = 20, .external_lex_state = 8}, - [7228] = {.lex_state = 27, .external_lex_state = 8}, - [7229] = {.lex_state = 26, .external_lex_state = 8}, + [7228] = {.lex_state = 20, .external_lex_state = 8}, + [7229] = {.lex_state = 20, .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}, [7233] = {.lex_state = 20, .external_lex_state = 8}, [7234] = {.lex_state = 20, .external_lex_state = 8}, - [7235] = {.lex_state = 20, .external_lex_state = 8}, + [7235] = {.lex_state = 27, .external_lex_state = 8}, [7236] = {.lex_state = 20, .external_lex_state = 8}, - [7237] = {.lex_state = 20, .external_lex_state = 8}, + [7237] = {.lex_state = 27, .external_lex_state = 8}, [7238] = {.lex_state = 20, .external_lex_state = 8}, [7239] = {.lex_state = 20, .external_lex_state = 8}, [7240] = {.lex_state = 20, .external_lex_state = 8}, @@ -30724,27 +27362,27 @@ 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 = 26, .external_lex_state = 8}, - [7247] = {.lex_state = 26, .external_lex_state = 8}, + [7246] = {.lex_state = 20, .external_lex_state = 8}, + [7247] = {.lex_state = 20, .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}, [7251] = {.lex_state = 20, .external_lex_state = 8}, - [7252] = {.lex_state = 20, .external_lex_state = 8}, + [7252] = {.lex_state = 27, .external_lex_state = 8}, [7253] = {.lex_state = 20, .external_lex_state = 8}, - [7254] = {.lex_state = 20, .external_lex_state = 8}, - [7255] = {.lex_state = 20, .external_lex_state = 8}, - [7256] = {.lex_state = 20, .external_lex_state = 8}, + [7254] = {.lex_state = 28, .external_lex_state = 8}, + [7255] = {.lex_state = 27, .external_lex_state = 8}, + [7256] = {.lex_state = 28, .external_lex_state = 8}, [7257] = {.lex_state = 20, .external_lex_state = 8}, [7258] = {.lex_state = 20, .external_lex_state = 8}, [7259] = {.lex_state = 20, .external_lex_state = 8}, [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 = 26, .external_lex_state = 8}, + [7263] = {.lex_state = 20, .external_lex_state = 8}, [7264] = {.lex_state = 20, .external_lex_state = 8}, [7265] = {.lex_state = 20, .external_lex_state = 8}, - [7266] = {.lex_state = 27, .external_lex_state = 8}, + [7266] = {.lex_state = 20, .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}, @@ -30757,88 +27395,88 @@ 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 = 26, .external_lex_state = 8}, + [7279] = {.lex_state = 20, .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 = 26, .external_lex_state = 8}, + [7284] = {.lex_state = 20, .external_lex_state = 8}, [7285] = {.lex_state = 20, .external_lex_state = 8}, - [7286] = {.lex_state = 20, .external_lex_state = 8}, + [7286] = {.lex_state = 27, .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 = 26, .external_lex_state = 8}, + [7290] = {.lex_state = 20, .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}, + [7293] = {.lex_state = 28, .external_lex_state = 8}, [7294] = {.lex_state = 20, .external_lex_state = 8}, - [7295] = {.lex_state = 20, .external_lex_state = 8}, + [7295] = {.lex_state = 27, .external_lex_state = 8}, [7296] = {.lex_state = 20, .external_lex_state = 8}, - [7297] = {.lex_state = 27, .external_lex_state = 8}, - [7298] = {.lex_state = 20, .external_lex_state = 8}, + [7297] = {.lex_state = 20, .external_lex_state = 8}, + [7298] = {.lex_state = 28, .external_lex_state = 8}, [7299] = {.lex_state = 20, .external_lex_state = 8}, [7300] = {.lex_state = 20, .external_lex_state = 8}, [7301] = {.lex_state = 20, .external_lex_state = 8}, [7302] = {.lex_state = 20, .external_lex_state = 8}, - [7303] = {.lex_state = 20, .external_lex_state = 8}, + [7303] = {.lex_state = 27, .external_lex_state = 8}, [7304] = {.lex_state = 20, .external_lex_state = 8}, - [7305] = {.lex_state = 20, .external_lex_state = 8}, + [7305] = {.lex_state = 28, .external_lex_state = 8}, [7306] = {.lex_state = 20, .external_lex_state = 8}, [7307] = {.lex_state = 20, .external_lex_state = 8}, [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 = 26, .external_lex_state = 8}, + [7311] = {.lex_state = 28, .external_lex_state = 8}, [7312] = {.lex_state = 20, .external_lex_state = 8}, [7313] = {.lex_state = 20, .external_lex_state = 8}, - [7314] = {.lex_state = 27, .external_lex_state = 8}, - [7315] = {.lex_state = 26, .external_lex_state = 8}, + [7314] = {.lex_state = 20, .external_lex_state = 8}, + [7315] = {.lex_state = 20, .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}, + [7318] = {.lex_state = 26, .external_lex_state = 8}, [7319] = {.lex_state = 20, .external_lex_state = 8}, [7320] = {.lex_state = 20, .external_lex_state = 8}, - [7321] = {.lex_state = 26, .external_lex_state = 8}, - [7322] = {.lex_state = 26, .external_lex_state = 8}, + [7321] = {.lex_state = 20, .external_lex_state = 8}, + [7322] = {.lex_state = 20, .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 = 26, .external_lex_state = 8}, - [7327] = {.lex_state = 26, .external_lex_state = 8}, + [7326] = {.lex_state = 20, .external_lex_state = 8}, + [7327] = {.lex_state = 20, .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 = 27, .external_lex_state = 8}, + [7333] = {.lex_state = 20, .external_lex_state = 8}, [7334] = {.lex_state = 20, .external_lex_state = 8}, [7335] = {.lex_state = 20, .external_lex_state = 8}, - [7336] = {.lex_state = 26, .external_lex_state = 8}, + [7336] = {.lex_state = 20, .external_lex_state = 8}, [7337] = {.lex_state = 20, .external_lex_state = 8}, - [7338] = {.lex_state = 27, .external_lex_state = 8}, + [7338] = {.lex_state = 20, .external_lex_state = 8}, [7339] = {.lex_state = 20, .external_lex_state = 8}, - [7340] = {.lex_state = 25, .external_lex_state = 8}, - [7341] = {.lex_state = 26, .external_lex_state = 8}, + [7340] = {.lex_state = 20, .external_lex_state = 8}, + [7341] = {.lex_state = 20, .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}, - [7345] = {.lex_state = 20, .external_lex_state = 8}, - [7346] = {.lex_state = 20, .external_lex_state = 8}, - [7347] = {.lex_state = 20, .external_lex_state = 8}, - [7348] = {.lex_state = 20, .external_lex_state = 8}, + [7343] = {.lex_state = 27, .external_lex_state = 8}, + [7344] = {.lex_state = 27, .external_lex_state = 8}, + [7345] = {.lex_state = 27, .external_lex_state = 8}, + [7346] = {.lex_state = 27, .external_lex_state = 8}, + [7347] = {.lex_state = 27, .external_lex_state = 8}, + [7348] = {.lex_state = 27, .external_lex_state = 8}, [7349] = {.lex_state = 20, .external_lex_state = 8}, - [7350] = {.lex_state = 26, .external_lex_state = 8}, - [7351] = {.lex_state = 20, .external_lex_state = 8}, + [7350] = {.lex_state = 20, .external_lex_state = 8}, + [7351] = {.lex_state = 26, .external_lex_state = 8}, [7352] = {.lex_state = 20, .external_lex_state = 8}, - [7353] = {.lex_state = 27, .external_lex_state = 8}, - [7354] = {.lex_state = 20, .external_lex_state = 8}, + [7353] = {.lex_state = 20, .external_lex_state = 8}, + [7354] = {.lex_state = 28, .external_lex_state = 8}, [7355] = {.lex_state = 20, .external_lex_state = 8}, [7356] = {.lex_state = 20, .external_lex_state = 8}, - [7357] = {.lex_state = 25, .external_lex_state = 8}, - [7358] = {.lex_state = 20, .external_lex_state = 8}, + [7357] = {.lex_state = 27, .external_lex_state = 8}, + [7358] = {.lex_state = 27, .external_lex_state = 8}, [7359] = {.lex_state = 20, .external_lex_state = 8}, - [7360] = {.lex_state = 27, .external_lex_state = 8}, + [7360] = {.lex_state = 20, .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}, @@ -30853,7 +27491,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 = 25, .external_lex_state = 8}, + [7375] = {.lex_state = 20, .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}, @@ -30866,7 +27504,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 = 25, .external_lex_state = 8}, + [7388] = {.lex_state = 20, .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}, @@ -30876,22 +27514,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7395] = {.lex_state = 20, .external_lex_state = 8}, [7396] = {.lex_state = 20, .external_lex_state = 8}, [7397] = {.lex_state = 20, .external_lex_state = 8}, - [7398] = {.lex_state = 20, .external_lex_state = 8}, + [7398] = {.lex_state = 26, .external_lex_state = 8}, [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 = 20, .external_lex_state = 8}, - [7403] = {.lex_state = 25, .external_lex_state = 8}, + [7403] = {.lex_state = 20, .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}, [7407] = {.lex_state = 20, .external_lex_state = 8}, [7408] = {.lex_state = 20, .external_lex_state = 8}, - [7409] = {.lex_state = 20, .external_lex_state = 8}, + [7409] = {.lex_state = 26, .external_lex_state = 8}, [7410] = {.lex_state = 20, .external_lex_state = 8}, [7411] = {.lex_state = 20, .external_lex_state = 8}, [7412] = {.lex_state = 20, .external_lex_state = 8}, - [7413] = {.lex_state = 20, .external_lex_state = 8}, + [7413] = {.lex_state = 26, .external_lex_state = 8}, [7414] = {.lex_state = 20, .external_lex_state = 8}, [7415] = {.lex_state = 20, .external_lex_state = 8}, [7416] = {.lex_state = 20, .external_lex_state = 8}, @@ -30904,7 +27542,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7423] = {.lex_state = 20, .external_lex_state = 8}, [7424] = {.lex_state = 20, .external_lex_state = 8}, [7425] = {.lex_state = 20, .external_lex_state = 8}, - [7426] = {.lex_state = 20, .external_lex_state = 8}, + [7426] = {.lex_state = 26, .external_lex_state = 8}, [7427] = {.lex_state = 20, .external_lex_state = 8}, [7428] = {.lex_state = 20, .external_lex_state = 8}, [7429] = {.lex_state = 20, .external_lex_state = 8}, @@ -30912,8 +27550,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7431] = {.lex_state = 20, .external_lex_state = 8}, [7432] = {.lex_state = 20, .external_lex_state = 8}, [7433] = {.lex_state = 20, .external_lex_state = 8}, - [7434] = {.lex_state = 20, .external_lex_state = 8}, - [7435] = {.lex_state = 20, .external_lex_state = 8}, + [7434] = {.lex_state = 26, .external_lex_state = 8}, + [7435] = {.lex_state = 20, .external_lex_state = 9}, [7436] = {.lex_state = 20, .external_lex_state = 8}, [7437] = {.lex_state = 20, .external_lex_state = 8}, [7438] = {.lex_state = 20, .external_lex_state = 8}, @@ -30938,7 +27576,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 20, .external_lex_state = 9}, + [7460] = {.lex_state = 20, .external_lex_state = 8}, [7461] = {.lex_state = 20, .external_lex_state = 8}, [7462] = {.lex_state = 20, .external_lex_state = 8}, [7463] = {.lex_state = 20, .external_lex_state = 8}, @@ -30949,7 +27587,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 27, .external_lex_state = 8}, + [7471] = {.lex_state = 20, .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}, @@ -30960,7 +27598,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 = 25, .external_lex_state = 8}, + [7482] = {.lex_state = 20, .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}, @@ -30979,12 +27617,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7498] = {.lex_state = 20, .external_lex_state = 8}, [7499] = {.lex_state = 20, .external_lex_state = 8}, [7500] = {.lex_state = 20, .external_lex_state = 8}, - [7501] = {.lex_state = 27, .external_lex_state = 8}, + [7501] = {.lex_state = 20, .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 = 27, .external_lex_state = 8}, + [7506] = {.lex_state = 20, .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}, @@ -31012,7 +27650,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7531] = {.lex_state = 20, .external_lex_state = 8}, [7532] = {.lex_state = 20, .external_lex_state = 8}, [7533] = {.lex_state = 20, .external_lex_state = 8}, - [7534] = {.lex_state = 27, .external_lex_state = 8}, + [7534] = {.lex_state = 20, .external_lex_state = 8}, [7535] = {.lex_state = 20, .external_lex_state = 8}, [7536] = {.lex_state = 20, .external_lex_state = 8}, [7537] = {.lex_state = 20, .external_lex_state = 8}, @@ -31036,7 +27674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 20, .external_lex_state = 9}, + [7558] = {.lex_state = 20, .external_lex_state = 8}, [7559] = {.lex_state = 20, .external_lex_state = 8}, [7560] = {.lex_state = 20, .external_lex_state = 8}, [7561] = {.lex_state = 20, .external_lex_state = 8}, @@ -31044,11 +27682,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7563] = {.lex_state = 20, .external_lex_state = 8}, [7564] = {.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}, + [7566] = {.lex_state = 20, .external_lex_state = 8}, + [7567] = {.lex_state = 20, .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}, + [7570] = {.lex_state = 28, .external_lex_state = 8}, [7571] = {.lex_state = 20, .external_lex_state = 8}, [7572] = {.lex_state = 20, .external_lex_state = 8}, [7573] = {.lex_state = 20, .external_lex_state = 8}, @@ -31066,21 +27704,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7585] = {.lex_state = 20, .external_lex_state = 8}, [7586] = {.lex_state = 20, .external_lex_state = 8}, [7587] = {.lex_state = 20, .external_lex_state = 8}, - [7588] = {.lex_state = 20, .external_lex_state = 8}, + [7588] = {.lex_state = 28, .external_lex_state = 8}, [7589] = {.lex_state = 20, .external_lex_state = 8}, - [7590] = {.lex_state = 20, .external_lex_state = 8}, - [7591] = {.lex_state = 20, .external_lex_state = 8}, - [7592] = {.lex_state = 20, .external_lex_state = 8}, + [7590] = {.lex_state = 28, .external_lex_state = 8}, + [7591] = {.lex_state = 28, .external_lex_state = 8}, + [7592] = {.lex_state = 26, .external_lex_state = 8}, [7593] = {.lex_state = 20, .external_lex_state = 8}, [7594] = {.lex_state = 20, .external_lex_state = 8}, - [7595] = {.lex_state = 20, .external_lex_state = 8}, + [7595] = {.lex_state = 20, .external_lex_state = 9}, [7596] = {.lex_state = 20, .external_lex_state = 8}, [7597] = {.lex_state = 20, .external_lex_state = 8}, [7598] = {.lex_state = 20, .external_lex_state = 8}, [7599] = {.lex_state = 20, .external_lex_state = 8}, [7600] = {.lex_state = 20, .external_lex_state = 8}, [7601] = {.lex_state = 20, .external_lex_state = 8}, - [7602] = {.lex_state = 20, .external_lex_state = 8}, + [7602] = {.lex_state = 28, .external_lex_state = 8}, [7603] = {.lex_state = 20, .external_lex_state = 8}, [7604] = {.lex_state = 20, .external_lex_state = 8}, [7605] = {.lex_state = 20, .external_lex_state = 8}, @@ -31091,7 +27729,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7610] = {.lex_state = 20, .external_lex_state = 8}, [7611] = {.lex_state = 20, .external_lex_state = 8}, [7612] = {.lex_state = 20, .external_lex_state = 8}, - [7613] = {.lex_state = 20, .external_lex_state = 8}, + [7613] = {.lex_state = 26, .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}, @@ -31119,19 +27757,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 = 25, .external_lex_state = 8}, + [7641] = {.lex_state = 20, .external_lex_state = 8}, [7642] = {.lex_state = 20, .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 = 25, .external_lex_state = 8}, + [7647] = {.lex_state = 20, .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 = 25, .external_lex_state = 8}, + [7653] = {.lex_state = 20, .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}, @@ -31171,7 +27809,7 @@ 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 = 25, .external_lex_state = 8}, + [7693] = {.lex_state = 20, .external_lex_state = 8}, [7694] = {.lex_state = 20, .external_lex_state = 8}, [7695] = {.lex_state = 20, .external_lex_state = 8}, [7696] = {.lex_state = 20, .external_lex_state = 8}, @@ -31187,15 +27825,15 @@ 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 = 25, .external_lex_state = 8}, + [7709] = {.lex_state = 20, .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}, [7713] = {.lex_state = 20, .external_lex_state = 8}, [7714] = {.lex_state = 20, .external_lex_state = 8}, - [7715] = {.lex_state = 20, .external_lex_state = 8}, + [7715] = {.lex_state = 26, .external_lex_state = 8}, [7716] = {.lex_state = 20, .external_lex_state = 8}, - [7717] = {.lex_state = 20, .external_lex_state = 8}, + [7717] = {.lex_state = 26, .external_lex_state = 8}, [7718] = {.lex_state = 20, .external_lex_state = 8}, [7719] = {.lex_state = 20, .external_lex_state = 8}, [7720] = {.lex_state = 20, .external_lex_state = 8}, @@ -31205,7 +27843,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 25, .external_lex_state = 8}, + [7727] = {.lex_state = 20, .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}, @@ -31223,7 +27861,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 = 20, .external_lex_state = 8}, + [7745] = {.lex_state = 26, .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}, @@ -31234,7 +27872,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 = 20, .external_lex_state = 8}, + [7756] = {.lex_state = 26, .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}, @@ -31266,7 +27904,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7785] = {.lex_state = 20, .external_lex_state = 8}, [7786] = {.lex_state = 20, .external_lex_state = 8}, [7787] = {.lex_state = 20, .external_lex_state = 8}, - [7788] = {.lex_state = 20, .external_lex_state = 8}, + [7788] = {.lex_state = 26, .external_lex_state = 8}, [7789] = {.lex_state = 20, .external_lex_state = 8}, [7790] = {.lex_state = 20, .external_lex_state = 8}, [7791] = {.lex_state = 20, .external_lex_state = 8}, @@ -31284,7 +27922,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [7806] = {.lex_state = 26, .external_lex_state = 8}, [7807] = {.lex_state = 20, .external_lex_state = 8}, [7808] = {.lex_state = 20, .external_lex_state = 8}, [7809] = {.lex_state = 20, .external_lex_state = 8}, @@ -31306,7 +27944,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 25, .external_lex_state = 8}, + [7828] = {.lex_state = 20, .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}, @@ -31318,40 +27956,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 = 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 = 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}, + [7840] = {.lex_state = 28, .external_lex_state = 8}, + [7841] = {.lex_state = 26, .external_lex_state = 8}, + [7842] = {.lex_state = 26, .external_lex_state = 8}, + [7843] = {.lex_state = 26, .external_lex_state = 8}, + [7844] = {.lex_state = 26, .external_lex_state = 8}, + [7845] = {.lex_state = 20, .external_lex_state = 8}, + [7846] = {.lex_state = 28, .external_lex_state = 8}, + [7847] = {.lex_state = 28, .external_lex_state = 8}, + [7848] = {.lex_state = 28, .external_lex_state = 8}, + [7849] = {.lex_state = 28, .external_lex_state = 8}, + [7850] = {.lex_state = 20, .external_lex_state = 8}, + [7851] = {.lex_state = 28, .external_lex_state = 8}, [7852] = {.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 = 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}, + [7853] = {.lex_state = 20, .external_lex_state = 8}, + [7854] = {.lex_state = 28, .external_lex_state = 8}, + [7855] = {.lex_state = 28, .external_lex_state = 8}, + [7856] = {.lex_state = 28, .external_lex_state = 8}, + [7857] = {.lex_state = 26, .external_lex_state = 8}, + [7858] = {.lex_state = 26, .external_lex_state = 8}, + [7859] = {.lex_state = 26, .external_lex_state = 8}, + [7860] = {.lex_state = 26, .external_lex_state = 8}, + [7861] = {.lex_state = 26, .external_lex_state = 8}, [7862] = {.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}, + [7863] = {.lex_state = 26, .external_lex_state = 8}, + [7864] = {.lex_state = 28, .external_lex_state = 8}, + [7865] = {.lex_state = 20, .external_lex_state = 8}, + [7866] = {.lex_state = 28, .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 = 23, .external_lex_state = 9}, + [7873] = {.lex_state = 20, .external_lex_state = 8}, [7874] = {.lex_state = 20, .external_lex_state = 8}, [7875] = {.lex_state = 20, .external_lex_state = 8}, [7876] = {.lex_state = 20, .external_lex_state = 8}, @@ -31365,13 +28003,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 = 23, .external_lex_state = 9}, + [7887] = {.lex_state = 20, .external_lex_state = 8}, [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 = 23, .external_lex_state = 9}, + [7891] = {.lex_state = 20, .external_lex_state = 8}, [7892] = {.lex_state = 20, .external_lex_state = 8}, - [7893] = {.lex_state = 23, .external_lex_state = 8}, + [7893] = {.lex_state = 20, .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}, @@ -31389,7 +28027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7908] = {.lex_state = 20, .external_lex_state = 8}, [7909] = {.lex_state = 20, .external_lex_state = 8}, [7910] = {.lex_state = 20, .external_lex_state = 8}, - [7911] = {.lex_state = 20, .external_lex_state = 8}, + [7911] = {.lex_state = 22, .external_lex_state = 9}, [7912] = {.lex_state = 20, .external_lex_state = 8}, [7913] = {.lex_state = 20, .external_lex_state = 8}, [7914] = {.lex_state = 20, .external_lex_state = 8}, @@ -31401,7 +28039,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7920] = {.lex_state = 20, .external_lex_state = 8}, [7921] = {.lex_state = 20, .external_lex_state = 8}, [7922] = {.lex_state = 20, .external_lex_state = 8}, - [7923] = {.lex_state = 20, .external_lex_state = 8}, + [7923] = {.lex_state = 33, .external_lex_state = 8}, [7924] = {.lex_state = 20, .external_lex_state = 8}, [7925] = {.lex_state = 20, .external_lex_state = 8}, [7926] = {.lex_state = 20, .external_lex_state = 8}, @@ -31449,7 +28087,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7968] = {.lex_state = 20, .external_lex_state = 8}, [7969] = {.lex_state = 20, .external_lex_state = 8}, [7970] = {.lex_state = 20, .external_lex_state = 8}, - [7971] = {.lex_state = 20, .external_lex_state = 8}, + [7971] = {.lex_state = 22, .external_lex_state = 9}, [7972] = {.lex_state = 20, .external_lex_state = 8}, [7973] = {.lex_state = 20, .external_lex_state = 8}, [7974] = {.lex_state = 20, .external_lex_state = 8}, @@ -31458,7 +28096,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7977] = {.lex_state = 20, .external_lex_state = 8}, [7978] = {.lex_state = 20, .external_lex_state = 8}, [7979] = {.lex_state = 20, .external_lex_state = 8}, - [7980] = {.lex_state = 20, .external_lex_state = 8}, + [7980] = {.lex_state = 22, .external_lex_state = 8}, [7981] = {.lex_state = 20, .external_lex_state = 8}, [7982] = {.lex_state = 20, .external_lex_state = 8}, [7983] = {.lex_state = 20, .external_lex_state = 8}, @@ -31481,11 +28119,11 @@ 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 = 31, .external_lex_state = 8}, + [8003] = {.lex_state = 20, .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}, - [8007] = {.lex_state = 20, .external_lex_state = 8}, + [8007] = {.lex_state = 22, .external_lex_state = 9}, [8008] = {.lex_state = 20, .external_lex_state = 8}, [8009] = {.lex_state = 20, .external_lex_state = 8}, [8010] = {.lex_state = 20, .external_lex_state = 8}, @@ -31507,31 +28145,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8026] = {.lex_state = 20, .external_lex_state = 8}, [8027] = {.lex_state = 20, .external_lex_state = 8}, [8028] = {.lex_state = 20, .external_lex_state = 8}, - [8029] = {.lex_state = 20, .external_lex_state = 8}, + [8029] = {.lex_state = 22, .external_lex_state = 8}, [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 = 13, .external_lex_state = 8}, + [8033] = {.lex_state = 20, .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}, + [8036] = {.lex_state = 22, .external_lex_state = 8}, [8037] = {.lex_state = 20, .external_lex_state = 8}, - [8038] = {.lex_state = 23, .external_lex_state = 8}, + [8038] = {.lex_state = 20, .external_lex_state = 8}, [8039] = {.lex_state = 20, .external_lex_state = 8}, - [8040] = {.lex_state = 23, .external_lex_state = 8}, + [8040] = {.lex_state = 20, .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 = 13, .external_lex_state = 8}, + [8044] = {.lex_state = 20, .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}, [8048] = {.lex_state = 20, .external_lex_state = 8}, [8049] = {.lex_state = 20, .external_lex_state = 8}, - [8050] = {.lex_state = 20, .external_lex_state = 8}, + [8050] = {.lex_state = 22, .external_lex_state = 8}, [8051] = {.lex_state = 20, .external_lex_state = 8}, [8052] = {.lex_state = 20, .external_lex_state = 8}, - [8053] = {.lex_state = 20, .external_lex_state = 8}, + [8053] = {.lex_state = 22, .external_lex_state = 8}, [8054] = {.lex_state = 20, .external_lex_state = 8}, [8055] = {.lex_state = 20, .external_lex_state = 8}, [8056] = {.lex_state = 20, .external_lex_state = 8}, @@ -31587,7 +28225,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 8}, + [8109] = {.lex_state = 20, .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}, @@ -31603,7 +28241,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 = 23, .external_lex_state = 8}, + [8125] = {.lex_state = 20, .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}, @@ -31616,15 +28254,15 @@ 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 = 23, .external_lex_state = 8}, - [8139] = {.lex_state = 13, .external_lex_state = 8}, + [8138] = {.lex_state = 20, .external_lex_state = 8}, + [8139] = {.lex_state = 20, .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}, [8143] = {.lex_state = 20, .external_lex_state = 8}, [8144] = {.lex_state = 20, .external_lex_state = 8}, [8145] = {.lex_state = 20, .external_lex_state = 8}, - [8146] = {.lex_state = 20, .external_lex_state = 8}, + [8146] = {.lex_state = 13, .external_lex_state = 8}, [8147] = {.lex_state = 20, .external_lex_state = 8}, [8148] = {.lex_state = 20, .external_lex_state = 8}, [8149] = {.lex_state = 20, .external_lex_state = 8}, @@ -31663,20 +28301,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 23, .external_lex_state = 8}, + [8185] = {.lex_state = 20, .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}, [8189] = {.lex_state = 20, .external_lex_state = 8}, [8190] = {.lex_state = 20, .external_lex_state = 8}, - [8191] = {.lex_state = 20, .external_lex_state = 8}, + [8191] = {.lex_state = 13, .external_lex_state = 8}, [8192] = {.lex_state = 20, .external_lex_state = 8}, [8193] = {.lex_state = 20, .external_lex_state = 8}, [8194] = {.lex_state = 20, .external_lex_state = 8}, [8195] = {.lex_state = 20, .external_lex_state = 8}, [8196] = {.lex_state = 20, .external_lex_state = 8}, [8197] = {.lex_state = 20, .external_lex_state = 8}, - [8198] = {.lex_state = 20, .external_lex_state = 8}, + [8198] = {.lex_state = 13, .external_lex_state = 8}, [8199] = {.lex_state = 20, .external_lex_state = 8}, [8200] = {.lex_state = 20, .external_lex_state = 8}, [8201] = {.lex_state = 20, .external_lex_state = 8}, @@ -31687,30 +28325,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8206] = {.lex_state = 20, .external_lex_state = 8}, [8207] = {.lex_state = 20, .external_lex_state = 8}, [8208] = {.lex_state = 20, .external_lex_state = 8}, - [8209] = {.lex_state = 20, .external_lex_state = 8}, + [8209] = {.lex_state = 22, .external_lex_state = 8}, [8210] = {.lex_state = 20, .external_lex_state = 8}, [8211] = {.lex_state = 20, .external_lex_state = 8}, [8212] = {.lex_state = 20, .external_lex_state = 8}, [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 = 23, .external_lex_state = 8}, + [8216] = {.lex_state = 20, .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}, [8220] = {.lex_state = 20, .external_lex_state = 8}, - [8221] = {.lex_state = 20, .external_lex_state = 8}, + [8221] = {.lex_state = 22, .external_lex_state = 8}, [8222] = {.lex_state = 20, .external_lex_state = 8}, [8223] = {.lex_state = 20, .external_lex_state = 8}, - [8224] = {.lex_state = 20, .external_lex_state = 8}, + [8224] = {.lex_state = 22, .external_lex_state = 8}, [8225] = {.lex_state = 20, .external_lex_state = 8}, [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 = 20, .external_lex_state = 8}, + [8229] = {.lex_state = 22, .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}, + [8232] = {.lex_state = 13, .external_lex_state = 8}, [8233] = {.lex_state = 20, .external_lex_state = 8}, [8234] = {.lex_state = 20, .external_lex_state = 8}, [8235] = {.lex_state = 20, .external_lex_state = 8}, @@ -31724,10 +28362,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8243] = {.lex_state = 20, .external_lex_state = 8}, [8244] = {.lex_state = 20, .external_lex_state = 8}, [8245] = {.lex_state = 20, .external_lex_state = 8}, - [8246] = {.lex_state = 20, .external_lex_state = 8}, + [8246] = {.lex_state = 13, .external_lex_state = 8}, [8247] = {.lex_state = 20, .external_lex_state = 8}, [8248] = {.lex_state = 20, .external_lex_state = 8}, - [8249] = {.lex_state = 13, .external_lex_state = 8}, + [8249] = {.lex_state = 20, .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}, @@ -31738,7 +28376,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 = 23, .external_lex_state = 8}, + [8260] = {.lex_state = 20, .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}, @@ -31753,963 +28391,963 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [8275] = {.lex_state = 13, .external_lex_state = 8}, [8276] = {.lex_state = 20, .external_lex_state = 8}, [8277] = {.lex_state = 20, .external_lex_state = 8}, - [8278] = {.lex_state = 23, .external_lex_state = 8}, + [8278] = {.lex_state = 20, .external_lex_state = 8}, [8279] = {.lex_state = 20, .external_lex_state = 8}, [8280] = {.lex_state = 20, .external_lex_state = 8}, - [8281] = {.lex_state = 13, .external_lex_state = 8}, + [8281] = {.lex_state = 20, .external_lex_state = 8}, [8282] = {.lex_state = 20, .external_lex_state = 8}, [8283] = {.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 = 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}, + [8284] = {.lex_state = 20, .external_lex_state = 8}, + [8285] = {.lex_state = 20, .external_lex_state = 8}, + [8286] = {.lex_state = 33, .external_lex_state = 8}, + [8287] = {.lex_state = 33, .external_lex_state = 8}, + [8288] = {.lex_state = 33, .external_lex_state = 8}, + [8289] = {.lex_state = 33, .external_lex_state = 8}, + [8290] = {.lex_state = 33, .external_lex_state = 8}, + [8291] = {.lex_state = 22, .external_lex_state = 8}, + [8292] = {.lex_state = 22, .external_lex_state = 8}, + [8293] = {.lex_state = 33, .external_lex_state = 8}, + [8294] = {.lex_state = 22, .external_lex_state = 8}, + [8295] = {.lex_state = 22, .external_lex_state = 8}, + [8296] = {.lex_state = 33, .external_lex_state = 8}, + [8297] = {.lex_state = 33, .external_lex_state = 8}, + [8298] = {.lex_state = 33, .external_lex_state = 8}, + [8299] = {.lex_state = 22, .external_lex_state = 8}, + [8300] = {.lex_state = 33, .external_lex_state = 8}, + [8301] = {.lex_state = 33, .external_lex_state = 8}, + [8302] = {.lex_state = 33, .external_lex_state = 8}, + [8303] = {.lex_state = 33, .external_lex_state = 8}, + [8304] = {.lex_state = 33, .external_lex_state = 8}, + [8305] = {.lex_state = 33, .external_lex_state = 8}, + [8306] = {.lex_state = 33, .external_lex_state = 8}, + [8307] = {.lex_state = 33, .external_lex_state = 8}, + [8308] = {.lex_state = 33, .external_lex_state = 8}, + [8309] = {.lex_state = 33, .external_lex_state = 8}, + [8310] = {.lex_state = 22, .external_lex_state = 8}, + [8311] = {.lex_state = 33, .external_lex_state = 8}, + [8312] = {.lex_state = 33, .external_lex_state = 8}, + [8313] = {.lex_state = 33, .external_lex_state = 8}, + [8314] = {.lex_state = 22, .external_lex_state = 8}, + [8315] = {.lex_state = 22, .external_lex_state = 9}, + [8316] = {.lex_state = 33, .external_lex_state = 8}, + [8317] = {.lex_state = 33, .external_lex_state = 8}, + [8318] = {.lex_state = 22, .external_lex_state = 8}, + [8319] = {.lex_state = 33, .external_lex_state = 8}, + [8320] = {.lex_state = 33, .external_lex_state = 8}, + [8321] = {.lex_state = 22, .external_lex_state = 8}, + [8322] = {.lex_state = 33, .external_lex_state = 8}, + [8323] = {.lex_state = 22, .external_lex_state = 8}, + [8324] = {.lex_state = 22, .external_lex_state = 9}, + [8325] = {.lex_state = 22, .external_lex_state = 9}, + [8326] = {.lex_state = 22, .external_lex_state = 8}, + [8327] = {.lex_state = 22, .external_lex_state = 8}, + [8328] = {.lex_state = 22, .external_lex_state = 9}, + [8329] = {.lex_state = 22, .external_lex_state = 9}, + [8330] = {.lex_state = 22, .external_lex_state = 9}, + [8331] = {.lex_state = 22, .external_lex_state = 9}, + [8332] = {.lex_state = 22, .external_lex_state = 9}, + [8333] = {.lex_state = 22, .external_lex_state = 8}, + [8334] = {.lex_state = 22, .external_lex_state = 8}, + [8335] = {.lex_state = 22, .external_lex_state = 9}, + [8336] = {.lex_state = 22, .external_lex_state = 9}, + [8337] = {.lex_state = 22, .external_lex_state = 8}, + [8338] = {.lex_state = 22, .external_lex_state = 8}, + [8339] = {.lex_state = 22, .external_lex_state = 9}, [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}, + [8341] = {.lex_state = 22, .external_lex_state = 8}, + [8342] = {.lex_state = 321, .external_lex_state = 8}, + [8343] = {.lex_state = 22, .external_lex_state = 8}, + [8344] = {.lex_state = 22, .external_lex_state = 9}, + [8345] = {.lex_state = 22, .external_lex_state = 8}, + [8346] = {.lex_state = 22, .external_lex_state = 9}, + [8347] = {.lex_state = 321, .external_lex_state = 8}, + [8348] = {.lex_state = 22, .external_lex_state = 8}, + [8349] = {.lex_state = 13, .external_lex_state = 8}, + [8350] = {.lex_state = 22, .external_lex_state = 8}, + [8351] = {.lex_state = 22, .external_lex_state = 8}, + [8352] = {.lex_state = 22, .external_lex_state = 8}, + [8353] = {.lex_state = 22, .external_lex_state = 9}, + [8354] = {.lex_state = 13, .external_lex_state = 8}, + [8355] = {.lex_state = 13, .external_lex_state = 8}, + [8356] = {.lex_state = 13, .external_lex_state = 8}, + [8357] = {.lex_state = 13, .external_lex_state = 8}, + [8358] = {.lex_state = 22, .external_lex_state = 8}, + [8359] = {.lex_state = 22, .external_lex_state = 8}, + [8360] = {.lex_state = 321, .external_lex_state = 8}, + [8361] = {.lex_state = 22, .external_lex_state = 9}, + [8362] = {.lex_state = 321, .external_lex_state = 8}, + [8363] = {.lex_state = 321, .external_lex_state = 8}, + [8364] = {.lex_state = 321, .external_lex_state = 8}, + [8365] = {.lex_state = 321, .external_lex_state = 8}, + [8366] = {.lex_state = 22, .external_lex_state = 8}, + [8367] = {.lex_state = 22, .external_lex_state = 9}, + [8368] = {.lex_state = 22, .external_lex_state = 9}, + [8369] = {.lex_state = 321, .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}, + [8371] = {.lex_state = 321, .external_lex_state = 8}, + [8372] = {.lex_state = 22, .external_lex_state = 9}, + [8373] = {.lex_state = 321, .external_lex_state = 8}, + [8374] = {.lex_state = 321, .external_lex_state = 8}, + [8375] = {.lex_state = 321, .external_lex_state = 8}, + [8376] = {.lex_state = 321, .external_lex_state = 8}, + [8377] = {.lex_state = 321, .external_lex_state = 8}, + [8378] = {.lex_state = 13, .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}, + [8380] = {.lex_state = 321, .external_lex_state = 8}, + [8381] = {.lex_state = 321, .external_lex_state = 8}, + [8382] = {.lex_state = 321, .external_lex_state = 8}, + [8383] = {.lex_state = 22, .external_lex_state = 8}, + [8384] = {.lex_state = 22, .external_lex_state = 9}, + [8385] = {.lex_state = 321, .external_lex_state = 8}, + [8386] = {.lex_state = 22, .external_lex_state = 8}, + [8387] = {.lex_state = 22, .external_lex_state = 8}, + [8388] = {.lex_state = 321, .external_lex_state = 8}, + [8389] = {.lex_state = 321, .external_lex_state = 8}, + [8390] = {.lex_state = 321, .external_lex_state = 8}, + [8391] = {.lex_state = 321, .external_lex_state = 8}, + [8392] = {.lex_state = 22, .external_lex_state = 8}, + [8393] = {.lex_state = 22, .external_lex_state = 9}, + [8394] = {.lex_state = 321, .external_lex_state = 8}, + [8395] = {.lex_state = 22, .external_lex_state = 9}, + [8396] = {.lex_state = 22, .external_lex_state = 8}, + [8397] = {.lex_state = 22, .external_lex_state = 9}, + [8398] = {.lex_state = 321, .external_lex_state = 8}, + [8399] = {.lex_state = 22, .external_lex_state = 8}, + [8400] = {.lex_state = 321, .external_lex_state = 8}, + [8401] = {.lex_state = 22, .external_lex_state = 8}, + [8402] = {.lex_state = 321, .external_lex_state = 8}, + [8403] = {.lex_state = 0, .external_lex_state = 9}, + [8404] = {.lex_state = 22, .external_lex_state = 9}, + [8405] = {.lex_state = 22, .external_lex_state = 8}, + [8406] = {.lex_state = 0, .external_lex_state = 10}, + [8407] = {.lex_state = 22, .external_lex_state = 9}, + [8408] = {.lex_state = 22, .external_lex_state = 8}, + [8409] = {.lex_state = 0, .external_lex_state = 9}, + [8410] = {.lex_state = 22, .external_lex_state = 9}, + [8411] = {.lex_state = 0, .external_lex_state = 10}, + [8412] = {.lex_state = 22, .external_lex_state = 9}, + [8413] = {.lex_state = 22, .external_lex_state = 9}, + [8414] = {.lex_state = 22, .external_lex_state = 9}, + [8415] = {.lex_state = 0, .external_lex_state = 9}, + [8416] = {.lex_state = 0, .external_lex_state = 10}, + [8417] = {.lex_state = 22, .external_lex_state = 9}, + [8418] = {.lex_state = 22, .external_lex_state = 9}, + [8419] = {.lex_state = 22, .external_lex_state = 9}, + [8420] = {.lex_state = 0, .external_lex_state = 9}, + [8421] = {.lex_state = 22, .external_lex_state = 8}, + [8422] = {.lex_state = 0, .external_lex_state = 10}, + [8423] = {.lex_state = 22, .external_lex_state = 9}, + [8424] = {.lex_state = 0, .external_lex_state = 9}, + [8425] = {.lex_state = 0, .external_lex_state = 10}, + [8426] = {.lex_state = 22, .external_lex_state = 9}, + [8427] = {.lex_state = 0, .external_lex_state = 10}, + [8428] = {.lex_state = 0, .external_lex_state = 10}, + [8429] = {.lex_state = 22, .external_lex_state = 9}, [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}, + [8432] = {.lex_state = 22, .external_lex_state = 8}, + [8433] = {.lex_state = 22, .external_lex_state = 8}, + [8434] = {.lex_state = 0, .external_lex_state = 9}, + [8435] = {.lex_state = 22, .external_lex_state = 9}, + [8436] = {.lex_state = 0, .external_lex_state = 10}, + [8437] = {.lex_state = 22, .external_lex_state = 9}, + [8438] = {.lex_state = 22, .external_lex_state = 9}, + [8439] = {.lex_state = 0, .external_lex_state = 10}, + [8440] = {.lex_state = 22, .external_lex_state = 8}, + [8441] = {.lex_state = 22, .external_lex_state = 9}, + [8442] = {.lex_state = 22, .external_lex_state = 9}, + [8443] = {.lex_state = 22, .external_lex_state = 9}, + [8444] = {.lex_state = 22, .external_lex_state = 8}, + [8445] = {.lex_state = 22, .external_lex_state = 8}, + [8446] = {.lex_state = 0, .external_lex_state = 9}, + [8447] = {.lex_state = 22, .external_lex_state = 8}, + [8448] = {.lex_state = 22, .external_lex_state = 8}, + [8449] = {.lex_state = 0, .external_lex_state = 10}, [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}, + [8451] = {.lex_state = 22, .external_lex_state = 8}, + [8452] = {.lex_state = 0, .external_lex_state = 10}, + [8453] = {.lex_state = 22, .external_lex_state = 8}, [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}, + [8455] = {.lex_state = 22, .external_lex_state = 9}, + [8456] = {.lex_state = 0, .external_lex_state = 9}, + [8457] = {.lex_state = 22, .external_lex_state = 9}, + [8458] = {.lex_state = 321, .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}, + [8460] = {.lex_state = 22, .external_lex_state = 8}, + [8461] = {.lex_state = 22, .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}, + [8463] = {.lex_state = 34, .external_lex_state = 8}, + [8464] = {.lex_state = 22, .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}, + [8468] = {.lex_state = 0, .external_lex_state = 9}, + [8469] = {.lex_state = 0, .external_lex_state = 8}, + [8470] = {.lex_state = 0, .external_lex_state = 8}, + [8471] = {.lex_state = 22, .external_lex_state = 9}, [8472] = {.lex_state = 0, .external_lex_state = 8}, - [8473] = {.lex_state = 23, .external_lex_state = 9}, + [8473] = {.lex_state = 0, .external_lex_state = 8}, [8474] = {.lex_state = 0, .external_lex_state = 8}, - [8475] = {.lex_state = 0, .external_lex_state = 8}, + [8475] = {.lex_state = 22, .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}, + [8478] = {.lex_state = 0, .external_lex_state = 8}, + [8479] = {.lex_state = 22, .external_lex_state = 8}, [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}, + [8483] = {.lex_state = 22, .external_lex_state = 8}, + [8484] = {.lex_state = 22, .external_lex_state = 9}, [8485] = {.lex_state = 0, .external_lex_state = 8}, - [8486] = {.lex_state = 23, .external_lex_state = 9}, + [8486] = {.lex_state = 22, .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}, + [8488] = {.lex_state = 22, .external_lex_state = 9}, + [8489] = {.lex_state = 22, .external_lex_state = 9}, + [8490] = {.lex_state = 22, .external_lex_state = 9}, + [8491] = {.lex_state = 22, .external_lex_state = 9}, + [8492] = {.lex_state = 22, .external_lex_state = 9}, [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}, + [8497] = {.lex_state = 0, .external_lex_state = 8}, + [8498] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8503] = {.lex_state = 22, .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}, + [8505] = {.lex_state = 22, .external_lex_state = 8}, + [8506] = {.lex_state = 22, .external_lex_state = 8}, + [8507] = {.lex_state = 0, .external_lex_state = 8}, + [8508] = {.lex_state = 34, .external_lex_state = 8}, + [8509] = {.lex_state = 22, .external_lex_state = 8}, + [8510] = {.lex_state = 0, .external_lex_state = 8}, + [8511] = {.lex_state = 22, .external_lex_state = 8}, + [8512] = {.lex_state = 34, .external_lex_state = 8}, + [8513] = {.lex_state = 0, .external_lex_state = 9}, [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}, + [8516] = {.lex_state = 0, .external_lex_state = 8}, + [8517] = {.lex_state = 0, .external_lex_state = 8}, + [8518] = {.lex_state = 22, .external_lex_state = 9}, + [8519] = {.lex_state = 22, .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}, + [8525] = {.lex_state = 22, .external_lex_state = 8}, + [8526] = {.lex_state = 22, .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}, + [8529] = {.lex_state = 0, .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 = 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}, + [8533] = {.lex_state = 0, .external_lex_state = 8}, + [8534] = {.lex_state = 0, .external_lex_state = 8}, + [8535] = {.lex_state = 22, .external_lex_state = 9}, + [8536] = {.lex_state = 0, .external_lex_state = 8}, + [8537] = {.lex_state = 22, .external_lex_state = 9}, + [8538] = {.lex_state = 22, .external_lex_state = 8}, + [8539] = {.lex_state = 22, .external_lex_state = 8}, + [8540] = {.lex_state = 34, .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}, + [8542] = {.lex_state = 0, .external_lex_state = 8}, + [8543] = {.lex_state = 22, .external_lex_state = 8}, + [8544] = {.lex_state = 22, .external_lex_state = 9}, [8545] = {.lex_state = 0, .external_lex_state = 8}, - [8546] = {.lex_state = 0, .external_lex_state = 8}, + [8546] = {.lex_state = 22, .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}, + [8548] = {.lex_state = 0, .external_lex_state = 8}, + [8549] = {.lex_state = 0, .external_lex_state = 8}, + [8550] = {.lex_state = 22, .external_lex_state = 8}, + [8551] = {.lex_state = 0, .external_lex_state = 8}, + [8552] = {.lex_state = 0, .external_lex_state = 8}, + [8553] = {.lex_state = 0, .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}, + [8555] = {.lex_state = 0, .external_lex_state = 8}, + [8556] = {.lex_state = 22, .external_lex_state = 8}, + [8557] = {.lex_state = 22, .external_lex_state = 8}, + [8558] = {.lex_state = 22, .external_lex_state = 8}, + [8559] = {.lex_state = 22, .external_lex_state = 8}, [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}, + [8562] = {.lex_state = 0, .external_lex_state = 8}, + [8563] = {.lex_state = 22, .external_lex_state = 8}, [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}, + [8565] = {.lex_state = 22, .external_lex_state = 8}, + [8566] = {.lex_state = 22, .external_lex_state = 8}, + [8567] = {.lex_state = 0, .external_lex_state = 8}, + [8568] = {.lex_state = 22, .external_lex_state = 8}, + [8569] = {.lex_state = 22, .external_lex_state = 9}, [8570] = {.lex_state = 0, .external_lex_state = 8}, - [8571] = {.lex_state = 23, .external_lex_state = 9}, - [8572] = {.lex_state = 23, .external_lex_state = 8}, + [8571] = {.lex_state = 0, .external_lex_state = 8}, + [8572] = {.lex_state = 0, .external_lex_state = 8}, [8573] = {.lex_state = 0, .external_lex_state = 8}, - [8574] = {.lex_state = 32, .external_lex_state = 8}, + [8574] = {.lex_state = 22, .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}, + [8580] = {.lex_state = 22, .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}, + [8583] = {.lex_state = 22, .external_lex_state = 8}, + [8584] = {.lex_state = 22, .external_lex_state = 9}, + [8585] = {.lex_state = 0, .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}, + [8587] = {.lex_state = 22, .external_lex_state = 8}, + [8588] = {.lex_state = 0, .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}, + [8590] = {.lex_state = 34, .external_lex_state = 8}, + [8591] = {.lex_state = 0, .external_lex_state = 8}, [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 = 32, .external_lex_state = 8}, + [8596] = {.lex_state = 0, .external_lex_state = 8}, + [8597] = {.lex_state = 0, .external_lex_state = 8}, [8598] = {.lex_state = 0, .external_lex_state = 8}, - [8599] = {.lex_state = 0, .external_lex_state = 8}, + [8599] = {.lex_state = 22, .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}, + [8604] = {.lex_state = 0, .external_lex_state = 8}, + [8605] = {.lex_state = 22, .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 = 9}, - [8609] = {.lex_state = 23, .external_lex_state = 9}, - [8610] = {.lex_state = 23, .external_lex_state = 8}, - [8611] = {.lex_state = 32, .external_lex_state = 8}, + [8607] = {.lex_state = 0, .external_lex_state = 8}, + [8608] = {.lex_state = 22, .external_lex_state = 8}, + [8609] = {.lex_state = 0, .external_lex_state = 8}, + [8610] = {.lex_state = 0, .external_lex_state = 8}, + [8611] = {.lex_state = 0, .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}, + [8613] = {.lex_state = 22, .external_lex_state = 8}, + [8614] = {.lex_state = 22, .external_lex_state = 8}, + [8615] = {.lex_state = 0, .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}, + [8617] = {.lex_state = 0, .external_lex_state = 8}, + [8618] = {.lex_state = 34, .external_lex_state = 8}, + [8619] = {.lex_state = 0, .external_lex_state = 8}, + [8620] = {.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 = 0, .external_lex_state = 8}, - [8629] = {.lex_state = 23, .external_lex_state = 8}, + [8622] = {.lex_state = 22, .external_lex_state = 8}, + [8623] = {.lex_state = 0, .external_lex_state = 8}, + [8624] = {.lex_state = 0, .external_lex_state = 8}, + [8625] = {.lex_state = 0, .external_lex_state = 8}, + [8626] = {.lex_state = 0, .external_lex_state = 8}, + [8627] = {.lex_state = 22, .external_lex_state = 9}, + [8628] = {.lex_state = 22, .external_lex_state = 8}, + [8629] = {.lex_state = 0, .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}, + [8632] = {.lex_state = 0, .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 = 23, .external_lex_state = 8}, + [8636] = {.lex_state = 0, .external_lex_state = 9}, + [8637] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [8639] = {.lex_state = 0, .external_lex_state = 10}, + [8640] = {.lex_state = 22, .external_lex_state = 8}, + [8641] = {.lex_state = 0, .external_lex_state = 10}, [8642] = {.lex_state = 0, .external_lex_state = 8}, - [8643] = {.lex_state = 23, .external_lex_state = 8}, + [8643] = {.lex_state = 0, .external_lex_state = 8}, [8644] = {.lex_state = 0, .external_lex_state = 8}, - [8645] = {.lex_state = 0, .external_lex_state = 8}, + [8645] = {.lex_state = 22, .external_lex_state = 8}, [8646] = {.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}, + [8650] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8652] = {.lex_state = 0, .external_lex_state = 8}, + [8653] = {.lex_state = 0, .external_lex_state = 8}, + [8654] = {.lex_state = 22, .external_lex_state = 11}, [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 = 0, .external_lex_state = 8}, - [8659] = {.lex_state = 0, .external_lex_state = 8}, + [8659] = {.lex_state = 22, .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 = 0, .external_lex_state = 9}, + [8663] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8668] = {.lex_state = 22, .external_lex_state = 8}, [8669] = {.lex_state = 0, .external_lex_state = 8}, [8670] = {.lex_state = 0, .external_lex_state = 8}, - [8671] = {.lex_state = 0, .external_lex_state = 8}, + [8671] = {.lex_state = 22, .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}, + [8673] = {.lex_state = 0, .external_lex_state = 9}, + [8674] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8677] = {.lex_state = 0, .external_lex_state = 9}, + [8678] = {.lex_state = 0, .external_lex_state = 8}, [8679] = {.lex_state = 0, .external_lex_state = 8}, - [8680] = {.lex_state = 0, .external_lex_state = 8}, + [8680] = {.lex_state = 0, .external_lex_state = 9}, [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}, + [8685] = {.lex_state = 22, .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}, + [8688] = {.lex_state = 22, .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}, + [8693] = {.lex_state = 0, .external_lex_state = 9}, [8694] = {.lex_state = 0, .external_lex_state = 8}, - [8695] = {.lex_state = 0, .external_lex_state = 10}, - [8696] = {.lex_state = 23, .external_lex_state = 11}, + [8695] = {.lex_state = 0, .external_lex_state = 8}, + [8696] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8698] = {.lex_state = 0, .external_lex_state = 9}, + [8699] = {.lex_state = 0, .external_lex_state = 8}, + [8700] = {.lex_state = 0, .external_lex_state = 8}, + [8701] = {.lex_state = 0, .external_lex_state = 9}, + [8702] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8705] = {.lex_state = 0, .external_lex_state = 9}, + [8706] = {.lex_state = 0, .external_lex_state = 10}, + [8707] = {.lex_state = 0, .external_lex_state = 9}, + [8708] = {.lex_state = 0, .external_lex_state = 9}, [8709] = {.lex_state = 0, .external_lex_state = 8}, - [8710] = {.lex_state = 0, .external_lex_state = 8}, + [8710] = {.lex_state = 0, .external_lex_state = 9}, [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 = 0, .external_lex_state = 8}, - [8715] = {.lex_state = 0, .external_lex_state = 9}, + [8713] = {.lex_state = 0, .external_lex_state = 8}, + [8714] = {.lex_state = 0, .external_lex_state = 9}, + [8715] = {.lex_state = 0, .external_lex_state = 8}, [8716] = {.lex_state = 0, .external_lex_state = 8}, - [8717] = {.lex_state = 23, .external_lex_state = 8}, + [8717] = {.lex_state = 0, .external_lex_state = 8}, [8718] = {.lex_state = 0, .external_lex_state = 8}, - [8719] = {.lex_state = 0, .external_lex_state = 9}, + [8719] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [8722] = {.lex_state = 0, .external_lex_state = 8}, + [8723] = {.lex_state = 0, .external_lex_state = 8}, [8724] = {.lex_state = 0, .external_lex_state = 8}, - [8725] = {.lex_state = 23, .external_lex_state = 8}, - [8726] = {.lex_state = 0, .external_lex_state = 8}, - [8727] = {.lex_state = 0, .external_lex_state = 9}, + [8725] = {.lex_state = 0, .external_lex_state = 8}, + [8726] = {.lex_state = 22, .external_lex_state = 8}, + [8727] = {.lex_state = 0, .external_lex_state = 8}, [8728] = {.lex_state = 0, .external_lex_state = 8}, - [8729] = {.lex_state = 0, .external_lex_state = 8}, + [8729] = {.lex_state = 0, .external_lex_state = 9}, [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}, + [8733] = {.lex_state = 0, .external_lex_state = 9}, [8734] = {.lex_state = 0, .external_lex_state = 8}, [8735] = {.lex_state = 0, .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 = 9}, + [8736] = {.lex_state = 0, .external_lex_state = 8}, + [8737] = {.lex_state = 0, .external_lex_state = 8}, + [8738] = {.lex_state = 0, .external_lex_state = 8}, [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 = 23, .external_lex_state = 8}, - [8744] = {.lex_state = 0, .external_lex_state = 8}, - [8745] = {.lex_state = 0, .external_lex_state = 8}, + [8742] = {.lex_state = 0, .external_lex_state = 9}, + [8743] = {.lex_state = 0, .external_lex_state = 8}, + [8744] = {.lex_state = 0, .external_lex_state = 9}, + [8745] = {.lex_state = 22, .external_lex_state = 11}, [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}, + [8747] = {.lex_state = 321, .external_lex_state = 8}, + [8748] = {.lex_state = 22, .external_lex_state = 8}, + [8749] = {.lex_state = 0, .external_lex_state = 10}, [8750] = {.lex_state = 0, .external_lex_state = 9}, - [8751] = {.lex_state = 23, .external_lex_state = 11}, - [8752] = {.lex_state = 0, .external_lex_state = 8}, + [8751] = {.lex_state = 0, .external_lex_state = 9}, + [8752] = {.lex_state = 0, .external_lex_state = 9}, [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 = 0, .external_lex_state = 8}, [8757] = {.lex_state = 0, .external_lex_state = 8}, - [8758] = {.lex_state = 23, .external_lex_state = 8}, + [8758] = {.lex_state = 0, .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 = 10}, + [8761] = {.lex_state = 22, .external_lex_state = 8}, [8762] = {.lex_state = 0, .external_lex_state = 8}, - [8763] = {.lex_state = 0, .external_lex_state = 9}, - [8764] = {.lex_state = 0, .external_lex_state = 8}, + [8763] = {.lex_state = 0, .external_lex_state = 8}, + [8764] = {.lex_state = 22, .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}, + [8766] = {.lex_state = 0, .external_lex_state = 8}, + [8767] = {.lex_state = 22, .external_lex_state = 8}, [8768] = {.lex_state = 0, .external_lex_state = 8}, [8769] = {.lex_state = 0, .external_lex_state = 8}, - [8770] = {.lex_state = 0, .external_lex_state = 9}, + [8770] = {.lex_state = 0, .external_lex_state = 8}, [8771] = {.lex_state = 0, .external_lex_state = 8}, - [8772] = {.lex_state = 0, .external_lex_state = 8}, + [8772] = {.lex_state = 0, .external_lex_state = 9}, [8773] = {.lex_state = 0, .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}, + [8776] = {.lex_state = 0, .external_lex_state = 8}, [8777] = {.lex_state = 0, .external_lex_state = 8}, - [8778] = {.lex_state = 0, .external_lex_state = 9}, + [8778] = {.lex_state = 0, .external_lex_state = 8}, [8779] = {.lex_state = 0, .external_lex_state = 8}, - [8780] = {.lex_state = 0, .external_lex_state = 10}, + [8780] = {.lex_state = 0, .external_lex_state = 8}, [8781] = {.lex_state = 0, .external_lex_state = 8}, [8782] = {.lex_state = 0, .external_lex_state = 8}, - [8783] = {.lex_state = 0, .external_lex_state = 9}, - [8784] = {.lex_state = 0, .external_lex_state = 8}, + [8783] = {.lex_state = 0, .external_lex_state = 8}, + [8784] = {.lex_state = 0, .external_lex_state = 9}, [8785] = {.lex_state = 0, .external_lex_state = 8}, - [8786] = {.lex_state = 0, .external_lex_state = 8}, - [8787] = {.lex_state = 0, .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}, + [8786] = {.lex_state = 0, .external_lex_state = 9}, + [8787] = {.lex_state = 22, .external_lex_state = 8}, + [8788] = {.lex_state = 22, .external_lex_state = 8}, + [8789] = {.lex_state = 0, .external_lex_state = 9}, + [8790] = {.lex_state = 0, .external_lex_state = 9}, [8791] = {.lex_state = 0, .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 = 23, .external_lex_state = 8}, - [8796] = {.lex_state = 318, .external_lex_state = 8}, + [8795] = {.lex_state = 0, .external_lex_state = 8}, + [8796] = {.lex_state = 22, .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}, + [8798] = {.lex_state = 0, .external_lex_state = 8}, + [8799] = {.lex_state = 0, .external_lex_state = 8}, + [8800] = {.lex_state = 321, .external_lex_state = 8}, + [8801] = {.lex_state = 0, .external_lex_state = 8}, + [8802] = {.lex_state = 321, .external_lex_state = 8}, + [8803] = {.lex_state = 0, .external_lex_state = 8}, + [8804] = {.lex_state = 0, .external_lex_state = 8}, [8805] = {.lex_state = 0, .external_lex_state = 8}, - [8806] = {.lex_state = 0, .external_lex_state = 8}, - [8807] = {.lex_state = 0, .external_lex_state = 9}, + [8806] = {.lex_state = 22, .external_lex_state = 8}, + [8807] = {.lex_state = 22, .external_lex_state = 8}, [8808] = {.lex_state = 0, .external_lex_state = 8}, [8809] = {.lex_state = 0, .external_lex_state = 8}, - [8810] = {.lex_state = 0, .external_lex_state = 9}, - [8811] = {.lex_state = 23, .external_lex_state = 8}, + [8810] = {.lex_state = 0, .external_lex_state = 8}, + [8811] = {.lex_state = 0, .external_lex_state = 8}, [8812] = {.lex_state = 0, .external_lex_state = 8}, - [8813] = {.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 = 23, .external_lex_state = 8}, - [8817] = {.lex_state = 0, .external_lex_state = 8}, + [8813] = {.lex_state = 321, .external_lex_state = 8}, + [8814] = {.lex_state = 0, .external_lex_state = 8}, + [8815] = {.lex_state = 321, .external_lex_state = 8}, + [8816] = {.lex_state = 0, .external_lex_state = 8}, + [8817] = {.lex_state = 0, .external_lex_state = 9}, [8818] = {.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 = 0, .external_lex_state = 8}, + [8819] = {.lex_state = 0, .external_lex_state = 9}, + [8820] = {.lex_state = 321, .external_lex_state = 8}, + [8821] = {.lex_state = 321, .external_lex_state = 8}, [8822] = {.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}, + [8823] = {.lex_state = 0, .external_lex_state = 8}, + [8824] = {.lex_state = 321, .external_lex_state = 8}, + [8825] = {.lex_state = 0, .external_lex_state = 8}, [8826] = {.lex_state = 0, .external_lex_state = 8}, - [8827] = {.lex_state = 318, .external_lex_state = 8}, - [8828] = {.lex_state = 318, .external_lex_state = 8}, + [8827] = {.lex_state = 321, .external_lex_state = 8}, + [8828] = {.lex_state = 22, .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 = 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}, + [8831] = {.lex_state = 0, .external_lex_state = 8}, + [8832] = {.lex_state = 0, .external_lex_state = 8}, + [8833] = {.lex_state = 321, .external_lex_state = 8}, + [8834] = {.lex_state = 321, .external_lex_state = 8}, + [8835] = {.lex_state = 321, .external_lex_state = 8}, [8836] = {.lex_state = 0, .external_lex_state = 8}, [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 = 318, .external_lex_state = 8}, - [8842] = {.lex_state = 0, .external_lex_state = 8}, + [8841] = {.lex_state = 0, .external_lex_state = 8}, + [8842] = {.lex_state = 0, .external_lex_state = 9}, [8843] = {.lex_state = 0, .external_lex_state = 8}, - [8844] = {.lex_state = 318, .external_lex_state = 8}, + [8844] = {.lex_state = 0, .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}, + [8847] = {.lex_state = 321, .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}, + [8850] = {.lex_state = 22, .external_lex_state = 8}, [8851] = {.lex_state = 0, .external_lex_state = 8}, - [8852] = {.lex_state = 0, .external_lex_state = 8}, + [8852] = {.lex_state = 321, .external_lex_state = 8}, [8853] = {.lex_state = 0, .external_lex_state = 8}, - [8854] = {.lex_state = 0, .external_lex_state = 8}, - [8855] = {.lex_state = 318, .external_lex_state = 8}, - [8856] = {.lex_state = 318, .external_lex_state = 8}, + [8854] = {.lex_state = 22, .external_lex_state = 8}, + [8855] = {.lex_state = 0, .external_lex_state = 8}, + [8856] = {.lex_state = 0, .external_lex_state = 8}, [8857] = {.lex_state = 0, .external_lex_state = 8}, - [8858] = {.lex_state = 0, .external_lex_state = 8}, + [8858] = {.lex_state = 0, .external_lex_state = 9}, [8859] = {.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 = 23, .external_lex_state = 8}, + [8860] = {.lex_state = 0, .external_lex_state = 8}, + [8861] = {.lex_state = 321, .external_lex_state = 8}, + [8862] = {.lex_state = 0, .external_lex_state = 8}, + [8863] = {.lex_state = 0, .external_lex_state = 8}, + [8864] = {.lex_state = 321, .external_lex_state = 8}, + [8865] = {.lex_state = 321, .external_lex_state = 8}, [8866] = {.lex_state = 0, .external_lex_state = 8}, - [8867] = {.lex_state = 0, .external_lex_state = 9}, - [8868] = {.lex_state = 0, .external_lex_state = 9}, + [8867] = {.lex_state = 321, .external_lex_state = 8}, + [8868] = {.lex_state = 0, .external_lex_state = 8}, [8869] = {.lex_state = 0, .external_lex_state = 8}, - [8870] = {.lex_state = 0, .external_lex_state = 8}, + [8870] = {.lex_state = 22, .external_lex_state = 8}, [8871] = {.lex_state = 0, .external_lex_state = 8}, [8872] = {.lex_state = 0, .external_lex_state = 8}, [8873] = {.lex_state = 0, .external_lex_state = 8}, [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 = 23, .external_lex_state = 8}, - [8878] = {.lex_state = 0, .external_lex_state = 8}, + [8877] = {.lex_state = 321, .external_lex_state = 8}, + [8878] = {.lex_state = 321, .external_lex_state = 8}, [8879] = {.lex_state = 0, .external_lex_state = 8}, - [8880] = {.lex_state = 23, .external_lex_state = 8}, + [8880] = {.lex_state = 0, .external_lex_state = 8}, [8881] = {.lex_state = 0, .external_lex_state = 8}, - [8882] = {.lex_state = 318, .external_lex_state = 8}, + [8882] = {.lex_state = 0, .external_lex_state = 8}, [8883] = {.lex_state = 0, .external_lex_state = 8}, - [8884] = {.lex_state = 23, .external_lex_state = 8}, + [8884] = {.lex_state = 0, .external_lex_state = 9}, [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 = 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}, + [8886] = {.lex_state = 22, .external_lex_state = 8}, + [8887] = {.lex_state = 0, .external_lex_state = 8}, + [8888] = {.lex_state = 0, .external_lex_state = 8}, + [8889] = {.lex_state = 0, .external_lex_state = 8}, + [8890] = {.lex_state = 321, .external_lex_state = 8}, + [8891] = {.lex_state = 0, .external_lex_state = 8}, + [8892] = {.lex_state = 321, .external_lex_state = 8}, + [8893] = {.lex_state = 0, .external_lex_state = 8}, [8894] = {.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 = 23, .external_lex_state = 8}, - [8899] = {.lex_state = 23, .external_lex_state = 8}, + [8895] = {.lex_state = 0, .external_lex_state = 9}, + [8896] = {.lex_state = 0, .external_lex_state = 8}, + [8897] = {.lex_state = 0, .external_lex_state = 8}, + [8898] = {.lex_state = 22, .external_lex_state = 8}, + [8899] = {.lex_state = 0, .external_lex_state = 8}, [8900] = {.lex_state = 0, .external_lex_state = 8}, - [8901] = {.lex_state = 23, .external_lex_state = 8}, + [8901] = {.lex_state = 0, .external_lex_state = 8}, [8902] = {.lex_state = 0, .external_lex_state = 8}, - [8903] = {.lex_state = 23, .external_lex_state = 8}, - [8904] = {.lex_state = 23, .external_lex_state = 8}, + [8903] = {.lex_state = 321, .external_lex_state = 8}, + [8904] = {.lex_state = 321, .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 = 318, .external_lex_state = 8}, - [8909] = {.lex_state = 23, .external_lex_state = 8}, - [8910] = {.lex_state = 23, .external_lex_state = 8}, - [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}, + [8907] = {.lex_state = 321, .external_lex_state = 8}, + [8908] = {.lex_state = 0, .external_lex_state = 8}, + [8909] = {.lex_state = 0, .external_lex_state = 8}, + [8910] = {.lex_state = 0, .external_lex_state = 8}, + [8911] = {.lex_state = 0, .external_lex_state = 8}, + [8912] = {.lex_state = 0, .external_lex_state = 8}, + [8913] = {.lex_state = 0, .external_lex_state = 9}, + [8914] = {.lex_state = 0, .external_lex_state = 9}, + [8915] = {.lex_state = 0, .external_lex_state = 9}, [8916] = {.lex_state = 0, .external_lex_state = 8}, - [8917] = {.lex_state = 0, .external_lex_state = 8}, + [8917] = {.lex_state = 321, .external_lex_state = 8}, [8918] = {.lex_state = 0, .external_lex_state = 8}, - [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}, + [8919] = {.lex_state = 321, .external_lex_state = 8}, + [8920] = {.lex_state = 321, .external_lex_state = 8}, + [8921] = {.lex_state = 22, .external_lex_state = 8}, + [8922] = {.lex_state = 0, .external_lex_state = 8}, [8923] = {.lex_state = 0, .external_lex_state = 8}, - [8924] = {.lex_state = 0, .external_lex_state = 8}, - [8925] = {.lex_state = 23, .external_lex_state = 8}, + [8924] = {.lex_state = 321, .external_lex_state = 8}, + [8925] = {.lex_state = 321, .external_lex_state = 8}, [8926] = {.lex_state = 0, .external_lex_state = 8}, - [8927] = {.lex_state = 0, .external_lex_state = 8}, + [8927] = {.lex_state = 321, .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 = 318, .external_lex_state = 8}, + [8931] = {.lex_state = 22, .external_lex_state = 8}, [8932] = {.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 = 8}, - [8936] = {.lex_state = 318, .external_lex_state = 8}, + [8933] = {.lex_state = 22, .external_lex_state = 8}, + [8934] = {.lex_state = 321, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 9}, + [8936] = {.lex_state = 22, .external_lex_state = 9}, [8937] = {.lex_state = 0, .external_lex_state = 8}, [8938] = {.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 = 318, .external_lex_state = 8}, + [8939] = {.lex_state = 0, .external_lex_state = 8}, + [8940] = {.lex_state = 22, .external_lex_state = 8}, + [8941] = {.lex_state = 321, .external_lex_state = 8}, + [8942] = {.lex_state = 0, .external_lex_state = 8}, [8943] = {.lex_state = 0, .external_lex_state = 8}, - [8944] = {.lex_state = 318, .external_lex_state = 8}, - [8945] = {.lex_state = 0, .external_lex_state = 8}, - [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}, + [8944] = {.lex_state = 22, .external_lex_state = 8}, + [8945] = {.lex_state = 22, .external_lex_state = 8}, + [8946] = {.lex_state = 22, .external_lex_state = 8}, + [8947] = {.lex_state = 321, .external_lex_state = 8}, + [8948] = {.lex_state = 22, .external_lex_state = 8}, + [8949] = {.lex_state = 22, .external_lex_state = 8}, + [8950] = {.lex_state = 0, .external_lex_state = 8}, + [8951] = {.lex_state = 22, .external_lex_state = 8}, + [8952] = {.lex_state = 0, .external_lex_state = 8}, + [8953] = {.lex_state = 321, .external_lex_state = 8}, + [8954] = {.lex_state = 321, .external_lex_state = 8}, + [8955] = {.lex_state = 22, .external_lex_state = 8}, [8956] = {.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 = 318, .external_lex_state = 8}, + [8958] = {.lex_state = 22, .external_lex_state = 8}, + [8959] = {.lex_state = 22, .external_lex_state = 8}, + [8960] = {.lex_state = 0, .external_lex_state = 8}, [8961] = {.lex_state = 0, .external_lex_state = 8}, - [8962] = {.lex_state = 0, .external_lex_state = 8}, + [8962] = {.lex_state = 22, .external_lex_state = 8}, [8963] = {.lex_state = 0, .external_lex_state = 8}, [8964] = {.lex_state = 0, .external_lex_state = 8}, - [8965] = {.lex_state = 318, .external_lex_state = 8}, + [8965] = {.lex_state = 22, .external_lex_state = 8}, [8966] = {.lex_state = 0, .external_lex_state = 8}, - [8967] = {.lex_state = 0, .external_lex_state = 8}, + [8967] = {.lex_state = 321, .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}, + [8969] = {.lex_state = 0, .external_lex_state = 8}, + [8970] = {.lex_state = 0, .external_lex_state = 8}, + [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8972] = {.lex_state = 321, .external_lex_state = 8}, [8973] = {.lex_state = 0, .external_lex_state = 8}, [8974] = {.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 = 318, .external_lex_state = 8}, - [8981] = {.lex_state = 0, .external_lex_state = 8}, + [8975] = {.lex_state = 321, .external_lex_state = 8}, + [8976] = {.lex_state = 321, .external_lex_state = 8}, + [8977] = {.lex_state = 0, .external_lex_state = 8}, + [8978] = {.lex_state = 22, .external_lex_state = 8}, + [8979] = {.lex_state = 22, .external_lex_state = 8}, + [8980] = {.lex_state = 22, .external_lex_state = 8}, + [8981] = {.lex_state = 321, .external_lex_state = 8}, [8982] = {.lex_state = 0, .external_lex_state = 8}, - [8983] = {.lex_state = 318, .external_lex_state = 8}, - [8984] = {.lex_state = 0, .external_lex_state = 8}, + [8983] = {.lex_state = 0, .external_lex_state = 8}, + [8984] = {.lex_state = 22, .external_lex_state = 8}, [8985] = {.lex_state = 0, .external_lex_state = 8}, - [8986] = {.lex_state = 23, .external_lex_state = 8}, - [8987] = {.lex_state = 0, .external_lex_state = 8}, + [8986] = {.lex_state = 22, .external_lex_state = 8}, + [8987] = {.lex_state = 22, .external_lex_state = 8}, [8988] = {.lex_state = 0, .external_lex_state = 8}, - [8989] = {.lex_state = 318, .external_lex_state = 8}, - [8990] = {.lex_state = 318, .external_lex_state = 8}, + [8989] = {.lex_state = 22, .external_lex_state = 8}, + [8990] = {.lex_state = 0, .external_lex_state = 8}, [8991] = {.lex_state = 0, .external_lex_state = 8}, - [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 = 318, .external_lex_state = 8}, - [8998] = {.lex_state = 0, .external_lex_state = 8}, - [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 = 318, .external_lex_state = 8}, + [8992] = {.lex_state = 321, .external_lex_state = 8}, + [8993] = {.lex_state = 22, .external_lex_state = 8}, + [8994] = {.lex_state = 321, .external_lex_state = 8}, + [8995] = {.lex_state = 321, .external_lex_state = 8}, + [8996] = {.lex_state = 0, .external_lex_state = 9}, + [8997] = {.lex_state = 0, .external_lex_state = 9}, + [8998] = {.lex_state = 22, .external_lex_state = 8}, + [8999] = {.lex_state = 22, .external_lex_state = 8}, + [9000] = {.lex_state = 0, .external_lex_state = 8}, + [9001] = {.lex_state = 0, .external_lex_state = 8}, + [9002] = {.lex_state = 22, .external_lex_state = 8}, + [9003] = {.lex_state = 22, .external_lex_state = 8}, + [9004] = {.lex_state = 22, .external_lex_state = 8}, [9005] = {.lex_state = 0, .external_lex_state = 8}, - [9006] = {.lex_state = 0, .external_lex_state = 8}, - [9007] = {.lex_state = 23, .external_lex_state = 8}, + [9006] = {.lex_state = 22, .external_lex_state = 8}, + [9007] = {.lex_state = 0, .external_lex_state = 8}, [9008] = {.lex_state = 0, .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 = 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}, + [9009] = {.lex_state = 321, .external_lex_state = 8}, + [9010] = {.lex_state = 0, .external_lex_state = 8}, + [9011] = {.lex_state = 22, .external_lex_state = 8}, + [9012] = {.lex_state = 22, .external_lex_state = 8}, + [9013] = {.lex_state = 0, .external_lex_state = 8}, + [9014] = {.lex_state = 22, .external_lex_state = 8}, + [9015] = {.lex_state = 0, .external_lex_state = 8}, + [9016] = {.lex_state = 0, .external_lex_state = 8}, + [9017] = {.lex_state = 321, .external_lex_state = 8}, [9018] = {.lex_state = 0, .external_lex_state = 8}, - [9019] = {.lex_state = 23, .external_lex_state = 8}, - [9020] = {.lex_state = 0, .external_lex_state = 8}, + [9019] = {.lex_state = 22, .external_lex_state = 8}, + [9020] = {.lex_state = 321, .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 = 318, .external_lex_state = 8}, + [9023] = {.lex_state = 22, .external_lex_state = 8}, + [9024] = {.lex_state = 0, .external_lex_state = 8}, [9025] = {.lex_state = 0, .external_lex_state = 8}, - [9026] = {.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}, + [9026] = {.lex_state = 321, .external_lex_state = 8}, + [9027] = {.lex_state = 22, .external_lex_state = 8}, + [9028] = {.lex_state = 22, .external_lex_state = 9}, + [9029] = {.lex_state = 22, .external_lex_state = 8}, [9030] = {.lex_state = 0, .external_lex_state = 8}, - [9031] = {.lex_state = 23, .external_lex_state = 8}, + [9031] = {.lex_state = 0, .external_lex_state = 9}, [9032] = {.lex_state = 0, .external_lex_state = 8}, - [9033] = {.lex_state = 0, .external_lex_state = 8}, + [9033] = {.lex_state = 22, .external_lex_state = 8}, [9034] = {.lex_state = 0, .external_lex_state = 8}, - [9035] = {.lex_state = 318, .external_lex_state = 8}, + [9035] = {.lex_state = 22, .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 = 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}, + [9037] = {.lex_state = 0, .external_lex_state = 8}, + [9038] = {.lex_state = 321, .external_lex_state = 8}, + [9039] = {.lex_state = 0, .external_lex_state = 8}, + [9040] = {.lex_state = 22, .external_lex_state = 8}, + [9041] = {.lex_state = 0, .external_lex_state = 8}, + [9042] = {.lex_state = 321, .external_lex_state = 8}, + [9043] = {.lex_state = 22, .external_lex_state = 8}, + [9044] = {.lex_state = 0, .external_lex_state = 8}, + [9045] = {.lex_state = 22, .external_lex_state = 8}, + [9046] = {.lex_state = 321, .external_lex_state = 8}, + [9047] = {.lex_state = 22, .external_lex_state = 8}, [9048] = {.lex_state = 0, .external_lex_state = 8}, - [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}, + [9049] = {.lex_state = 22, .external_lex_state = 8}, + [9050] = {.lex_state = 22, .external_lex_state = 8}, + [9051] = {.lex_state = 22, .external_lex_state = 8}, + [9052] = {.lex_state = 22, .external_lex_state = 8}, [9053] = {.lex_state = 0, .external_lex_state = 8}, - [9054] = {.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}, + [9054] = {.lex_state = 22, .external_lex_state = 8}, + [9055] = {.lex_state = 0, .external_lex_state = 8}, + [9056] = {.lex_state = 321, .external_lex_state = 8}, + [9057] = {.lex_state = 321, .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}, + [9059] = {.lex_state = 22, .external_lex_state = 8}, + [9060] = {.lex_state = 321, .external_lex_state = 8}, + [9061] = {.lex_state = 321, .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}, + [9063] = {.lex_state = 22, .external_lex_state = 8}, + [9064] = {.lex_state = 0, .external_lex_state = 8}, [9065] = {.lex_state = 0, .external_lex_state = 8}, - [9066] = {.lex_state = 318, .external_lex_state = 8}, + [9066] = {.lex_state = 0, .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 = 9}, - [9074] = {.lex_state = 318, .external_lex_state = 8}, + [9069] = {.lex_state = 0, .external_lex_state = 8}, + [9070] = {.lex_state = 0, .external_lex_state = 8}, + [9071] = {.lex_state = 22, .external_lex_state = 8}, + [9072] = {.lex_state = 22, .external_lex_state = 8}, + [9073] = {.lex_state = 321, .external_lex_state = 8}, + [9074] = {.lex_state = 0, .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 = 318, .external_lex_state = 8}, - [9080] = {.lex_state = 318, .external_lex_state = 8}, + [9076] = {.lex_state = 321, .external_lex_state = 8}, + [9077] = {.lex_state = 22, .external_lex_state = 8}, + [9078] = {.lex_state = 22, .external_lex_state = 8}, + [9079] = {.lex_state = 22, .external_lex_state = 8}, + [9080] = {.lex_state = 22, .external_lex_state = 8}, [9081] = {.lex_state = 0, .external_lex_state = 8}, - [9082] = {.lex_state = 0, .external_lex_state = 8}, - [9083] = {.lex_state = 318, .external_lex_state = 8}, - [9084] = {.lex_state = 0, .external_lex_state = 8}, + [9082] = {.lex_state = 22, .external_lex_state = 8}, + [9083] = {.lex_state = 22, .external_lex_state = 8}, + [9084] = {.lex_state = 321, .external_lex_state = 8}, [9085] = {.lex_state = 0, .external_lex_state = 8}, - [9086] = {.lex_state = 0, .external_lex_state = 8}, + [9086] = {.lex_state = 22, .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}, + [9089] = {.lex_state = 22, .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 = 8}, [9093] = {.lex_state = 0, .external_lex_state = 8}, - [9094] = {.lex_state = 0, .external_lex_state = 8}, - [9095] = {.lex_state = 318, .external_lex_state = 8}, + [9094] = {.lex_state = 321, .external_lex_state = 8}, + [9095] = {.lex_state = 0, .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 = 9}, + [9098] = {.lex_state = 0, .external_lex_state = 8}, [9099] = {.lex_state = 0, .external_lex_state = 8}, [9100] = {.lex_state = 0, .external_lex_state = 8}, - [9101] = {.lex_state = 0, .external_lex_state = 9}, + [9101] = {.lex_state = 0, .external_lex_state = 8}, [9102] = {.lex_state = 0, .external_lex_state = 8}, - [9103] = {.lex_state = 0, .external_lex_state = 8}, + [9103] = {.lex_state = 32, .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}, + [9107] = {.lex_state = 32, .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}, + [9109] = {.lex_state = 0, .external_lex_state = 9}, + [9110] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [9112] = {.lex_state = 32, .external_lex_state = 8}, + [9113] = {.lex_state = 0, .external_lex_state = 8}, + [9114] = {.lex_state = 0, .external_lex_state = 8}, + [9115] = {.lex_state = 0, .external_lex_state = 8}, [9116] = {.lex_state = 0, .external_lex_state = 8}, - [9117] = {.lex_state = 30, .external_lex_state = 8}, + [9117] = {.lex_state = 0, .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}, + [9119] = {.lex_state = 0, .external_lex_state = 8}, + [9120] = {.lex_state = 0, .external_lex_state = 9}, + [9121] = {.lex_state = 0, .external_lex_state = 8}, [9122] = {.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 = 23, .external_lex_state = 8}, + [9123] = {.lex_state = 0, .external_lex_state = 8}, + [9124] = {.lex_state = 0, .external_lex_state = 8}, + [9125] = {.lex_state = 0, .external_lex_state = 9}, + [9126] = {.lex_state = 0, .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 = 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 = 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}, + [9129] = {.lex_state = 0, .external_lex_state = 9}, + [9130] = {.lex_state = 0, .external_lex_state = 8}, + [9131] = {.lex_state = 0, .external_lex_state = 8}, + [9132] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [9137] = {.lex_state = 0, .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}, + [9141] = {.lex_state = 32, .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}, + [9144] = {.lex_state = 0, .external_lex_state = 8}, [9145] = {.lex_state = 0, .external_lex_state = 8}, - [9146] = {.lex_state = 0, .external_lex_state = 9}, - [9147] = {.lex_state = 0, .external_lex_state = 9}, + [9146] = {.lex_state = 0, .external_lex_state = 8}, + [9147] = {.lex_state = 32, .external_lex_state = 8}, [9148] = {.lex_state = 0, .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}, + [9149] = {.lex_state = 0, .external_lex_state = 8}, + [9150] = {.lex_state = 32, .external_lex_state = 8}, + [9151] = {.lex_state = 0, .external_lex_state = 8}, + [9152] = {.lex_state = 0, .external_lex_state = 8}, [9153] = {.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 = 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 = 9}, - [9164] = {.lex_state = 23, .external_lex_state = 8}, + [9154] = {.lex_state = 0, .external_lex_state = 8}, + [9155] = {.lex_state = 0, .external_lex_state = 8}, + [9156] = {.lex_state = 0, .external_lex_state = 8}, + [9157] = {.lex_state = 0, .external_lex_state = 8}, + [9158] = {.lex_state = 32, .external_lex_state = 8}, + [9159] = {.lex_state = 0, .external_lex_state = 8}, + [9160] = {.lex_state = 0, .external_lex_state = 8}, + [9161] = {.lex_state = 0, .external_lex_state = 8}, + [9162] = {.lex_state = 0, .external_lex_state = 9}, + [9163] = {.lex_state = 0, .external_lex_state = 8}, + [9164] = {.lex_state = 0, .external_lex_state = 8}, [9165] = {.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}, + [9167] = {.lex_state = 0, .external_lex_state = 9}, + [9168] = {.lex_state = 0, .external_lex_state = 8}, [9169] = {.lex_state = 0, .external_lex_state = 8}, - [9170] = {.lex_state = 30, .external_lex_state = 8}, + [9170] = {.lex_state = 0, .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 = 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}, + [9176] = {.lex_state = 0, .external_lex_state = 8}, + [9177] = {.lex_state = 0, .external_lex_state = 8}, [9178] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [9181] = {.lex_state = 32, .external_lex_state = 8}, + [9182] = {.lex_state = 0, .external_lex_state = 9}, + [9183] = {.lex_state = 22, .external_lex_state = 11}, [9184] = {.lex_state = 0, .external_lex_state = 8}, - [9185] = {.lex_state = 30, .external_lex_state = 8}, + [9185] = {.lex_state = 0, .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 = 23, .external_lex_state = 8}, - [9190] = {.lex_state = 23, .external_lex_state = 8}, + [9188] = {.lex_state = 0, .external_lex_state = 9}, + [9189] = {.lex_state = 0, .external_lex_state = 9}, + [9190] = {.lex_state = 0, .external_lex_state = 8}, [9191] = {.lex_state = 0, .external_lex_state = 8}, [9192] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [9194] = {.lex_state = 0, .external_lex_state = 8}, + [9195] = {.lex_state = 321, .external_lex_state = 8}, + [9196] = {.lex_state = 32, .external_lex_state = 8}, [9197] = {.lex_state = 0, .external_lex_state = 8}, - [9198] = {.lex_state = 0, .external_lex_state = 8}, + [9198] = {.lex_state = 0, .external_lex_state = 9}, [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 = 0, .external_lex_state = 8}, - [9205] = {.lex_state = 23, .external_lex_state = 8}, - [9206] = {.lex_state = 23, .external_lex_state = 8}, - [9207] = {.lex_state = 23, .external_lex_state = 8}, + [9205] = {.lex_state = 0, .external_lex_state = 8}, + [9206] = {.lex_state = 0, .external_lex_state = 9}, + [9207] = {.lex_state = 32, .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 = 0, .external_lex_state = 8}, + [9209] = {.lex_state = 0, .external_lex_state = 9}, + [9210] = {.lex_state = 0, .external_lex_state = 9}, + [9211] = {.lex_state = 0, .external_lex_state = 9}, + [9212] = {.lex_state = 32, .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}, + [9215] = {.lex_state = 0, .external_lex_state = 9}, [9216] = {.lex_state = 0, .external_lex_state = 8}, [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 = 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}, + [9222] = {.lex_state = 32, .external_lex_state = 8}, + [9223] = {.lex_state = 0, .external_lex_state = 9}, + [9224] = {.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 = 0, .external_lex_state = 8}, [9229] = {.lex_state = 0, .external_lex_state = 8}, - [9230] = {.lex_state = 30, .external_lex_state = 8}, - [9231] = {.lex_state = 0, .external_lex_state = 8}, + [9230] = {.lex_state = 0, .external_lex_state = 8}, + [9231] = {.lex_state = 32, .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}, @@ -32719,296 +29357,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9238] = {.lex_state = 0, .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}, + [9241] = {.lex_state = 0, .external_lex_state = 8}, [9242] = {.lex_state = 0, .external_lex_state = 8}, - [9243] = {.lex_state = 0, .external_lex_state = 9}, + [9243] = {.lex_state = 0, .external_lex_state = 8}, [9244] = {.lex_state = 0, .external_lex_state = 9}, [9245] = {.lex_state = 0, .external_lex_state = 8}, - [9246] = {.lex_state = 0, .external_lex_state = 9}, + [9246] = {.lex_state = 32, .external_lex_state = 8}, [9247] = {.lex_state = 0, .external_lex_state = 8}, - [9248] = {.lex_state = 0, .external_lex_state = 9}, - [9249] = {.lex_state = 30, .external_lex_state = 8}, + [9248] = {.lex_state = 0, .external_lex_state = 8}, + [9249] = {.lex_state = 0, .external_lex_state = 9}, [9250] = {.lex_state = 0, .external_lex_state = 8}, - [9251] = {.lex_state = 0, .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}, + [9251] = {.lex_state = 0, .external_lex_state = 9}, + [9252] = {.lex_state = 0, .external_lex_state = 9}, + [9253] = {.lex_state = 0, .external_lex_state = 9}, + [9254] = {.lex_state = 0, .external_lex_state = 9}, [9255] = {.lex_state = 0, .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}, + [9257] = {.lex_state = 0, .external_lex_state = 8}, + [9258] = {.lex_state = 0, .external_lex_state = 8}, + [9259] = {.lex_state = 0, .external_lex_state = 9}, [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 = 23, .external_lex_state = 11}, - [9264] = {.lex_state = 318, .external_lex_state = 8}, + [9262] = {.lex_state = 32, .external_lex_state = 8}, + [9263] = {.lex_state = 0, .external_lex_state = 9}, + [9264] = {.lex_state = 0, .external_lex_state = 8}, [9265] = {.lex_state = 0, .external_lex_state = 9}, [9266] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, - [9271] = {.lex_state = 30, .external_lex_state = 8}, - [9272] = {.lex_state = 0, .external_lex_state = 9}, + [9268] = {.lex_state = 0, .external_lex_state = 9}, + [9269] = {.lex_state = 0, .external_lex_state = 9}, + [9270] = {.lex_state = 0, .external_lex_state = 9}, + [9271] = {.lex_state = 0, .external_lex_state = 8}, + [9272] = {.lex_state = 321, .external_lex_state = 8}, [9273] = {.lex_state = 0, .external_lex_state = 8}, - [9274] = {.lex_state = 0, .external_lex_state = 9}, + [9274] = {.lex_state = 0, .external_lex_state = 8}, [9275] = {.lex_state = 0, .external_lex_state = 8}, - [9276] = {.lex_state = 0, .external_lex_state = 9}, + [9276] = {.lex_state = 0, .external_lex_state = 8}, [9277] = {.lex_state = 0, .external_lex_state = 8}, - [9278] = {.lex_state = 0, .external_lex_state = 9}, - [9279] = {.lex_state = 0, .external_lex_state = 9}, + [9278] = {.lex_state = 0, .external_lex_state = 8}, + [9279] = {.lex_state = 0, .external_lex_state = 8}, [9280] = {.lex_state = 0, .external_lex_state = 8}, [9281] = {.lex_state = 0, .external_lex_state = 8}, - [9282] = {.lex_state = 30, .external_lex_state = 8}, + [9282] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, - [9287] = {.lex_state = 0, .external_lex_state = 8}, + [9285] = {.lex_state = 0, .external_lex_state = 9}, + [9286] = {.lex_state = 0, .external_lex_state = 9}, + [9287] = {.lex_state = 0, .external_lex_state = 9}, [9288] = {.lex_state = 0, .external_lex_state = 8}, - [9289] = {.lex_state = 0, .external_lex_state = 8}, + [9289] = {.lex_state = 0, .external_lex_state = 9}, [9290] = {.lex_state = 0, .external_lex_state = 8}, - [9291] = {.lex_state = 0, .external_lex_state = 9}, + [9291] = {.lex_state = 0, .external_lex_state = 8}, [9292] = {.lex_state = 0, .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 = 9}, - [9297] = {.lex_state = 0, .external_lex_state = 9}, + [9295] = {.lex_state = 22, .external_lex_state = 8}, + [9296] = {.lex_state = 32, .external_lex_state = 8}, + [9297] = {.lex_state = 0, .external_lex_state = 8}, [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 = 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}, + [9301] = {.lex_state = 0, .external_lex_state = 9}, + [9302] = {.lex_state = 0, .external_lex_state = 9}, + [9303] = {.lex_state = 0, .external_lex_state = 8}, + [9304] = {.lex_state = 0, .external_lex_state = 9}, [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 = 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 = 0, .external_lex_state = 8}, - [9314] = {.lex_state = 0, .external_lex_state = 8}, + [9308] = {.lex_state = 0, .external_lex_state = 9}, + [9309] = {.lex_state = 0, .external_lex_state = 9}, + [9310] = {.lex_state = 0, .external_lex_state = 8}, + [9311] = {.lex_state = 0, .external_lex_state = 8}, + [9312] = {.lex_state = 0, .external_lex_state = 9}, + [9313] = {.lex_state = 32, .external_lex_state = 8}, + [9314] = {.lex_state = 0, .external_lex_state = 9}, [9315] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [9318] = {.lex_state = 0, .external_lex_state = 9}, + [9319] = {.lex_state = 0, .external_lex_state = 9}, [9320] = {.lex_state = 0, .external_lex_state = 8}, - [9321] = {.lex_state = 0, .external_lex_state = 8}, - [9322] = {.lex_state = 30, .external_lex_state = 8}, + [9321] = {.lex_state = 0, .external_lex_state = 9}, + [9322] = {.lex_state = 321, .external_lex_state = 8}, [9323] = {.lex_state = 0, .external_lex_state = 8}, [9324] = {.lex_state = 0, .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}, + [9326] = {.lex_state = 32, .external_lex_state = 8}, + [9327] = {.lex_state = 0, .external_lex_state = 9}, [9328] = {.lex_state = 0, .external_lex_state = 8}, [9329] = {.lex_state = 0, .external_lex_state = 8}, - [9330] = {.lex_state = 0, .external_lex_state = 8}, + [9330] = {.lex_state = 0, .external_lex_state = 9}, [9331] = {.lex_state = 0, .external_lex_state = 8}, [9332] = {.lex_state = 0, .external_lex_state = 8}, - [9333] = {.lex_state = 0, .external_lex_state = 8}, + [9333] = {.lex_state = 22, .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}, + [9335] = {.lex_state = 0, .external_lex_state = 9}, + [9336] = {.lex_state = 0, .external_lex_state = 9}, [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}, + [9339] = {.lex_state = 22, .external_lex_state = 8}, + [9340] = {.lex_state = 0, .external_lex_state = 9}, + [9341] = {.lex_state = 0, .external_lex_state = 9}, [9342] = {.lex_state = 0, .external_lex_state = 8}, - [9343] = {.lex_state = 0, .external_lex_state = 8}, + [9343] = {.lex_state = 22, .external_lex_state = 8}, [9344] = {.lex_state = 0, .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}, + [9347] = {.lex_state = 0, .external_lex_state = 9}, [9348] = {.lex_state = 0, .external_lex_state = 8}, - [9349] = {.lex_state = 0, .external_lex_state = 8}, + [9349] = {.lex_state = 0, .external_lex_state = 9}, [9350] = {.lex_state = 0, .external_lex_state = 8}, [9351] = {.lex_state = 0, .external_lex_state = 8}, - [9352] = {.lex_state = 0, .external_lex_state = 8}, - [9353] = {.lex_state = 0, .external_lex_state = 8}, + [9352] = {.lex_state = 22, .external_lex_state = 8}, + [9353] = {.lex_state = 0, .external_lex_state = 9}, [9354] = {.lex_state = 0, .external_lex_state = 9}, [9355] = {.lex_state = 0, .external_lex_state = 8}, - [9356] = {.lex_state = 0, .external_lex_state = 9}, + [9356] = {.lex_state = 0, .external_lex_state = 8}, [9357] = {.lex_state = 0, .external_lex_state = 8}, - [9358] = {.lex_state = 0, .external_lex_state = 9}, + [9358] = {.lex_state = 22, .external_lex_state = 11}, [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}, + [9362] = {.lex_state = 0, .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}, + [9365] = {.lex_state = 0, .external_lex_state = 9}, [9366] = {.lex_state = 0, .external_lex_state = 8}, - [9367] = {.lex_state = 0, .external_lex_state = 8}, - [9368] = {.lex_state = 30, .external_lex_state = 8}, + [9367] = {.lex_state = 32, .external_lex_state = 8}, + [9368] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [9373] = {.lex_state = 0, .external_lex_state = 9}, [9374] = {.lex_state = 0, .external_lex_state = 8}, - [9375] = {.lex_state = 0, .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}, + [9375] = {.lex_state = 22, .external_lex_state = 8}, + [9376] = {.lex_state = 0, .external_lex_state = 8}, + [9377] = {.lex_state = 22, .external_lex_state = 8}, + [9378] = {.lex_state = 32, .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 = 0, .external_lex_state = 8}, - [9383] = {.lex_state = 0, .external_lex_state = 8}, - [9384] = {.lex_state = 0, .external_lex_state = 8}, + [9380] = {.lex_state = 22, .external_lex_state = 8}, + [9381] = {.lex_state = 0, .external_lex_state = 9}, + [9382] = {.lex_state = 321, .external_lex_state = 8}, + [9383] = {.lex_state = 0, .external_lex_state = 9}, + [9384] = {.lex_state = 0, .external_lex_state = 9}, [9385] = {.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 = 9}, - [9389] = {.lex_state = 30, .external_lex_state = 8}, + [9386] = {.lex_state = 0, .external_lex_state = 9}, + [9387] = {.lex_state = 0, .external_lex_state = 8}, + [9388] = {.lex_state = 0, .external_lex_state = 8}, + [9389] = {.lex_state = 32, .external_lex_state = 8}, [9390] = {.lex_state = 0, .external_lex_state = 8}, [9391] = {.lex_state = 0, .external_lex_state = 8}, - [9392] = {.lex_state = 30, .external_lex_state = 8}, - [9393] = {.lex_state = 0, .external_lex_state = 9}, + [9392] = {.lex_state = 0, .external_lex_state = 8}, + [9393] = {.lex_state = 0, .external_lex_state = 8}, [9394] = {.lex_state = 0, .external_lex_state = 8}, - [9395] = {.lex_state = 0, .external_lex_state = 8}, - [9396] = {.lex_state = 0, .external_lex_state = 8}, + [9395] = {.lex_state = 22, .external_lex_state = 8}, + [9396] = {.lex_state = 321, .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 = 0, .external_lex_state = 8}, - [9401] = {.lex_state = 30, .external_lex_state = 8}, - [9402] = {.lex_state = 0, .external_lex_state = 9}, - [9403] = {.lex_state = 30, .external_lex_state = 8}, - [9404] = {.lex_state = 0, .external_lex_state = 9}, + [9401] = {.lex_state = 0, .external_lex_state = 9}, + [9402] = {.lex_state = 0, .external_lex_state = 8}, + [9403] = {.lex_state = 22, .external_lex_state = 8}, + [9404] = {.lex_state = 0, .external_lex_state = 8}, [9405] = {.lex_state = 0, .external_lex_state = 9}, - [9406] = {.lex_state = 30, .external_lex_state = 8}, + [9406] = {.lex_state = 0, .external_lex_state = 8}, [9407] = {.lex_state = 0, .external_lex_state = 8}, - [9408] = {.lex_state = 0, .external_lex_state = 8}, + [9408] = {.lex_state = 32, .external_lex_state = 8}, [9409] = {.lex_state = 0, .external_lex_state = 8}, [9410] = {.lex_state = 0, .external_lex_state = 8}, - [9411] = {.lex_state = 0, .external_lex_state = 8}, - [9412] = {.lex_state = 0, .external_lex_state = 9}, + [9411] = {.lex_state = 32, .external_lex_state = 8}, + [9412] = {.lex_state = 0, .external_lex_state = 8}, [9413] = {.lex_state = 0, .external_lex_state = 8}, - [9414] = {.lex_state = 0, .external_lex_state = 8}, - [9415] = {.lex_state = 30, .external_lex_state = 8}, + [9414] = {.lex_state = 22, .external_lex_state = 8}, + [9415] = {.lex_state = 22, .external_lex_state = 8}, [9416] = {.lex_state = 0, .external_lex_state = 8}, - [9417] = {.lex_state = 0, .external_lex_state = 8}, - [9418] = {.lex_state = 0, .external_lex_state = 9}, + [9417] = {.lex_state = 22, .external_lex_state = 8}, + [9418] = {.lex_state = 0, .external_lex_state = 8}, [9419] = {.lex_state = 0, .external_lex_state = 8}, [9420] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [9424] = {.lex_state = 0, .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}, + [9427] = {.lex_state = 0, .external_lex_state = 9}, [9428] = {.lex_state = 0, .external_lex_state = 8}, - [9429] = {.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}, + [9429] = {.lex_state = 32, .external_lex_state = 8}, + [9430] = {.lex_state = 0, .external_lex_state = 8}, + [9431] = {.lex_state = 0, .external_lex_state = 9}, + [9432] = {.lex_state = 0, .external_lex_state = 8}, [9433] = {.lex_state = 0, .external_lex_state = 8}, - [9434] = {.lex_state = 0, .external_lex_state = 8}, + [9434] = {.lex_state = 0, .external_lex_state = 9}, [9435] = {.lex_state = 0, .external_lex_state = 8}, [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}, + [9439] = {.lex_state = 0, .external_lex_state = 9}, + [9440] = {.lex_state = 0, .external_lex_state = 8}, [9441] = {.lex_state = 0, .external_lex_state = 8}, [9442] = {.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}, + [9443] = {.lex_state = 0, .external_lex_state = 8}, + [9444] = {.lex_state = 22, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 8}, + [9446] = {.lex_state = 32, .external_lex_state = 8}, + [9447] = {.lex_state = 22, .external_lex_state = 8}, + [9448] = {.lex_state = 0, .external_lex_state = 8}, [9449] = {.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}, + [9452] = {.lex_state = 32, .external_lex_state = 8}, + [9453] = {.lex_state = 0, .external_lex_state = 8}, + [9454] = {.lex_state = 0, .external_lex_state = 8}, + [9455] = {.lex_state = 321, .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}, + [9457] = {.lex_state = 0, .external_lex_state = 8}, + [9458] = {.lex_state = 0, .external_lex_state = 8}, + [9459] = {.lex_state = 32, .external_lex_state = 8}, [9460] = {.lex_state = 0, .external_lex_state = 9}, [9461] = {.lex_state = 0, .external_lex_state = 9}, - [9462] = {.lex_state = 23, .external_lex_state = 8}, - [9463] = {.lex_state = 0, .external_lex_state = 8}, - [9464] = {.lex_state = 23, .external_lex_state = 8}, + [9462] = {.lex_state = 0, .external_lex_state = 9}, + [9463] = {.lex_state = 22, .external_lex_state = 11}, + [9464] = {.lex_state = 0, .external_lex_state = 9}, [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 = 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}, + [9468] = {.lex_state = 22, .external_lex_state = 8}, + [9469] = {.lex_state = 0, .external_lex_state = 8}, + [9470] = {.lex_state = 22, .external_lex_state = 8}, + [9471] = {.lex_state = 0, .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 = 8}, [9475] = {.lex_state = 0, .external_lex_state = 8}, - [9476] = {.lex_state = 23, .external_lex_state = 8}, + [9476] = {.lex_state = 22, .external_lex_state = 8}, [9477] = {.lex_state = 0, .external_lex_state = 8}, - [9478] = {.lex_state = 23, .external_lex_state = 8}, + [9478] = {.lex_state = 0, .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 = 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}, + [9481] = {.lex_state = 0, .external_lex_state = 8}, + [9482] = {.lex_state = 0, .external_lex_state = 8}, + [9483] = {.lex_state = 0, .external_lex_state = 8}, + [9484] = {.lex_state = 0, .external_lex_state = 8}, + [9485] = {.lex_state = 22, .external_lex_state = 8}, + [9486] = {.lex_state = 0, .external_lex_state = 8}, [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 = 8}, + [9491] = {.lex_state = 22, .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 = 8}, [9496] = {.lex_state = 0, .external_lex_state = 8}, - [9497] = {.lex_state = 0, .external_lex_state = 8}, + [9497] = {.lex_state = 22, .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 = 8}, - [9501] = {.lex_state = 23, .external_lex_state = 8}, - [9502] = {.lex_state = 23, .external_lex_state = 8}, + [9500] = {.lex_state = 22, .external_lex_state = 8}, + [9501] = {.lex_state = 0, .external_lex_state = 8}, + [9502] = {.lex_state = 0, .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}, + [9505] = {.lex_state = 0, .external_lex_state = 8}, + [9506] = {.lex_state = 0, .external_lex_state = 8}, + [9507] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, + [9511] = {.lex_state = 0, .external_lex_state = 8}, [9512] = {.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}, + [9515] = {.lex_state = 0, .external_lex_state = 8}, + [9516] = {.lex_state = 22, .external_lex_state = 8}, + [9517] = {.lex_state = 22, .external_lex_state = 8}, + [9518] = {.lex_state = 22, .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 = 8}, - [9522] = {.lex_state = 23, .external_lex_state = 8}, + [9522] = {.lex_state = 0, .external_lex_state = 8}, [9523] = {.lex_state = 0, .external_lex_state = 8}, [9524] = {.lex_state = 0, .external_lex_state = 8}, - [9525] = {.lex_state = 23, .external_lex_state = 8}, + [9525] = {.lex_state = 0, .external_lex_state = 8}, [9526] = {.lex_state = 0, .external_lex_state = 8}, - [9527] = {.lex_state = 23, .external_lex_state = 8}, + [9527] = {.lex_state = 0, .external_lex_state = 8}, [9528] = {.lex_state = 0, .external_lex_state = 8}, - [9529] = {.lex_state = 23, .external_lex_state = 8}, - [9530] = {.lex_state = 0, .external_lex_state = 8}, + [9529] = {.lex_state = 0, .external_lex_state = 8}, + [9530] = {.lex_state = 22, .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 = 8}, @@ -33016,144 +29654,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 8}, + [9538] = {.lex_state = 22, .external_lex_state = 8}, [9539] = {.lex_state = 0, .external_lex_state = 8}, - [9540] = {.lex_state = 0, .external_lex_state = 8}, + [9540] = {.lex_state = 22, .external_lex_state = 8}, [9541] = {.lex_state = 0, .external_lex_state = 8}, [9542] = {.lex_state = 0, .external_lex_state = 8}, - [9543] = {.lex_state = 23, .external_lex_state = 8}, + [9543] = {.lex_state = 0, .external_lex_state = 8}, [9544] = {.lex_state = 0, .external_lex_state = 8}, - [9545] = {.lex_state = 23, .external_lex_state = 8}, - [9546] = {.lex_state = 0, .external_lex_state = 8}, + [9545] = {.lex_state = 0, .external_lex_state = 8}, + [9546] = {.lex_state = 0, .external_lex_state = 9}, [9547] = {.lex_state = 0, .external_lex_state = 8}, - [9548] = {.lex_state = 0, .external_lex_state = 8}, + [9548] = {.lex_state = 321, .external_lex_state = 8}, [9549] = {.lex_state = 0, .external_lex_state = 8}, - [9550] = {.lex_state = 0, .external_lex_state = 8}, + [9550] = {.lex_state = 22, .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}, + [9553] = {.lex_state = 22, .external_lex_state = 8}, [9554] = {.lex_state = 0, .external_lex_state = 8}, [9555] = {.lex_state = 0, .external_lex_state = 8}, - [9556] = {.lex_state = 23, .external_lex_state = 8}, + [9556] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9563] = {.lex_state = 0, .external_lex_state = 8}, - [9564] = {.lex_state = 0, .external_lex_state = 8}, - [9565] = {.lex_state = 23, .external_lex_state = 8}, + [9562] = {.lex_state = 0, .external_lex_state = 8}, + [9563] = {.lex_state = 22, .external_lex_state = 8}, + [9564] = {.lex_state = 22, .external_lex_state = 8}, + [9565] = {.lex_state = 0, .external_lex_state = 8}, [9566] = {.lex_state = 0, .external_lex_state = 8}, [9567] = {.lex_state = 0, .external_lex_state = 8}, - [9568] = {.lex_state = 23, .external_lex_state = 8}, + [9568] = {.lex_state = 0, .external_lex_state = 8}, [9569] = {.lex_state = 0, .external_lex_state = 8}, [9570] = {.lex_state = 0, .external_lex_state = 8}, - [9571] = {.lex_state = 23, .external_lex_state = 8}, + [9571] = {.lex_state = 0, .external_lex_state = 8}, [9572] = {.lex_state = 0, .external_lex_state = 8}, - [9573] = {.lex_state = 23, .external_lex_state = 8}, + [9573] = {.lex_state = 321, .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 = 23, .external_lex_state = 8}, - [9578] = {.lex_state = 23, .external_lex_state = 8}, + [9575] = {.lex_state = 0, .external_lex_state = 8}, + [9576] = {.lex_state = 22, .external_lex_state = 8}, + [9577] = {.lex_state = 22, .external_lex_state = 8}, + [9578] = {.lex_state = 22, .external_lex_state = 8}, [9579] = {.lex_state = 0, .external_lex_state = 8}, - [9580] = {.lex_state = 0, .external_lex_state = 8}, + [9580] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9586] = {.lex_state = 23, .external_lex_state = 8}, - [9587] = {.lex_state = 23, .external_lex_state = 8}, - [9588] = {.lex_state = 23, .external_lex_state = 8}, - [9589] = {.lex_state = 0, .external_lex_state = 8}, + [9585] = {.lex_state = 0, .external_lex_state = 8}, + [9586] = {.lex_state = 22, .external_lex_state = 8}, + [9587] = {.lex_state = 0, .external_lex_state = 8}, + [9588] = {.lex_state = 0, .external_lex_state = 8}, + [9589] = {.lex_state = 22, .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}, + [9591] = {.lex_state = 0, .external_lex_state = 9}, + [9592] = {.lex_state = 22, .external_lex_state = 8}, + [9593] = {.lex_state = 22, .external_lex_state = 8}, [9594] = {.lex_state = 0, .external_lex_state = 8}, - [9595] = {.lex_state = 23, .external_lex_state = 8}, + [9595] = {.lex_state = 22, .external_lex_state = 8}, [9596] = {.lex_state = 0, .external_lex_state = 8}, [9597] = {.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}, + [9598] = {.lex_state = 0, .external_lex_state = 8}, + [9599] = {.lex_state = 0, .external_lex_state = 8}, + [9600] = {.lex_state = 22, .external_lex_state = 8}, + [9601] = {.lex_state = 22, .external_lex_state = 8}, + [9602] = {.lex_state = 22, .external_lex_state = 8}, [9603] = {.lex_state = 0, .external_lex_state = 8}, - [9604] = {.lex_state = 23, .external_lex_state = 8}, + [9604] = {.lex_state = 0, .external_lex_state = 8}, [9605] = {.lex_state = 0, .external_lex_state = 8}, - [9606] = {.lex_state = 23, .external_lex_state = 8}, + [9606] = {.lex_state = 22, .external_lex_state = 8}, [9607] = {.lex_state = 0, .external_lex_state = 8}, - [9608] = {.lex_state = 0, .external_lex_state = 8}, - [9609] = {.lex_state = 23, .external_lex_state = 8}, + [9608] = {.lex_state = 22, .external_lex_state = 8}, + [9609] = {.lex_state = 22, .external_lex_state = 8}, [9610] = {.lex_state = 0, .external_lex_state = 8}, - [9611] = {.lex_state = 23, .external_lex_state = 8}, + [9611] = {.lex_state = 22, .external_lex_state = 8}, [9612] = {.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 = 0, .external_lex_state = 8}, - [9616] = {.lex_state = 23, .external_lex_state = 8}, - [9617] = {.lex_state = 23, .external_lex_state = 8}, - [9618] = {.lex_state = 0, .external_lex_state = 8}, + [9613] = {.lex_state = 0, .external_lex_state = 8}, + [9614] = {.lex_state = 22, .external_lex_state = 8}, + [9615] = {.lex_state = 22, .external_lex_state = 8}, + [9616] = {.lex_state = 0, .external_lex_state = 9}, + [9617] = {.lex_state = 22, .external_lex_state = 8}, + [9618] = {.lex_state = 22, .external_lex_state = 8}, [9619] = {.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 = 23, .external_lex_state = 8}, + [9620] = {.lex_state = 0, .external_lex_state = 8}, + [9621] = {.lex_state = 0, .external_lex_state = 8}, + [9622] = {.lex_state = 22, .external_lex_state = 8}, + [9623] = {.lex_state = 0, .external_lex_state = 8}, [9624] = {.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}, + [9625] = {.lex_state = 0, .external_lex_state = 8}, + [9626] = {.lex_state = 22, .external_lex_state = 8}, + [9627] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9637] = {.lex_state = 23, .external_lex_state = 8}, + [9629] = {.lex_state = 0, .external_lex_state = 8}, + [9630] = {.lex_state = 0, .external_lex_state = 8}, + [9631] = {.lex_state = 22, .external_lex_state = 8}, + [9632] = {.lex_state = 22, .external_lex_state = 8}, + [9633] = {.lex_state = 0, .external_lex_state = 9}, + [9634] = {.lex_state = 0, .external_lex_state = 8}, + [9635] = {.lex_state = 22, .external_lex_state = 8}, + [9636] = {.lex_state = 0, .external_lex_state = 8}, + [9637] = {.lex_state = 22, .external_lex_state = 8}, [9638] = {.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}, + [9639] = {.lex_state = 321, .external_lex_state = 8}, + [9640] = {.lex_state = 22, .external_lex_state = 8}, + [9641] = {.lex_state = 0, .external_lex_state = 8}, [9642] = {.lex_state = 0, .external_lex_state = 8}, [9643] = {.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 = 23, .external_lex_state = 8}, - [9647] = {.lex_state = 23, .external_lex_state = 8}, + [9644] = {.lex_state = 0, .external_lex_state = 8}, + [9645] = {.lex_state = 22, .external_lex_state = 8}, + [9646] = {.lex_state = 0, .external_lex_state = 8}, + [9647] = {.lex_state = 0, .external_lex_state = 8}, [9648] = {.lex_state = 0, .external_lex_state = 8}, [9649] = {.lex_state = 0, .external_lex_state = 8}, - [9650] = {.lex_state = 23, .external_lex_state = 8}, - [9651] = {.lex_state = 0, .external_lex_state = 8}, + [9650] = {.lex_state = 0, .external_lex_state = 8}, + [9651] = {.lex_state = 22, .external_lex_state = 8}, [9652] = {.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 = 23, .external_lex_state = 8}, - [9656] = {.lex_state = 23, .external_lex_state = 8}, - [9657] = {.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}, + [9653] = {.lex_state = 0, .external_lex_state = 8}, + [9654] = {.lex_state = 0, .external_lex_state = 9}, + [9655] = {.lex_state = 0, .external_lex_state = 8}, + [9656] = {.lex_state = 0, .external_lex_state = 9}, + [9657] = {.lex_state = 22, .external_lex_state = 8}, + [9658] = {.lex_state = 0, .external_lex_state = 8}, + [9659] = {.lex_state = 0, .external_lex_state = 8}, + [9660] = {.lex_state = 22, .external_lex_state = 8}, + [9661] = {.lex_state = 0, .external_lex_state = 9}, [9662] = {.lex_state = 0, .external_lex_state = 8}, [9663] = {.lex_state = 0, .external_lex_state = 8}, - [9664] = {.lex_state = 23, .external_lex_state = 8}, + [9664] = {.lex_state = 22, .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}, + [9666] = {.lex_state = 0, .external_lex_state = 8}, + [9667] = {.lex_state = 0, .external_lex_state = 8}, + [9668] = {.lex_state = 0, .external_lex_state = 8}, [9669] = {.lex_state = 0, .external_lex_state = 8}, [9670] = {.lex_state = 0, .external_lex_state = 8}, [9671] = {.lex_state = 0, .external_lex_state = 8}, - [9672] = {.lex_state = 23, .external_lex_state = 8}, + [9672] = {.lex_state = 0, .external_lex_state = 8}, [9673] = {.lex_state = 0, .external_lex_state = 8}, [9674] = {.lex_state = 0, .external_lex_state = 8}, - [9675] = {.lex_state = 23, .external_lex_state = 8}, + [9675] = {.lex_state = 0, .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}, @@ -33165,35 +29803,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9684] = {.lex_state = 0, .external_lex_state = 8}, [9685] = {.lex_state = 0, .external_lex_state = 8}, [9686] = {.lex_state = 0, .external_lex_state = 8}, - [9687] = {.lex_state = 23, .external_lex_state = 8}, - [9688] = {.lex_state = 23, .external_lex_state = 8}, - [9689] = {.lex_state = 0, .external_lex_state = 8}, + [9687] = {.lex_state = 0, .external_lex_state = 8}, + [9688] = {.lex_state = 0, .external_lex_state = 8}, + [9689] = {.lex_state = 22, .external_lex_state = 8}, [9690] = {.lex_state = 0, .external_lex_state = 8}, - [9691] = {.lex_state = 23, .external_lex_state = 8}, + [9691] = {.lex_state = 0, .external_lex_state = 9}, [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 = 23, .external_lex_state = 8}, + [9694] = {.lex_state = 22, .external_lex_state = 8}, + [9695] = {.lex_state = 22, .external_lex_state = 8}, + [9696] = {.lex_state = 0, .external_lex_state = 8}, [9697] = {.lex_state = 0, .external_lex_state = 8}, [9698] = {.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}, + [9699] = {.lex_state = 0, .external_lex_state = 9}, + [9700] = {.lex_state = 0, .external_lex_state = 8}, + [9701] = {.lex_state = 0, .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 = 23, .external_lex_state = 8}, - [9706] = {.lex_state = 23, .external_lex_state = 8}, - [9707] = {.lex_state = 0, .external_lex_state = 8}, - [9708] = {.lex_state = 0, .external_lex_state = 8}, + [9704] = {.lex_state = 0, .external_lex_state = 9}, + [9705] = {.lex_state = 22, .external_lex_state = 8}, + [9706] = {.lex_state = 0, .external_lex_state = 8}, + [9707] = {.lex_state = 22, .external_lex_state = 8}, + [9708] = {.lex_state = 22, .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 = 8}, [9714] = {.lex_state = 0, .external_lex_state = 8}, - [9715] = {.lex_state = 23, .external_lex_state = 8}, + [9715] = {.lex_state = 0, .external_lex_state = 8}, [9716] = {.lex_state = 0, .external_lex_state = 8}, [9717] = {.lex_state = 0, .external_lex_state = 8}, [9718] = {.lex_state = 0, .external_lex_state = 8}, @@ -33205,46 +29843,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [9727] = {.lex_state = 0, .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 = 8}, [9731] = {.lex_state = 0, .external_lex_state = 8}, [9732] = {.lex_state = 0, .external_lex_state = 8}, - [9733] = {.lex_state = 23, .external_lex_state = 8}, + [9733] = {.lex_state = 0, .external_lex_state = 8}, [9734] = {.lex_state = 0, .external_lex_state = 8}, [9735] = {.lex_state = 0, .external_lex_state = 8}, [9736] = {.lex_state = 0, .external_lex_state = 8}, - [9737] = {.lex_state = 23, .external_lex_state = 8}, + [9737] = {.lex_state = 0, .external_lex_state = 8}, [9738] = {.lex_state = 0, .external_lex_state = 8}, - [9739] = {.lex_state = 23, .external_lex_state = 8}, + [9739] = {.lex_state = 0, .external_lex_state = 8}, [9740] = {.lex_state = 0, .external_lex_state = 8}, [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 = 0, .external_lex_state = 8}, - [9746] = {.lex_state = 23, .external_lex_state = 8}, - [9747] = {.lex_state = 23, .external_lex_state = 8}, + [9746] = {.lex_state = 0, .external_lex_state = 8}, + [9747] = {.lex_state = 0, .external_lex_state = 8}, [9748] = {.lex_state = 0, .external_lex_state = 8}, [9749] = {.lex_state = 0, .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 = 318, .external_lex_state = 8}, + [9751] = {.lex_state = 22, .external_lex_state = 8}, + [9752] = {.lex_state = 22, .external_lex_state = 8}, + [9753] = {.lex_state = 321, .external_lex_state = 8}, + [9754] = {.lex_state = 22, .external_lex_state = 8}, + [9755] = {.lex_state = 0, .external_lex_state = 8}, [9756] = {.lex_state = 0, .external_lex_state = 8}, - [9757] = {.lex_state = 23, .external_lex_state = 8}, + [9757] = {.lex_state = 0, .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}, + [9763] = {.lex_state = 321, .external_lex_state = 8}, + [9764] = {.lex_state = 0, .external_lex_state = 8}, [9765] = {.lex_state = 0, .external_lex_state = 8}, - [9766] = {.lex_state = 0, .external_lex_state = 8}, + [9766] = {.lex_state = 22, .external_lex_state = 8}, [9767] = {.lex_state = 0, .external_lex_state = 8}, [9768] = {.lex_state = 0, .external_lex_state = 8}, [9769] = {.lex_state = 0, .external_lex_state = 8}, @@ -33255,56 +29893,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9774] = {.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}, + [9777] = {.lex_state = 22, .external_lex_state = 8}, + [9778] = {.lex_state = 22, .external_lex_state = 8}, + [9779] = {.lex_state = 22, .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 = 0, .external_lex_state = 8}, - [9784] = {.lex_state = 0, .external_lex_state = 8}, + [9781] = {.lex_state = 0, .external_lex_state = 8}, + [9782] = {.lex_state = 0, .external_lex_state = 8}, + [9783] = {.lex_state = 22, .external_lex_state = 8}, + [9784] = {.lex_state = 22, .external_lex_state = 8}, [9785] = {.lex_state = 0, .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}, + [9788] = {.lex_state = 22, .external_lex_state = 8}, + [9789] = {.lex_state = 0, .external_lex_state = 8}, + [9790] = {.lex_state = 22, .external_lex_state = 8}, + [9791] = {.lex_state = 22, .external_lex_state = 8}, + [9792] = {.lex_state = 0, .external_lex_state = 8}, [9793] = {.lex_state = 0, .external_lex_state = 8}, - [9794] = {.lex_state = 0, .external_lex_state = 8}, + [9794] = {.lex_state = 22, .external_lex_state = 8}, [9795] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [9799] = {.lex_state = 22, .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 = 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}, + [9802] = {.lex_state = 22, .external_lex_state = 8}, + [9803] = {.lex_state = 0, .external_lex_state = 9}, + [9804] = {.lex_state = 0, .external_lex_state = 9}, + [9805] = {.lex_state = 0, .external_lex_state = 9}, + [9806] = {.lex_state = 0, .external_lex_state = 8}, + [9807] = {.lex_state = 22, .external_lex_state = 8}, + [9808] = {.lex_state = 22, .external_lex_state = 8}, + [9809] = {.lex_state = 0, .external_lex_state = 8}, [9810] = {.lex_state = 0, .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}, + [9811] = {.lex_state = 22, .external_lex_state = 8}, + [9812] = {.lex_state = 0, .external_lex_state = 8}, + [9813] = {.lex_state = 22, .external_lex_state = 8}, + [9814] = {.lex_state = 0, .external_lex_state = 8}, [9815] = {.lex_state = 0, .external_lex_state = 8}, - [9816] = {.lex_state = 23, .external_lex_state = 8}, + [9816] = {.lex_state = 0, .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}, + [9819] = {.lex_state = 0, .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}, + [9821] = {.lex_state = 0, .external_lex_state = 8}, + [9822] = {.lex_state = 22, .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 = 318, .external_lex_state = 8}, + [9825] = {.lex_state = 22, .external_lex_state = 8}, + [9826] = {.lex_state = 0, .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}, @@ -33312,111 +29950,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 9}, + [9834] = {.lex_state = 0, .external_lex_state = 8}, [9835] = {.lex_state = 0, .external_lex_state = 8}, - [9836] = {.lex_state = 0, .external_lex_state = 8}, - [9837] = {.lex_state = 30, .external_lex_state = 8}, + [9836] = {.lex_state = 22, .external_lex_state = 8}, + [9837] = {.lex_state = 0, .external_lex_state = 8}, [9838] = {.lex_state = 0, .external_lex_state = 8}, - [9839] = {.lex_state = 23, .external_lex_state = 8}, + [9839] = {.lex_state = 0, .external_lex_state = 8}, [9840] = {.lex_state = 0, .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}, + [9843] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, + [9848] = {.lex_state = 22, .external_lex_state = 8}, + [9849] = {.lex_state = 0, .external_lex_state = 8}, [9850] = {.lex_state = 0, .external_lex_state = 8}, - [9851] = {.lex_state = 23, .external_lex_state = 8}, + [9851] = {.lex_state = 22, .external_lex_state = 8}, [9852] = {.lex_state = 0, .external_lex_state = 8}, - [9853] = {.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}, + [9853] = {.lex_state = 0, .external_lex_state = 8}, + [9854] = {.lex_state = 0, .external_lex_state = 8}, + [9855] = {.lex_state = 22, .external_lex_state = 8}, + [9856] = {.lex_state = 22, .external_lex_state = 8}, + [9857] = {.lex_state = 22, .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}, + [9861] = {.lex_state = 22, .external_lex_state = 8}, + [9862] = {.lex_state = 22, .external_lex_state = 8}, [9863] = {.lex_state = 0, .external_lex_state = 8}, - [9864] = {.lex_state = 23, .external_lex_state = 8}, + [9864] = {.lex_state = 22, .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}, + [9868] = {.lex_state = 22, .external_lex_state = 8}, [9869] = {.lex_state = 0, .external_lex_state = 8}, - [9870] = {.lex_state = 23, .external_lex_state = 8}, + [9870] = {.lex_state = 0, .external_lex_state = 8}, [9871] = {.lex_state = 0, .external_lex_state = 8}, [9872] = {.lex_state = 0, .external_lex_state = 8}, - [9873] = {.lex_state = 0, .external_lex_state = 9}, - [9874] = {.lex_state = 23, .external_lex_state = 8}, + [9873] = {.lex_state = 0, .external_lex_state = 8}, + [9874] = {.lex_state = 22, .external_lex_state = 8}, [9875] = {.lex_state = 0, .external_lex_state = 8}, - [9876] = {.lex_state = 23, .external_lex_state = 8}, + [9876] = {.lex_state = 0, .external_lex_state = 8}, [9877] = {.lex_state = 0, .external_lex_state = 8}, - [9878] = {.lex_state = 0, .external_lex_state = 8}, - [9879] = {.lex_state = 23, .external_lex_state = 8}, - [9880] = {.lex_state = 0, .external_lex_state = 8}, + [9878] = {.lex_state = 22, .external_lex_state = 8}, + [9879] = {.lex_state = 22, .external_lex_state = 8}, + [9880] = {.lex_state = 22, .external_lex_state = 8}, [9881] = {.lex_state = 0, .external_lex_state = 8}, - [9882] = {.lex_state = 23, .external_lex_state = 8}, + [9882] = {.lex_state = 0, .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}, [9886] = {.lex_state = 0, .external_lex_state = 8}, - [9887] = {.lex_state = 0, .external_lex_state = 8}, - [9888] = {.lex_state = 0, .external_lex_state = 8}, + [9887] = {.lex_state = 22, .external_lex_state = 8}, + [9888] = {.lex_state = 22, .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 = 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 = 0, .external_lex_state = 9}, + [9891] = {.lex_state = 22, .external_lex_state = 8}, + [9892] = {.lex_state = 22, .external_lex_state = 8}, + [9893] = {.lex_state = 22, .external_lex_state = 8}, + [9894] = {.lex_state = 22, .external_lex_state = 8}, + [9895] = {.lex_state = 22, .external_lex_state = 8}, [9896] = {.lex_state = 0, .external_lex_state = 8}, - [9897] = {.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}, + [9897] = {.lex_state = 0, .external_lex_state = 8}, + [9898] = {.lex_state = 0, .external_lex_state = 8}, + [9899] = {.lex_state = 0, .external_lex_state = 8}, + [9900] = {.lex_state = 22, .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 = 0, .external_lex_state = 8}, + [9902] = {.lex_state = 22, .external_lex_state = 8}, + [9903] = {.lex_state = 22, .external_lex_state = 8}, + [9904] = {.lex_state = 22, .external_lex_state = 8}, [9905] = {.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 = 23, .external_lex_state = 8}, + [9906] = {.lex_state = 0, .external_lex_state = 8}, + [9907] = {.lex_state = 22, .external_lex_state = 8}, + [9908] = {.lex_state = 22, .external_lex_state = 8}, + [9909] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9915] = {.lex_state = 23, .external_lex_state = 8}, - [9916] = {.lex_state = 0, .external_lex_state = 8}, + [9913] = {.lex_state = 22, .external_lex_state = 8}, + [9914] = {.lex_state = 22, .external_lex_state = 8}, + [9915] = {.lex_state = 22, .external_lex_state = 8}, + [9916] = {.lex_state = 22, .external_lex_state = 8}, [9917] = {.lex_state = 0, .external_lex_state = 8}, [9918] = {.lex_state = 0, .external_lex_state = 8}, - [9919] = {.lex_state = 0, .external_lex_state = 8}, + [9919] = {.lex_state = 22, .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}, + [9921] = {.lex_state = 22, .external_lex_state = 8}, + [9922] = {.lex_state = 22, .external_lex_state = 8}, + [9923] = {.lex_state = 321, .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}, + [9925] = {.lex_state = 22, .external_lex_state = 8}, + [9926] = {.lex_state = 0, .external_lex_state = 8}, + [9927] = {.lex_state = 22, .external_lex_state = 8}, [9928] = {.lex_state = 0, .external_lex_state = 8}, - [9929] = {.lex_state = 0, .external_lex_state = 8}, + [9929] = {.lex_state = 22, .external_lex_state = 8}, [9930] = {.lex_state = 0, .external_lex_state = 8}, [9931] = {.lex_state = 0, .external_lex_state = 8}, - [9932] = {.lex_state = 0, .external_lex_state = 8}, + [9932] = {.lex_state = 22, .external_lex_state = 8}, [9933] = {.lex_state = 0, .external_lex_state = 8}, - [9934] = {.lex_state = 0, .external_lex_state = 8}, + [9934] = {.lex_state = 22, .external_lex_state = 8}, [9935] = {.lex_state = 0, .external_lex_state = 8}, [9936] = {.lex_state = 0, .external_lex_state = 8}, [9937] = {.lex_state = 0, .external_lex_state = 8}, - [9938] = {.lex_state = 0, .external_lex_state = 8}, + [9938] = {.lex_state = 22, .external_lex_state = 8}, [9939] = {.lex_state = 0, .external_lex_state = 8}, [9940] = {.lex_state = 0, .external_lex_state = 8}, [9941] = {.lex_state = 0, .external_lex_state = 8}, @@ -33435,203 +30073,208 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9954] = {.lex_state = 0, .external_lex_state = 8}, [9955] = {.lex_state = 0, .external_lex_state = 8}, [9956] = {.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 = 0, .external_lex_state = 8}, + [9957] = {.lex_state = 0, .external_lex_state = 8}, + [9958] = {.lex_state = 0, .external_lex_state = 8}, + [9959] = {.lex_state = 0, .external_lex_state = 8}, + [9960] = {.lex_state = 22, .external_lex_state = 8}, + [9961] = {.lex_state = 22, .external_lex_state = 8}, + [9962] = {.lex_state = 22, .external_lex_state = 8}, [9963] = {.lex_state = 0, .external_lex_state = 8}, [9964] = {.lex_state = 0, .external_lex_state = 8}, - [9965] = {.lex_state = 23, .external_lex_state = 8}, + [9965] = {.lex_state = 0, .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}, + [9967] = {.lex_state = 22, .external_lex_state = 8}, + [9968] = {.lex_state = 0, .external_lex_state = 8}, [9969] = {.lex_state = 0, .external_lex_state = 8}, [9970] = {.lex_state = 0, .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}, + [9971] = {.lex_state = 0, .external_lex_state = 8}, + [9972] = {.lex_state = 22, .external_lex_state = 8}, + [9973] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9980] = {.lex_state = 23, .external_lex_state = 8}, - [9981] = {.lex_state = 23, .external_lex_state = 8}, + [9979] = {.lex_state = 22, .external_lex_state = 8}, + [9980] = {.lex_state = 22, .external_lex_state = 8}, + [9981] = {.lex_state = 0, .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 = 9}, - [9985] = {.lex_state = 23, .external_lex_state = 8}, + [9983] = {.lex_state = 32, .external_lex_state = 8}, + [9984] = {.lex_state = 0, .external_lex_state = 8}, + [9985] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [9996] = {.lex_state = 23, .external_lex_state = 8}, + [9987] = {.lex_state = 0, .external_lex_state = 8}, + [9988] = {.lex_state = 22, .external_lex_state = 8}, + [9989] = {.lex_state = 0, .external_lex_state = 8}, + [9990] = {.lex_state = 0, .external_lex_state = 8}, + [9991] = {.lex_state = 22, .external_lex_state = 8}, + [9992] = {.lex_state = 0, .external_lex_state = 8}, + [9993] = {.lex_state = 0, .external_lex_state = 8}, + [9994] = {.lex_state = 22, .external_lex_state = 8}, + [9995] = {.lex_state = 0, .external_lex_state = 8}, + [9996] = {.lex_state = 22, .external_lex_state = 8}, [9997] = {.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 = 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}, + [9998] = {.lex_state = 0, .external_lex_state = 8}, + [9999] = {.lex_state = 22, .external_lex_state = 8}, + [10000] = {.lex_state = 0, .external_lex_state = 8}, + [10001] = {.lex_state = 22, .external_lex_state = 8}, + [10002] = {.lex_state = 22, .external_lex_state = 8}, + [10003] = {.lex_state = 22, .external_lex_state = 8}, [10004] = {.lex_state = 0, .external_lex_state = 8}, - [10005] = {.lex_state = 23, .external_lex_state = 8}, + [10005] = {.lex_state = 0, .external_lex_state = 8}, [10006] = {.lex_state = 0, .external_lex_state = 8}, - [10007] = {.lex_state = 23, .external_lex_state = 8}, + [10007] = {.lex_state = 22, .external_lex_state = 8}, [10008] = {.lex_state = 0, .external_lex_state = 8}, [10009] = {.lex_state = 0, .external_lex_state = 8}, [10010] = {.lex_state = 0, .external_lex_state = 8}, - [10011] = {.lex_state = 23, .external_lex_state = 8}, + [10011] = {.lex_state = 0, .external_lex_state = 8}, [10012] = {.lex_state = 0, .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}, + [10013] = {.lex_state = 0, .external_lex_state = 8}, + [10014] = {.lex_state = 0, .external_lex_state = 8}, + [10015] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [10020] = {.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}, + [10017] = {.lex_state = 22, .external_lex_state = 8}, + [10018] = {.lex_state = 22, .external_lex_state = 8}, + [10019] = {.lex_state = 0, .external_lex_state = 8}, + [10020] = {.lex_state = 22, .external_lex_state = 8}, + [10021] = {.lex_state = 0, .external_lex_state = 8}, + [10022] = {.lex_state = 22, .external_lex_state = 8}, + [10023] = {.lex_state = 22, .external_lex_state = 8}, + [10024] = {.lex_state = 22, .external_lex_state = 8}, [10025] = {.lex_state = 0, .external_lex_state = 8}, - [10026] = {.lex_state = 23, .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}, + [10026] = {.lex_state = 22, .external_lex_state = 8}, + [10027] = {.lex_state = 22, .external_lex_state = 8}, + [10028] = {.lex_state = 22, .external_lex_state = 8}, + [10029] = {.lex_state = 0, .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}, - [10033] = {.lex_state = 23, .external_lex_state = 8}, + [10031] = {.lex_state = 22, .external_lex_state = 8}, + [10032] = {.lex_state = 22, .external_lex_state = 8}, + [10033] = {.lex_state = 0, .external_lex_state = 8}, [10034] = {.lex_state = 0, .external_lex_state = 8}, - [10035] = {.lex_state = 23, .external_lex_state = 8}, - [10036] = {.lex_state = 0, .external_lex_state = 8}, + [10035] = {.lex_state = 0, .external_lex_state = 8}, + [10036] = {.lex_state = 22, .external_lex_state = 8}, [10037] = {.lex_state = 0, .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 = 23, .external_lex_state = 8}, - [10043] = {.lex_state = 0, .external_lex_state = 8}, + [10040] = {.lex_state = 0, .external_lex_state = 8}, + [10041] = {.lex_state = 22, .external_lex_state = 8}, + [10042] = {.lex_state = 0, .external_lex_state = 8}, + [10043] = {.lex_state = 22, .external_lex_state = 8}, [10044] = {.lex_state = 0, .external_lex_state = 8}, - [10045] = {.lex_state = 23, .external_lex_state = 8}, + [10045] = {.lex_state = 22, .external_lex_state = 8}, [10046] = {.lex_state = 0, .external_lex_state = 8}, [10047] = {.lex_state = 0, .external_lex_state = 8}, - [10048] = {.lex_state = 23, .external_lex_state = 8}, + [10048] = {.lex_state = 22, .external_lex_state = 8}, [10049] = {.lex_state = 0, .external_lex_state = 8}, [10050] = {.lex_state = 0, .external_lex_state = 8}, - [10051] = {.lex_state = 23, .external_lex_state = 8}, - [10052] = {.lex_state = 23, .external_lex_state = 8}, + [10051] = {.lex_state = 0, .external_lex_state = 8}, + [10052] = {.lex_state = 22, .external_lex_state = 8}, [10053] = {.lex_state = 0, .external_lex_state = 8}, - [10054] = {.lex_state = 0, .external_lex_state = 8}, - [10055] = {.lex_state = 23, .external_lex_state = 8}, + [10054] = {.lex_state = 22, .external_lex_state = 8}, + [10055] = {.lex_state = 0, .external_lex_state = 8}, [10056] = {.lex_state = 0, .external_lex_state = 8}, - [10057] = {.lex_state = 0, .external_lex_state = 8}, - [10058] = {.lex_state = 23, .external_lex_state = 8}, + [10057] = {.lex_state = 22, .external_lex_state = 8}, + [10058] = {.lex_state = 0, .external_lex_state = 8}, [10059] = {.lex_state = 0, .external_lex_state = 8}, [10060] = {.lex_state = 0, .external_lex_state = 8}, - [10061] = {.lex_state = 23, .external_lex_state = 8}, - [10062] = {.lex_state = 23, .external_lex_state = 8}, + [10061] = {.lex_state = 0, .external_lex_state = 8}, + [10062] = {.lex_state = 22, .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 = 0, .external_lex_state = 8}, - [10067] = {.lex_state = 0, .external_lex_state = 8}, + [10065] = {.lex_state = 22, .external_lex_state = 8}, + [10066] = {.lex_state = 22, .external_lex_state = 8}, + [10067] = {.lex_state = 22, .external_lex_state = 8}, [10068] = {.lex_state = 0, .external_lex_state = 8}, - [10069] = {.lex_state = 0, .external_lex_state = 8}, + [10069] = {.lex_state = 22, .external_lex_state = 8}, [10070] = {.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 = 0, .external_lex_state = 8}, + [10071] = {.lex_state = 0, .external_lex_state = 8}, + [10072] = {.lex_state = 22, .external_lex_state = 8}, + [10073] = {.lex_state = 22, .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}, + [10076] = {.lex_state = 0, .external_lex_state = 8}, + [10077] = {.lex_state = 22, .external_lex_state = 8}, + [10078] = {.lex_state = 22, .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}, + [10080] = {.lex_state = 22, .external_lex_state = 8}, + [10081] = {.lex_state = 22, .external_lex_state = 8}, [10082] = {.lex_state = 0, .external_lex_state = 8}, [10083] = {.lex_state = 0, .external_lex_state = 8}, - [10084] = {.lex_state = 23, .external_lex_state = 8}, - [10085] = {.lex_state = 23, .external_lex_state = 8}, + [10084] = {.lex_state = 0, .external_lex_state = 8}, + [10085] = {.lex_state = 0, .external_lex_state = 8}, [10086] = {.lex_state = 0, .external_lex_state = 8}, [10087] = {.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}, + [10089] = {.lex_state = 22, .external_lex_state = 8}, + [10090] = {.lex_state = 22, .external_lex_state = 8}, + [10091] = {.lex_state = 22, .external_lex_state = 8}, [10092] = {.lex_state = 0, .external_lex_state = 8}, - [10093] = {.lex_state = 0, .external_lex_state = 8}, - [10094] = {.lex_state = 23, .external_lex_state = 8}, - [10095] = {.lex_state = 23, .external_lex_state = 8}, + [10093] = {.lex_state = 22, .external_lex_state = 8}, + [10094] = {.lex_state = 0, .external_lex_state = 8}, + [10095] = {.lex_state = 22, .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 = 23, .external_lex_state = 8}, - [10100] = {.lex_state = 0, .external_lex_state = 8}, - [10101] = {.lex_state = 0, .external_lex_state = 8}, - [10102] = {.lex_state = 23, .external_lex_state = 8}, - [10103] = {.lex_state = 23, .external_lex_state = 8}, + [10097] = {.lex_state = 22, .external_lex_state = 8}, + [10098] = {.lex_state = 22, .external_lex_state = 8}, + [10099] = {.lex_state = 0, .external_lex_state = 8}, + [10100] = {.lex_state = 22, .external_lex_state = 8}, + [10101] = {.lex_state = 22, .external_lex_state = 8}, + [10102] = {.lex_state = 22, .external_lex_state = 8}, + [10103] = {.lex_state = 0, .external_lex_state = 8}, [10104] = {.lex_state = 0, .external_lex_state = 8}, [10105] = {.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}, + [10106] = {.lex_state = 22, .external_lex_state = 8}, + [10107] = {.lex_state = 22, .external_lex_state = 8}, + [10108] = {.lex_state = 22, .external_lex_state = 8}, [10109] = {.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 = 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 = 23, .external_lex_state = 8}, - [10117] = {.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 = 23, .external_lex_state = 8}, + [10110] = {.lex_state = 22, .external_lex_state = 8}, + [10111] = {.lex_state = 22, .external_lex_state = 8}, + [10112] = {.lex_state = 22, .external_lex_state = 8}, + [10113] = {.lex_state = 22, .external_lex_state = 8}, + [10114] = {.lex_state = 22, .external_lex_state = 8}, + [10115] = {.lex_state = 22, .external_lex_state = 8}, + [10116] = {.lex_state = 22, .external_lex_state = 8}, + [10117] = {.lex_state = 22, .external_lex_state = 8}, + [10118] = {.lex_state = 22, .external_lex_state = 8}, + [10119] = {.lex_state = 22, .external_lex_state = 8}, + [10120] = {.lex_state = 22, .external_lex_state = 8}, + [10121] = {.lex_state = 22, .external_lex_state = 8}, + [10122] = {.lex_state = 0, .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 = 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 = 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 = 23, .external_lex_state = 8}, - [10138] = {.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 = 23, .external_lex_state = 8}, - [10142] = {.lex_state = 23, .external_lex_state = 8}, + [10124] = {.lex_state = 22, .external_lex_state = 8}, + [10125] = {.lex_state = 22, .external_lex_state = 8}, + [10126] = {.lex_state = 0, .external_lex_state = 8}, + [10127] = {.lex_state = 0, .external_lex_state = 8}, + [10128] = {.lex_state = 22, .external_lex_state = 8}, + [10129] = {.lex_state = 22, .external_lex_state = 8}, + [10130] = {.lex_state = 0, .external_lex_state = 8}, + [10131] = {.lex_state = 0, .external_lex_state = 8}, + [10132] = {.lex_state = 22, .external_lex_state = 8}, + [10133] = {.lex_state = 22, .external_lex_state = 8}, + [10134] = {.lex_state = 22, .external_lex_state = 8}, + [10135] = {.lex_state = 22, .external_lex_state = 8}, + [10136] = {.lex_state = 22, .external_lex_state = 8}, + [10137] = {.lex_state = 22, .external_lex_state = 8}, + [10138] = {.lex_state = 22, .external_lex_state = 8}, + [10139] = {.lex_state = 22, .external_lex_state = 8}, + [10140] = {.lex_state = 22, .external_lex_state = 8}, + [10141] = {.lex_state = 22, .external_lex_state = 8}, + [10142] = {.lex_state = 22, .external_lex_state = 8}, [10143] = {.lex_state = 0, .external_lex_state = 8}, - [10144] = {.lex_state = 0, .external_lex_state = 8}, + [10144] = {.lex_state = 22, .external_lex_state = 8}, [10145] = {.lex_state = 0, .external_lex_state = 8}, [10146] = {.lex_state = 0, .external_lex_state = 8}, - [10147] = {.lex_state = 23, .external_lex_state = 8}, + [10147] = {.lex_state = 22, .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}, + [10150] = {.lex_state = 22, .external_lex_state = 8}, [10151] = {.lex_state = 0, .external_lex_state = 8}, - [10152] = {.lex_state = 23, .external_lex_state = 8}, - [10153] = {.lex_state = 322, .external_lex_state = 8}, + [10152] = {.lex_state = 22, .external_lex_state = 8}, + [10153] = {.lex_state = 0, .external_lex_state = 8}, + [10154] = {.lex_state = 0, .external_lex_state = 8}, + [10155] = {.lex_state = 0, .external_lex_state = 8}, + [10156] = {.lex_state = 22, .external_lex_state = 8}, + [10157] = {.lex_state = 0, .external_lex_state = 8}, + [10158] = {.lex_state = 325, .external_lex_state = 8}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -33646,7 +30289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_package] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), - [anon_sym_DOT_STAR] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [sym_wildcard_import] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), [anon_sym_typealias] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -33669,7 +30313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), [anon_sym_set] = ACTIONS(1), @@ -33787,66 +30430,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(10057), - [sym_shebang_line] = STATE(53), + [sym_source_file] = STATE(10064), + [sym_shebang_line] = STATE(54), [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_package_header] = STATE(60), + [sym_import_list] = STATE(66), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -33855,25 +30498,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), [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_source_file_repeat2] = STATE(66), + [aux_sym_source_file_repeat3] = STATE(221), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [ts_builtin_sym_end] = ACTIONS(5), [sym__alpha_identifier] = ACTIONS(7), @@ -33959,62 +30602,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [2] = { - [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_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3593), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -34023,26 +30666,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [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_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(123), @@ -34061,7 +30705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(123), [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), [anon_sym_set] = ACTIONS(143), @@ -34156,62 +30799,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(205), }, [3] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4823), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -34220,64 +30863,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(217), + [anon_sym_interface] = ACTIONS(217), + [anon_sym_enum] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(211), + [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(211), + [sym_label] = ACTIONS(241), + [anon_sym_for] = ACTIONS(243), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(245), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(213), + [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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [4] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3505), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [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(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [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(207), - [anon_sym_as] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_class] = ACTIONS(127), [anon_sym_interface] = ACTIONS(127), [anon_sym_enum] = ACTIONS(129), [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_RBRACE] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), [anon_sym_object] = ACTIONS(137), [anon_sym_fun] = ACTIONS(139), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(141), [anon_sym_set] = ACTIONS(143), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(149), - [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DASH_GT] = ACTIONS(211), [sym_label] = ACTIONS(151), [anon_sym_for] = ACTIONS(153), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(213), [anon_sym_while] = ACTIONS(155), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(159), [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(209), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(167), @@ -34285,29 +31125,29 @@ 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_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_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(175), [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), [anon_sym_PLUS_PLUS] = ACTIONS(177), [anon_sym_DASH_DASH] = ACTIONS(177), [anon_sym_BANG] = ACTIONS(175), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -34348,67 +31188,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [4] = { - [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), + [5] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -34417,94 +31257,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [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_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(297), + [anon_sym_DOT] = ACTIONS(299), + [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(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_COMMA] = ACTIONS(297), + [anon_sym_RPAREN] = 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_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(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_STAR] = ACTIONS(321), + [anon_sym_DASH_GT] = ACTIONS(297), + [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(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_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_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), @@ -34537,7 +31377,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), @@ -34545,47 +31385,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(289), [anon_sym_SQUOTE] = ACTIONS(291), [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(297), [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), + [6] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4862), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -34602,10 +31442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -34614,64 +31454,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(209), + [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(207), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), [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_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(209), - [anon_sym_SEMI] = ACTIONS(207), + [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(207), + [anon_sym_DASH_GT] = ACTIONS(121), [sym_label] = ACTIONS(241), [anon_sym_for] = ACTIONS(243), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(245), [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_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(209), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(257), @@ -34679,29 +31519,29 @@ 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_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_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(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), + [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(207), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -34742,264 +31582,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(295), - }, - [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(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_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_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_RPAREN] = 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), - [anon_sym_DASH_GT] = ACTIONS(297), - [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(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_safe_nav] = ACTIONS(297), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5098), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -35008,44 +31651,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [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_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(213), [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_RBRACE] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), [anon_sym_object] = ACTIONS(355), [anon_sym_fun] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(359), [anon_sym_set] = ACTIONS(361), [anon_sym_this] = ACTIONS(39), @@ -35053,16 +31696,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(363), [sym_label] = ACTIONS(365), [anon_sym_for] = ACTIONS(367), - [anon_sym_in] = ACTIONS(123), + [anon_sym_in] = ACTIONS(213), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(373), [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(123), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(377), @@ -35070,29 +31713,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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -35133,68 +31776,68 @@ 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(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [8] = { - [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3121), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -35203,25 +31846,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(391), [anon_sym_EQ] = ACTIONS(123), @@ -35239,7 +31883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -35315,276 +31958,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, [9] = { - [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(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(389), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(209), - [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(399), - [anon_sym_COMMA] = ACTIONS(207), - [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(403), - [anon_sym_fun] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(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(425), - [anon_sym_if] = ACTIONS(427), - [anon_sym_else] = ACTIONS(209), - [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), - [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(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(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(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(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), - }, - [10] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3860), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -35593,68 +32041,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(477), + [anon_sym_typealias] = ACTIONS(475), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(479), - [anon_sym_interface] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(487), - [anon_sym_var] = ACTIONS(487), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(489), - [anon_sym_fun] = ACTIONS(491), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), [anon_sym_SEMI] = ACTIONS(121), - [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_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(507), - [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), [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(511), - [anon_sym_if] = ACTIONS(513), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), [anon_sym_else] = ACTIONS(123), - [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_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -35669,21 +32117,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(527), - [anon_sym_DASH] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(527), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(525), [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35702,10 +32150,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -35723,453 +32171,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [11] = { - [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(559), - [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(123), - [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(569), - [anon_sym_COMMA] = ACTIONS(121), - [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(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [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(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(595), - [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_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(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(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(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__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [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), + [10] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1139), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -36178,44 +32236,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [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(209), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(213), [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_RBRACE] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), [anon_sym_object] = ACTIONS(573), [anon_sym_fun] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(577), [anon_sym_set] = ACTIONS(579), [anon_sym_this] = ACTIONS(581), @@ -36223,16 +32281,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(585), [sym_label] = ACTIONS(587), [anon_sym_for] = ACTIONS(589), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(213), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(595), [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(209), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), [anon_sym_throw] = ACTIONS(603), @@ -36240,29 +32298,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -36290,7 +32348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(619), [anon_sym_break_AT] = ACTIONS(621), [anon_sym_this_AT] = ACTIONS(623), @@ -36303,68 +32361,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [11] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -36373,25 +32431,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(299), [anon_sym_as] = ACTIONS(299), [anon_sym_typealias] = ACTIONS(301), [anon_sym_EQ] = ACTIONS(299), @@ -36409,7 +32468,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -36503,63 +32561,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [12] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5194), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -36568,44 +32626,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [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_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(123), [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_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(121), [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_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), [anon_sym_object] = ACTIONS(355), [anon_sym_fun] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(359), [anon_sym_set] = ACTIONS(361), [anon_sym_this] = ACTIONS(39), @@ -36613,16 +32671,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(363), [sym_label] = ACTIONS(365), [anon_sym_for] = ACTIONS(367), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(123), [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_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(373), [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(209), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(377), @@ -36630,222 +32688,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(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_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(381), [anon_sym_DASH] = ACTIONS(381), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), [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), - [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__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [16] = { - [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(209), - [anon_sym_typealias] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [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), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_in] = ACTIONS(209), - [anon_sym_while] = ACTIONS(661), - [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(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_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(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(207), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -36886,68 +32751,68 @@ 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__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [17] = { - [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), + [13] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3942), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -36956,96 +32821,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_RBRACE] = ACTIONS(207), - [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(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(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(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(333), - [anon_sym_else] = ACTIONS(209), - [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), - [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(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(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(525), + [anon_sym_BANG_BANG] = ACTIONS(211), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37064,83 +32930,84 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(555), }, - [18] = { - [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), + [14] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -37149,67 +33016,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_typealias] = ACTIONS(561), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(221), + [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(223), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [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_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(687), - [anon_sym_do] = ACTIONS(247), + [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(249), - [anon_sym_if] = ACTIONS(333), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), [anon_sym_else] = ACTIONS(123), - [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_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), @@ -37224,21 +33092,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(689), - [anon_sym_DASH] = ACTIONS(689), + [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(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), + [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(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), @@ -37257,276 +33125,84 @@ static const uint16_t ts_parse_table[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(533), + [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(295), - }, - [19] = { - [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(559), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(209), - [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(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(699), - [anon_sym_fun] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(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(595), - [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_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(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(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(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__automatic_semicolon] = ACTIONS(207), - [sym_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [15] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -37535,95 +33211,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(387), [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(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(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(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(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(511), - [anon_sym_if] = ACTIONS(747), - [anon_sym_else] = ACTIONS(209), - [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), - [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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(393), + [anon_sym_interface] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(211), + [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(213), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(213), + [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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(211), [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_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), @@ -37642,84 +33320,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [16] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3121), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -37728,66 +33406,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(477), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(725), - [anon_sym_interface] = ACTIONS(725), - [anon_sym_enum] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(397), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_val] = ACTIONS(729), - [anon_sym_var] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(731), - [anon_sym_fun] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), [anon_sym_SEMI] = ACTIONS(121), - [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_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(745), - [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(661), + [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(511), - [anon_sym_if] = ACTIONS(747), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), [anon_sym_else] = ACTIONS(123), - [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_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [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), @@ -37802,21 +33480,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(753), - [anon_sym_DASH] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), [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_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(669), [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -37835,84 +33513,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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), + [17] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3505), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -37921,90 +33599,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(349), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), [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), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [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(209), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [anon_sym_typealias] = ACTIONS(125), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_RBRACE] = ACTIONS(211), [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(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), [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(777), + [anon_sym_STAR] = ACTIONS(687), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(693), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(209), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), - [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(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(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), + [anon_sym_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -38045,67 +33723,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [18] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -38114,64 +33792,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(669), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [19] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3593), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), [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), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(125), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), + [anon_sym_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), [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_STAR] = ACTIONS(687), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(777), + [anon_sym_while] = ACTIONS(693), [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_if] = ACTIONS(695), [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_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [anon_sym_continue] = ACTIONS(171), [anon_sym_break] = ACTIONS(171), [anon_sym_COLON_COLON] = ACTIONS(173), @@ -38189,14 +34060,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(785), - [anon_sym_DASH] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), [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(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -38242,63 +34113,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [20] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -38307,63 +34178,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(123), [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_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), [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_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), [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_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(703), - [anon_sym_set] = ACTIONS(705), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), [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_STAR] = ACTIONS(719), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(713), + [anon_sym_while] = ACTIONS(725), [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(595), - [anon_sym_if] = ACTIONS(715), + [anon_sym_if] = ACTIONS(727), [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_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [anon_sym_continue] = ACTIONS(607), [anon_sym_break] = ACTIONS(607), [anon_sym_COLON_COLON] = ACTIONS(609), @@ -38381,14 +34252,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(721), - [anon_sym_DASH] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_BANG] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(733), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -38417,7 +34288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(619), [anon_sym_break_AT] = ACTIONS(621), [anon_sym_this_AT] = ACTIONS(623), @@ -38435,63 +34306,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [25] = { - [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), + [21] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5194), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -38500,51 +34371,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(345), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), + [anon_sym_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), [anon_sym_LBRACE] = ACTIONS(351), [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), + [anon_sym_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), [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_STAR] = ACTIONS(751), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(661), + [anon_sym_while] = ACTIONS(757), [anon_sym_do] = ACTIONS(371), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), @@ -38574,14 +34445,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(663), - [anon_sym_DASH] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(759), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -38628,63 +34499,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [26] = { - [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), + [22] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1139), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -38694,94 +34565,674 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(207), - [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(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(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(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(425), - [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_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_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(719), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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(533), + [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(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [23] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5098), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(751), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(757), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(213), + [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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [24] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3860), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [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(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [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(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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(555), + }, + [25] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4823), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(213), + [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(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(817), [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), [anon_sym_PLUS_PLUS] = ACTIONS(819), [anon_sym_DASH_DASH] = ACTIONS(819), [anon_sym_BANG] = ACTIONS(817), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_BANG_BANG] = ACTIONS(211), [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_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), @@ -38800,84 +35251,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [26] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3942), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [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(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(211), + [anon_sym_DASH_EQ] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(211), + [anon_sym_SLASH_EQ] = ACTIONS(211), + [anon_sym_PERCENT_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(213), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(211), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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(471), + [anon_sym_return_AT] = ACTIONS(533), + [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(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(555), }, [27] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4862), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -38886,66 +35529,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(391), + [anon_sym_typealias] = ACTIONS(215), [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_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(221), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), [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_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), [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_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(423), + [anon_sym_while] = ACTIONS(815), + [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(425), - [anon_sym_if] = ACTIONS(811), + [anon_sym_null] = ACTIONS(249), + [anon_sym_if] = ACTIONS(333), [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_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(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -38972,9 +35616,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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [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), @@ -38993,84 +35637,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(447), - [anon_sym_actual] = ACTIONS(447), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, [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_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3505), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -39079,63 +35722,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [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_RBRACK] = ACTIONS(121), - [anon_sym_as] = ACTIONS(123), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [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_RBRACE] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), [anon_sym_object] = ACTIONS(829), [anon_sym_fun] = ACTIONS(831), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(211), [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), + [anon_sym_DASH_GT] = ACTIONS(211), [sym_label] = ACTIONS(839), [anon_sym_for] = ACTIONS(841), - [anon_sym_in] = ACTIONS(123), + [anon_sym_in] = ACTIONS(213), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(845), [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(123), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(167), @@ -39143,24 +35786,24 @@ 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_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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -39201,258 +35844,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(211), [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_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(223), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(859), - [anon_sym_var] = ACTIONS(859), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [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(865), - [anon_sym_set] = ACTIONS(867), - [anon_sym_this] = ACTIONS(235), - [anon_sym_super] = ACTIONS(237), - [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(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(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(257), - [anon_sym_return] = ACTIONS(259), - [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), - [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(877), - [anon_sym_DASH] = ACTIONS(877), - [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_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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [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_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3593), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -39461,63 +35913,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [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_RBRACK] = ACTIONS(207), - [anon_sym_as] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [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(207), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), [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_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(209), - [anon_sym_SEMI] = ACTIONS(207), + [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(207), + [anon_sym_DASH_GT] = ACTIONS(121), [sym_label] = ACTIONS(839), [anon_sym_for] = ACTIONS(841), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(843), [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_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(209), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(167), @@ -39525,24 +35977,24 @@ 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_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_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(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), + [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(207), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -39583,67 +36035,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [30] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4862), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -39652,26 +36104,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), [anon_sym_class] = ACTIONS(853), @@ -39689,7 +36142,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(123), [anon_sym_object] = ACTIONS(861), [anon_sym_fun] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(865), [anon_sym_set] = ACTIONS(867), @@ -39778,63 +36230,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [31] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4823), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -39843,91 +36295,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_as] = ACTIONS(123), - [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(485), - [anon_sym_COMMA] = ACTIONS(121), - [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(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), - [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(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(905), - [anon_sym_if] = ACTIONS(513), - [anon_sym_else] = ACTIONS(123), - [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), - [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(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(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_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = 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_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(211), + [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), + [anon_sym_DASH_GT] = ACTIONS(211), + [sym_label] = ACTIONS(871), + [anon_sym_for] = ACTIONS(873), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(213), + [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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(295), + }, + [32] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3942), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [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(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39946,10 +36589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -39962,68 +36605,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40032,43 +36675,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [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(209), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [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_RBRACE] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(207), + [anon_sym_COMMA] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), [anon_sym_object] = ACTIONS(921), [anon_sym_fun] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(925), [anon_sym_set] = ACTIONS(927), [anon_sym_this] = ACTIONS(411), @@ -40076,16 +36719,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(929), [sym_label] = ACTIONS(931), [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(213), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(937), [anon_sym_if] = ACTIONS(427), - [anon_sym_else] = ACTIONS(209), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(433), @@ -40093,24 +36736,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -40138,81 +36781,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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(471), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40221,33 +36864,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(345), + [anon_sym_typealias] = ACTIONS(561), [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_LPAREN] = ACTIONS(569), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_val] = ACTIONS(951), [anon_sym_var] = ACTIONS(951), @@ -40256,32 +36900,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [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_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(53), - [anon_sym_if] = ACTIONS(375), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(597), [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_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), @@ -40291,21 +36934,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(971), + [anon_sym_DASH] = ACTIONS(971), [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(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(971), [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(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), @@ -40324,84 +36967,84 @@ static const uint16_t ts_parse_table[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_return_AT] = ACTIONS(533), + [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(975), + [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(113), + [sym__string_start] = ACTIONS(639), }, [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1139), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40410,60 +37053,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [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_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [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_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(211), [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_COMMA] = ACTIONS(211), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(967), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(969), [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(123), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), [anon_sym_throw] = ACTIONS(603), @@ -40471,24 +37114,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_BANG_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -40516,12 +37159,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -40529,68 +37172,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5098), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40599,91 +37242,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), [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), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_as] = ACTIONS(209), - [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(569), - [anon_sym_COMMA] = ACTIONS(207), - [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(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(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(997), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(209), - [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), - [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(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(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_where] = ACTIONS(213), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(999), + [anon_sym_do] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(213), + [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(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_BANG_BANG] = ACTIONS(211), [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_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), @@ -40702,84 +37345,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5194), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8299), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40788,60 +37431,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [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_DOT] = ACTIONS(123), + [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(207), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(207), - [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(953), - [anon_sym_fun] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), [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(209), - [anon_sym_while] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(999), [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_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(209), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(377), @@ -40849,24 +37492,24 @@ 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(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_BANG_BANG] = ACTIONS(207), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -40907,68 +37550,68 @@ 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__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3860), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), [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__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8312), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -40977,91 +37620,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(475), [anon_sym_class] = ACTIONS(881), [anon_sym_interface] = ACTIONS(881), [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_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(121), [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_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), [anon_sym_object] = ACTIONS(889), [anon_sym_fun] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(893), [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [anon_sym_STAR] = ACTIONS(897), [sym_label] = ACTIONS(899), [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(903), - [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_do] = ACTIONS(507), + [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_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_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(907), [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), [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_BANG_BANG] = ACTIONS(121), [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41080,10 +37723,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -41096,68 +37739,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3121), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -41166,25 +37809,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(391), [anon_sym_class] = ACTIONS(913), @@ -41201,7 +37845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(123), [anon_sym_object] = ACTIONS(921), [anon_sym_fun] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(123), [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(925), [anon_sym_set] = ACTIONS(927), @@ -41272,81 +37915,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1139), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -41355,89 +37998,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(561), [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_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_val] = ACTIONS(1009), [anon_sym_var] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), [anon_sym_object] = ACTIONS(1011), [anon_sym_fun] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(1015), [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(411), - [anon_sym_super] = ACTIONS(413), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(1019), [sym_label] = ACTIONS(1021), [anon_sym_for] = ACTIONS(1023), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(213), [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(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_do] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG_BANG] = ACTIONS(211), [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_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), @@ -41456,84 +38099,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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(471), + [anon_sym_return_AT] = ACTIONS(533), + [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(975), + [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(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3860), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -41542,65 +38185,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(477), + [anon_sym_typealias] = ACTIONS(475), [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(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_val] = ACTIONS(1035), [anon_sym_var] = ACTIONS(1035), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_object] = ACTIONS(1037), [anon_sym_fun] = 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(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [anon_sym_STAR] = ACTIONS(1045), [sym_label] = ACTIONS(1047), [anon_sym_for] = ACTIONS(1049), [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(509), + [anon_sym_do] = ACTIONS(507), [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_if] = ACTIONS(747), + [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(123), - [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_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -41622,9 +38265,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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41643,10 +38286,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -41665,62 +38308,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(555), }, [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5194), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -41729,41 +38372,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [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_DOT] = ACTIONS(123), + [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(207), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(121), [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_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), [anon_sym_object] = ACTIONS(1063), [anon_sym_fun] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(1067), [anon_sym_set] = ACTIONS(1069), [anon_sym_this] = ACTIONS(39), @@ -41771,16 +38414,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(1071), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(123), [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_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(209), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -41788,24 +38431,24 @@ 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_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(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), + [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(207), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -41846,68 +38489,68 @@ 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__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5098), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -41916,41 +38559,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [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_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), [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_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(211), [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_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), [anon_sym_object] = ACTIONS(1063), [anon_sym_fun] = ACTIONS(1065), - [anon_sym_DOT] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_get] = ACTIONS(1067), [anon_sym_set] = ACTIONS(1069), [anon_sym_this] = ACTIONS(39), @@ -41958,16 +38601,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(1071), - [anon_sym_in] = ACTIONS(123), + [anon_sym_in] = ACTIONS(213), [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_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(123), + [anon_sym_else] = ACTIONS(213), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -41975,24 +38618,24 @@ 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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), [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_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), [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_BANG] = ACTIONS(211), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -42033,68 +38676,68 @@ 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(211), + [sym_safe_nav] = ACTIONS(211), [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3156), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8320), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -42103,66 +38746,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(211), + [sym_safe_nav] = ACTIONS(211), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [45] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3121), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [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(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(125), + [anon_sym_typealias] = ACTIONS(391), [anon_sym_class] = ACTIONS(1075), [anon_sym_interface] = ACTIONS(1075), [anon_sym_enum] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(917), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(399), [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_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [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_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(845), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), [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_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [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), @@ -42184,6 +39013,194 @@ 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(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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [46] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3505), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_BANG_BANG] = ACTIONS(211), + [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), @@ -42221,67 +39238,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(211), [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), + [47] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4862), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -42290,51 +39307,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1101), - [anon_sym_interface] = ACTIONS(1101), - [anon_sym_enum] = ACTIONS(1103), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(1105), - [anon_sym_var] = ACTIONS(1105), + [anon_sym_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), - [anon_sym_object] = ACTIONS(1107), - [anon_sym_fun] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_get] = ACTIONS(1111), - [anon_sym_set] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1143), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1145), [anon_sym_do] = ACTIONS(247), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), @@ -42412,63 +39429,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [48] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3593), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -42477,271 +39494,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_as] = ACTIONS(209), - [anon_sym_typealias] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), [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(223), - [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), [anon_sym_val] = ACTIONS(1105), [anon_sym_var] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), [anon_sym_object] = ACTIONS(1107), [anon_sym_fun] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(121), [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_in] = ACTIONS(209), - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(209), - [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_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(339), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_as_QMARK] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [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_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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_safe_nav] = ACTIONS(207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), - }, - [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(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_as] = ACTIONS(209), - [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(133), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_val] = ACTIONS(1079), - [anon_sym_var] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_fun] = ACTIONS(1083), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(1095), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1121), [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_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(209), + [anon_sym_if] = ACTIONS(695), + [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_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), - [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(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(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_BANG_BANG] = ACTIONS(207), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -42782,67 +39612,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(207), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [49] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3942), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -42851,89 +39681,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_as] = ACTIONS(123), - [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(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(1127), - [anon_sym_fun] = 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(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(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(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_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(1055), + [anon_sym_DASH_DASH] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_BANG_BANG] = ACTIONS(211), [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -42952,84 +39782,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(211), + [sym_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [50] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1100), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -43038,65 +39868,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(391), + [anon_sym_typealias] = ACTIONS(561), [anon_sym_class] = ACTIONS(1005), [anon_sym_interface] = ACTIONS(1005), [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [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_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(937), - [anon_sym_if] = ACTIONS(811), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), [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_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [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), @@ -43118,193 +39948,6 @@ 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(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__automatic_semicolon] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), - }, - [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(559), - [anon_sym_as] = ACTIONS(209), - [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(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(1127), - [anon_sym_fun] = 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(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(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(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_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), - [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), @@ -43329,12 +39972,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -43342,68 +39985,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4823), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -43412,89 +40055,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_as] = ACTIONS(209), - [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(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(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(207), - [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(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(905), - [anon_sym_if] = ACTIONS(747), - [anon_sym_else] = ACTIONS(209), - [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), - [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(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(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_BANG_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(213), + [anon_sym_as] = ACTIONS(213), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(213), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_in] = ACTIONS(213), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(247), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_QMARK_COLON] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(213), + [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_BANG_EQ] = ACTIONS(213), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(213), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_as_QMARK] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_BANG_BANG] = ACTIONS(211), [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_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), @@ -43513,86 +40157,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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_safe_nav] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(295), }, [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_file_annotation] = STATE(3128), + [sym_package_header] = STATE(68), + [sym_import_list] = STATE(59), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -43601,25 +40244,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat1] = STATE(3128), + [aux_sym_source_file_repeat2] = STATE(59), + [aux_sym_source_file_repeat3] = STATE(219), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), @@ -43704,64 +40347,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [53] = { - [sym_file_annotation] = STATE(54), - [sym_package_header] = STATE(67), + [sym_file_annotation] = STATE(3128), + [sym_package_header] = STATE(71), [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_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -43770,27 +40413,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat1] = STATE(3128), [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_source_file_repeat3] = STATE(230), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [ts_builtin_sym_end] = ACTIONS(1147), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -43873,64 +40516,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_file_annotation] = STATE(53), + [sym_package_header] = STATE(68), + [sym_import_list] = STATE(59), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -43939,27 +40582,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat1] = STATE(53), + [aux_sym_source_file_repeat2] = STATE(59), + [aux_sym_source_file_repeat3] = STATE(219), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [ts_builtin_sym_end] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -44042,62 +40685,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44106,25 +40749,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -44141,7 +40784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_in] = ACTIONS(299), @@ -44210,62 +40853,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_type_alias] = STATE(5422), + [sym__declaration] = STATE(5422), + [sym_class_declaration] = STATE(5422), + [sym_function_declaration] = STATE(5422), + [sym_property_declaration] = STATE(5422), + [sym_getter] = STATE(5422), + [sym_setter] = STATE(5422), + [sym_object_declaration] = STATE(5422), + [sym__statement] = STATE(5422), + [sym_control_structure_body] = STATE(5388), + [sym__block] = STATE(5422), + [sym__loop_statement] = STATE(5422), + [sym_for_statement] = STATE(5422), + [sym_while_statement] = STATE(5422), + [sym_do_while_statement] = STATE(5422), + [sym_assignment] = STATE(5422), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8304), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44274,70 +40917,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(785), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(389), [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(569), + [anon_sym_LPAREN] = ACTIONS(399), [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_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), [anon_sym_for] = ACTIONS(1169), [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(1171), [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(715), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), [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_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [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_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), + [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(1097), [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_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), @@ -44356,83 +40999,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym__automatic_semicolon] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(469), }, [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_type_alias] = STATE(5422), + [sym__declaration] = STATE(5422), + [sym_class_declaration] = STATE(5422), + [sym_function_declaration] = STATE(5422), + [sym_property_declaration] = STATE(5422), + [sym_getter] = STATE(5422), + [sym_setter] = STATE(5422), + [sym_object_declaration] = STATE(5422), + [sym__statement] = STATE(5422), + [sym_control_structure_body] = STATE(5366), + [sym__block] = STATE(5422), + [sym__loop_statement] = STATE(5422), + [sym_for_statement] = STATE(5422), + [sym_while_statement] = STATE(5422), + [sym_do_while_statement] = STATE(5422), + [sym_assignment] = STATE(5422), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8304), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44441,70 +41084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(785), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(389), [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_RBRACE] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(399), [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_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), [anon_sym_for] = ACTIONS(1169), - [anon_sym_in] = ACTIONS(209), + [anon_sym_in] = ACTIONS(213), [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_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(213), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANGin] = ACTIONS(211), + [anon_sym_is] = ACTIONS(213), + [anon_sym_BANGis] = ACTIONS(211), + [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(1097), [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_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), @@ -44523,83 +41166,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(469), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10051), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9685), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44608,36 +41254,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [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), @@ -44647,6 +41289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44709,65 +41352,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(3026), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44776,32 +41416,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(3026), + [aux_sym_source_file_repeat3] = STATE(230), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44811,7 +41455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -44874,65 +41517,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(59), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -44941,32 +41581,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(59), + [aux_sym_source_file_repeat3] = STATE(219), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44976,7 +41620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -45039,65 +41682,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9886), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9685), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45106,21 +41749,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -45130,7 +41773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1181), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -45141,7 +41784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1179), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45204,65 +41847,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9975), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9494), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45271,21 +41914,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -45295,7 +41938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_RBRACE] = ACTIONS(1183), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -45306,7 +41949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1189), + [anon_sym_DASH_GT] = ACTIONS(1185), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45369,65 +42012,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9749), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10149), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45436,21 +42079,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -45460,7 +42103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -45471,7 +42114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45534,65 +42177,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(3026), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45601,32 +42241,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(3026), + [aux_sym_source_file_repeat3] = STATE(245), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1191), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45636,7 +42280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -45699,65 +42342,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9585), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9837), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45766,21 +42409,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -45790,7 +42433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -45801,7 +42444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45864,62 +42507,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(3026), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -45928,26 +42571,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(3026), + [aux_sym_source_file_repeat3] = STATE(219), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [ts_builtin_sym_end] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1147), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -46029,62 +42672,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9743), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9837), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46093,36 +42739,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46132,6 +42774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -46194,65 +42837,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(70), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46261,32 +42901,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(70), + [aux_sym_source_file_repeat3] = STATE(230), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46296,7 +42940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -46359,62 +43002,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9638), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10005), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46423,36 +43069,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46462,6 +43104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1201), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -46524,62 +43167,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(3026), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46588,26 +43231,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(3026), + [aux_sym_source_file_repeat3] = STATE(252), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [ts_builtin_sym_end] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1203), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -46689,65 +43332,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_import_list] = STATE(64), + [sym_import_header] = STATE(8654), + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46756,32 +43396,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat2] = STATE(64), + [aux_sym_source_file_repeat3] = STATE(252), + [aux_sym_import_list_repeat1] = STATE(8654), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1203), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -46791,7 +43435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -46854,65 +43497,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9748), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10063), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -46921,21 +43564,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -46945,7 +43588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1205), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -46956,7 +43599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1197), + [anon_sym_DASH_GT] = ACTIONS(1207), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47019,65 +43662,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9659), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9494), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47086,21 +43729,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -47110,7 +43753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -47121,7 +43764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(1185), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47184,62 +43827,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10037), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10063), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47248,36 +43894,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47287,6 +43929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1207), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47349,62 +43992,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10103), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10063), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47413,36 +44059,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1177), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -47452,6 +44094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), + [anon_sym_DASH_GT] = ACTIONS(1207), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47514,65 +44157,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10157), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9494), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47581,21 +44224,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -47616,7 +44259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(1185), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47679,65 +44322,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9479), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9837), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47746,21 +44389,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -47781,7 +44424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -47844,65 +44487,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10059), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10149), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -47911,21 +44554,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48009,65 +44652,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9976), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10149), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48076,21 +44719,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48111,7 +44754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1197), + [anon_sym_DASH_GT] = ACTIONS(1189), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48174,65 +44817,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9493), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10149), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48241,21 +44884,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48339,65 +44982,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10033), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10005), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48406,21 +45049,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48441,7 +45084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1201), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48504,65 +45147,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9575), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9837), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48571,21 +45214,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48606,7 +45249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48669,65 +45312,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [83] = { - [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9847), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(9685), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48736,21 +45379,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48834,65 +45477,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [84] = { - [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9964), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10005), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -48901,21 +45544,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -48936,7 +45579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(1201), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -48999,65 +45642,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [85] = { - [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_variable_declaration] = STATE(9015), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9549), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_multi_variable_declaration] = STATE(9015), + [sym_lambda_parameters] = STATE(10005), + [sym__lambda_parameter] = STATE(9015), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49066,21 +45709,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5295), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -49101,7 +45744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1201), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -49164,62 +45807,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [86] = { - [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_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49228,25 +45871,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -49263,7 +45906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(327), @@ -49327,62 +45970,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [87] = { - [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_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5605), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49391,66 +46034,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(7), [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), [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_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), + [anon_sym_do] = ACTIONS(371), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(375), + [anon_sym_else] = ACTIONS(1237), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), [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_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), @@ -49469,82 +46112,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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), }, [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(4037), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49554,65 +46197,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [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(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(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_else] = ACTIONS(1245), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49631,82 +46274,82 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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(533), + [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(205), + [sym__string_start] = ACTIONS(555), }, [89] = { - [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(2328), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49715,66 +46358,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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(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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -49793,82 +46436,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(975), + [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(555), + [sym__string_start] = ACTIONS(639), }, [90] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(5629), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -49877,66 +46520,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(207), [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(1251), - [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_LBRACK] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(247), + [anon_sym_null] = ACTIONS(331), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1251), + [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(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), @@ -49955,82 +46598,82 @@ static const uint16_t ts_parse_table[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), - [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(205), + [sym__string_start] = ACTIONS(295), }, [91] = { - [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3467), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -50039,66 +46682,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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(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(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(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_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), [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), @@ -50117,81 +46760,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(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [92] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(4131), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), [sym_modifiers] = STATE(8313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -50201,21 +46844,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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), + }, + [93] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(4261), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [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(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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), + }, + [94] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(4057), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [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(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), @@ -50230,7 +47197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(919), [anon_sym_object] = ACTIONS(921), [anon_sym_fun] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1269), [anon_sym_get] = ACTIONS(925), [anon_sym_set] = ACTIONS(927), [anon_sym_this] = ACTIONS(411), @@ -50242,7 +47209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(937), [anon_sym_if] = ACTIONS(427), - [anon_sym_else] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1271), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), [anon_sym_throw] = ACTIONS(433), @@ -50282,79 +47249,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [93] = { - [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), + [95] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(4321), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -50363,25 +47330,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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), + }, + [96] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(5465), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), [anon_sym_class] = ACTIONS(853), [anon_sym_interface] = ACTIONS(853), @@ -50392,7 +47521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(859), [anon_sym_object] = ACTIONS(861), [anon_sym_fun] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1277), [anon_sym_get] = ACTIONS(865), [anon_sym_set] = ACTIONS(867), [anon_sym_this] = ACTIONS(235), @@ -50404,7 +47533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1279), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(257), @@ -50460,43 +47589,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [94] = { - [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), + [97] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(4196), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [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(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [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(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(1281), + [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_else] = ACTIONS(1283), + [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(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), + }, + [98] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(5290), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -50513,10 +47804,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -50525,60 +47816,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(337), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(219), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), [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_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), [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_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(1289), [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(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), @@ -50622,63 +47913,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [95] = { - [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), + [99] = { + [sym_type_alias] = STATE(9464), + [sym__declaration] = STATE(9464), + [sym_class_declaration] = STATE(9464), + [sym_function_declaration] = STATE(9464), + [sym_property_declaration] = STATE(9464), + [sym_getter] = STATE(9464), + [sym_setter] = STATE(9464), + [sym_object_declaration] = STATE(9464), + [sym__statement] = STATE(9464), + [sym_control_structure_body] = STATE(9287), + [sym__block] = STATE(9464), + [sym__loop_statement] = STATE(9464), + [sym_for_statement] = STATE(9464), + [sym_while_statement] = STATE(9464), + [sym_do_while_statement] = STATE(9464), + [sym_assignment] = STATE(9464), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -50688,65 +47979,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_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(1291), + [anon_sym_RBRACE] = ACTIONS(211), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -50765,82 +48055,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(533), - [anon_sym_actual] = ACTIONS(533), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(211), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [100] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3209), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -50849,60 +48140,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), + [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(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(1293), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [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(1297), + [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(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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [101] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(4051), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [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_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), [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_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(1303), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -50946,63 +48399,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [102] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1073), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -51011,48 +48464,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [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(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), + [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(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_val] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_object] = ACTIONS(573), + [anon_sym_fun] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_while] = ACTIONS(591), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(997), + [anon_sym_null] = ACTIONS(595), [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(1289), + [anon_sym_else] = ACTIONS(1309), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), [anon_sym_throw] = ACTIONS(603), @@ -51060,11 +48513,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -51092,12 +48545,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(627), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -51108,63 +48561,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [103] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(4162), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8320), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -51173,708 +48626,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [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(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(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), - }, - [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(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(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(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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), [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_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), [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_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), [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_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(1313), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_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), @@ -51902,79 +48707,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [104] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(4285), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -51983,60 +48788,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), [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(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), [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_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(161), - [anon_sym_else] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(1317), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -52080,63 +48885,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [105] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5073), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -52145,60 +48950,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [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(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(949), + [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(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_val] = ACTIONS(353), + [anon_sym_var] = ACTIONS(353), + [anon_sym_object] = ACTIONS(355), + [anon_sym_fun] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), [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_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), [anon_sym_do] = ACTIONS(371), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(375), [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_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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -52231,7 +49036,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), @@ -52242,225 +49047,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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(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(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), - }, [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_type_alias] = STATE(9464), + [sym__declaration] = STATE(9464), + [sym_class_declaration] = STATE(9464), + [sym_function_declaration] = STATE(9464), + [sym_property_declaration] = STATE(9464), + [sym_getter] = STATE(9464), + [sym_setter] = STATE(9464), + [sym_object_declaration] = STATE(9464), + [sym__statement] = STATE(9464), + [sym_control_structure_body] = STATE(9321), + [sym__block] = STATE(9464), + [sym__loop_statement] = STATE(9464), + [sym_for_statement] = STATE(9464), + [sym_while_statement] = STATE(9464), + [sym_do_while_statement] = STATE(9464), + [sym_assignment] = STATE(9464), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -52469,21 +49112,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -52492,7 +49135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1291), [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), @@ -52567,204 +49210,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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(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(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), - }, - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4839), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -52781,10 +49262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -52793,60 +49274,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), + [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(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_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), [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_STAR] = ACTIONS(1327), + [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(333), - [anon_sym_else] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(251), + [anon_sym_else] = ACTIONS(1329), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -52890,63 +49371,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [108] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5642), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -52955,47 +49436,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [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_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(981), [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_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1331), + [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(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), + [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(1333), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -53048,229 +49530,66 @@ 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_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(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(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_else] = ACTIONS(1345), - [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), - }, - [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), + [109] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5377), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -53279,60 +49598,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), [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_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), [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_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), [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_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), [anon_sym_do] = ACTIONS(371), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1339), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -53365,7 +49684,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), @@ -53376,63 +49695,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [112] = { - [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), + [110] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1284), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -53441,66 +49760,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(557), [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(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(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(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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), @@ -53519,82 +49838,82 @@ static const uint16_t ts_parse_table[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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(113), + [sym__string_start] = ACTIONS(639), }, - [113] = { - [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), + [111] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3545), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -53603,65 +49922,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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(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_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(1347), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [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_else] = ACTIONS(1351), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -53680,82 +50000,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(555), + [sym__string_start] = ACTIONS(205), }, - [114] = { - [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), + [112] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(2218), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -53764,41 +50084,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(557), [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(1359), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(233), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1355), + [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(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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(533), + [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(975), + [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), + }, + [113] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4787), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [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(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1357), + [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), + [anon_sym_STAR] = ACTIONS(1327), [sym_label] = ACTIONS(241), [anon_sym_for] = ACTIONS(243), [anon_sym_while] = ACTIONS(245), @@ -53860,63 +50342,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, + [114] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1050), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [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(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), + [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(1359), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [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(533), + [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), + }, [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -53925,65 +50568,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [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_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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), [anon_sym_SEMI] = ACTIONS(1361), - [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_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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), @@ -54002,82 +50645,82 @@ static const uint16_t ts_parse_table[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_return_AT] = ACTIONS(533), + [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(113), + [sym__string_start] = ACTIONS(639), }, [116] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3910), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54086,65 +50729,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), [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_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54163,82 +50806,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, [117] = { - [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3240), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8300), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54247,65 +50890,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), [aux_sym__statement_repeat1] = STATE(766), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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_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(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(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_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [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), @@ -54324,82 +50967,82 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [118] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3926), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54408,65 +51051,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), [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_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54485,82 +51128,82 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [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(533), + [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(113), + [sym__string_start] = ACTIONS(555), }, [119] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54569,65 +51212,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), [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(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_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54646,82 +51289,82 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [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(533), + [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(113), + [sym__string_start] = ACTIONS(555), }, [120] = { - [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_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3866), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_modifiers] = STATE(8316), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54730,65 +51373,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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(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(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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54807,62 +51450,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(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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(533), + [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(295), + [sym__string_start] = ACTIONS(555), }, [121] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4708), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -54879,10 +51522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -54891,59 +51534,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), + [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(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_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(1339), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(1327), + [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(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -54988,42 +51631,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [122] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4704), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -55040,10 +51683,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -55052,59 +51695,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), + [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(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_val] = ACTIONS(225), + [anon_sym_var] = ACTIONS(225), + [anon_sym_object] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), [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_STAR] = ACTIONS(1327), + [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(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -55149,62 +51792,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [123] = { - [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_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3240), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -55213,59 +51856,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [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(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), + [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(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_val] = ACTIONS(919), + [anon_sym_var] = ACTIONS(919), + [anon_sym_object] = ACTIONS(921), + [anon_sym_fun] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(927), [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_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(811), + [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [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(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(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), @@ -55293,79 +51936,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, [124] = { - [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -55374,65 +52017,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [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(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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_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), @@ -55451,82 +52094,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(975), + [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(555), + [sym__string_start] = ACTIONS(639), }, [125] = { - [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_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -55535,65 +52178,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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(1379), - [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_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(1361), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [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), @@ -55612,82 +52255,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), - }, + [anon_sym_return_AT] = ACTIONS(533), + [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), + }, [126] = { - [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_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4704), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -55696,65 +52339,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [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(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(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_LBRACK] = ACTIONS(209), + [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(1375), + [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(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), @@ -55773,81 +52416,403 @@ static const uint16_t ts_parse_table[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(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(113), + [sym__string_start] = ACTIONS(295), }, [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_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), + [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(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [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), + }, + [128] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3240), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [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(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), + [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(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [129] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5193), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -55857,59 +52822,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [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_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), [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(651), - [anon_sym_set] = ACTIONS(653), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), [anon_sym_do] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [anon_sym_if] = ACTIONS(55), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -55942,7 +52907,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(385), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -55953,63 +52918,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [130] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5174), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56018,65 +52983,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), [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_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), @@ -56095,82 +53060,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [131] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5164), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56179,65 +53144,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), [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_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), @@ -56256,82 +53221,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [132] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5218), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8288), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56340,65 +53305,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(789), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_object] = ACTIONS(985), + [anon_sym_fun] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(991), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), [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_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), @@ -56417,82 +53382,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [133] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5164), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56501,65 +53466,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), [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_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), @@ -56578,82 +53543,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [134] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3423), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56662,59 +53627,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(338), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), [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), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), [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(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(825), [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_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -56747,7 +53712,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), @@ -56758,63 +53723,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [135] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3423), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56823,59 +53788,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [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(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(131), + [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(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_val] = ACTIONS(827), + [anon_sym_var] = ACTIONS(827), + [anon_sym_object] = ACTIONS(829), + [anon_sym_fun] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(833), + [anon_sym_set] = ACTIONS(835), [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_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(779), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [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(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_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), @@ -56908,7 +53873,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), @@ -56919,63 +53884,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [136] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3423), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -56984,59 +53949,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(349), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), [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), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [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(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), [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_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(779), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -57080,63 +54045,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [137] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57145,65 +54110,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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(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(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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [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(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), @@ -57222,82 +54187,82 @@ static const uint16_t ts_parse_table[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(533), + [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(975), + [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), }, - [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), + [138] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3434), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57306,65 +54271,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), [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_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), @@ -57383,82 +54348,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(183), + [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(639), + [sym__string_start] = ACTIONS(205), }, - [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), + [139] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1050), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57467,59 +54432,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [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(1121), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [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_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(715), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -57547,12 +54512,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -57563,63 +54528,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [140] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1028), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8297), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57628,59 +54593,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(761), [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(1121), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_class] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [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_val] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_object] = ACTIONS(953), + [anon_sym_fun] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(959), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(715), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -57708,12 +54673,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -57724,63 +54689,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [141] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5218), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57789,65 +54754,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_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(1385), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -57866,82 +54831,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [142] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5164), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -57950,65 +54915,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_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(1383), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [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), @@ -58027,82 +54992,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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), }, - [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), + [143] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5174), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58111,65 +55076,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(7), [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(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_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(1321), + [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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [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), @@ -58188,82 +55153,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(471), + [sym__string_start] = ACTIONS(113), }, - [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), + [144] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5193), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(3732), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8289), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58272,65 +55237,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(335), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), [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), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(798), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_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(1379), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(361), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [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), @@ -58349,82 +55314,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [145] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58433,65 +55398,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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_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), @@ -58510,82 +55475,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [146] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1050), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58595,64 +55560,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [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(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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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_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), @@ -58671,82 +55636,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [147] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1028), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(382), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8308), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58756,64 +55721,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(768), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(557), [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(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(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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(705), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(709), + [anon_sym_var] = ACTIONS(709), + [anon_sym_object] = ACTIONS(711), + [anon_sym_fun] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(715), + [anon_sym_set] = ACTIONS(717), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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_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), @@ -58832,82 +55797,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(617), + [anon_sym_actual] = ACTIONS(617), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [148] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3910), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -58916,65 +55881,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(471), [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(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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58993,82 +55958,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), + [149] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5193), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59077,46 +56042,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [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_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(981), [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_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), [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_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(373), + [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -59125,11 +56090,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(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(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), @@ -59162,7 +56127,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(385), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -59173,63 +56138,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [150] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59238,59 +56203,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [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(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), + [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(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_val] = ACTIONS(135), + [anon_sym_var] = ACTIONS(135), + [anon_sym_object] = ACTIONS(137), + [anon_sym_fun] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), [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_STAR] = ACTIONS(1349), + [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(779), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [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(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_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), @@ -59334,63 +56299,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [151] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59399,54 +56364,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), + [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(1389), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [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(533), + [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), + }, + [152] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3267), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [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(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), + [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(1075), [anon_sym_interface] = ACTIONS(1075), [anon_sym_enum] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), [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_SEMI] = ACTIONS(1395), [anon_sym_get] = ACTIONS(1085), [anon_sym_set] = ACTIONS(1087), - [anon_sym_this] = ACTIONS(145), - [anon_sym_super] = ACTIONS(147), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), [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_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(1097), [anon_sym_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1099), @@ -59455,9 +56581,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(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), @@ -59476,82 +56602,82 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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), + [153] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3910), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8312), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59560,65 +56686,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59637,82 +56763,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [154] = { + [sym_type_alias] = STATE(9464), + [sym__declaration] = STATE(9464), + [sym_class_declaration] = STATE(9464), + [sym_function_declaration] = STATE(9464), + [sym_property_declaration] = STATE(9464), + [sym_getter] = STATE(9464), + [sym_setter] = STATE(9464), + [sym_object_declaration] = STATE(9464), + [sym__statement] = STATE(9464), + [sym_control_structure_body] = STATE(9289), + [sym__block] = STATE(9464), + [sym__loop_statement] = STATE(9464), + [sym_for_statement] = STATE(9464), + [sym_while_statement] = STATE(9464), + [sym_do_while_statement] = STATE(9464), + [sym_assignment] = STATE(9464), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59721,46 +56847,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1291), [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_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), [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_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), @@ -59769,11 +56895,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(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(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), @@ -59806,7 +56932,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(385), + [sym_real_literal] = ACTIONS(101), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -59817,63 +56943,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [155] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1052), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -59882,59 +57008,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [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(1121), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(949), [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_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(715), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [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_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), @@ -59962,12 +57088,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -59978,63 +57104,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [156] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3267), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60043,67 +57169,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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_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(1395), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), + [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), @@ -60120,82 +57246,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(447), + [anon_sym_actual] = ACTIONS(447), [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [157] = { + [sym_type_alias] = STATE(5422), + [sym__declaration] = STATE(5422), + [sym_class_declaration] = STATE(5422), + [sym_function_declaration] = STATE(5422), + [sym_property_declaration] = STATE(5422), + [sym_getter] = STATE(5422), + [sym_setter] = STATE(5422), + [sym_object_declaration] = STATE(5422), + [sym__statement] = STATE(5422), + [sym_control_structure_body] = STATE(5337), + [sym__block] = STATE(5422), + [sym__loop_statement] = STATE(5422), + [sym_for_statement] = STATE(5422), + [sym_while_statement] = STATE(5422), + [sym_do_while_statement] = STATE(5422), + [sym_assignment] = STATE(5422), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8304), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60204,65 +57330,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(785), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(387), [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(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(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_LBRACK] = ACTIONS(389), + [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(399), + [anon_sym_val] = ACTIONS(1159), + [anon_sym_var] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1161), + [anon_sym_fun] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1165), + [anon_sym_set] = ACTIONS(1167), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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), @@ -60281,82 +57407,82 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(469), }, - [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), + [158] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3234), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8320), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60365,59 +57491,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), [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(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), [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_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), [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_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(937), - [anon_sym_if] = ACTIONS(811), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_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), @@ -60445,79 +57571,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [159] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3234), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60526,59 +57652,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), [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_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(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(799), - [anon_sym_set] = ACTIONS(801), + [anon_sym_val] = ACTIONS(401), + [anon_sym_var] = ACTIONS(401), + [anon_sym_object] = ACTIONS(403), + [anon_sym_fun] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(407), + [anon_sym_set] = ACTIONS(409), [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_STAR] = ACTIONS(1295), + [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(811), + [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [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(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_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), @@ -60606,79 +57732,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [160] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5174), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60687,65 +57813,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [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_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(981), + [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(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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [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), @@ -60764,82 +57890,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [161] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8320), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -60848,65 +57974,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(755), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(1075), + [anon_sym_interface] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_fun] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1087), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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), @@ -60925,82 +58051,82 @@ static const uint16_t ts_parse_table[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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(469), }, - [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), + [162] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3423), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61009,59 +58135,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), + [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_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(1387), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [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(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), + }, + [163] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [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_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(221), [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_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), [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_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(331), - [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(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(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), @@ -61094,7 +58381,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(343), + [sym_real_literal] = ACTIONS(283), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -61105,63 +58392,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [164] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3434), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61170,65 +58457,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), [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), @@ -61247,82 +58534,82 @@ static const uint16_t ts_parse_table[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(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), + [anon_sym_return_AT] = ACTIONS(183), + [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), }, - [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), + [165] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3447), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61331,65 +58618,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), [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), @@ -61408,82 +58695,82 @@ static const uint16_t ts_parse_table[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(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), + [anon_sym_return_AT] = ACTIONS(183), + [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), }, - [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), + [166] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_modifiers] = STATE(8322), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61492,65 +58779,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(788), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(673), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(675), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(677), + [anon_sym_var] = ACTIONS(677), + [anon_sym_object] = ACTIONS(679), + [anon_sym_fun] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_get] = ACTIONS(683), + [anon_sym_set] = ACTIONS(685), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), + [anon_sym_do] = ACTIONS(157), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), [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), @@ -61569,82 +58856,82 @@ static const uint16_t ts_parse_table[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(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), + [anon_sym_return_AT] = ACTIONS(183), + [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), }, - [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), + [167] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1028), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_modifiers] = STATE(8298), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61653,65 +58940,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(756), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(557), [anon_sym_AT] = ACTIONS(117), - [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_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(1393), + [anon_sym_get] = ACTIONS(577), + [anon_sym_set] = ACTIONS(579), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [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), @@ -61730,82 +59017,82 @@ static const uint16_t ts_parse_table[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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(113), + [sym__string_start] = ACTIONS(639), }, - [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), + [168] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3240), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61814,75 +59101,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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(1383), - [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(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_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [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(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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), @@ -61891,82 +59178,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [169] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5164), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -61975,59 +59262,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [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_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(981), [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_val] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1063), + [anon_sym_fun] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1067), + [anon_sym_set] = ACTIONS(1069), [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_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(375), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -62071,63 +59358,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [170] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1050), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62136,65 +59423,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(557), [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_LBRACK] = ACTIONS(559), + [anon_sym_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), [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(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_LPAREN] = ACTIONS(569), + [anon_sym_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(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), @@ -62213,82 +59500,82 @@ static const uint16_t ts_parse_table[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_return_AT] = ACTIONS(533), + [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(975), + [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), }, - [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), + [171] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4708), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62297,65 +59584,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(7), + [sym__alpha_identifier] = ACTIONS(207), [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(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(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_LBRACK] = ACTIONS(209), + [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(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), @@ -62374,82 +59661,82 @@ static const uint16_t ts_parse_table[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(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(113), + [sym__string_start] = ACTIONS(295), }, - [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), + [172] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5174), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62458,59 +59745,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), [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_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), [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_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(959), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), [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_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), [anon_sym_do] = ACTIONS(371), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(375), + [anon_sym_null] = ACTIONS(373), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -62543,7 +59830,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), @@ -62554,63 +59841,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [173] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3926), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62619,65 +59906,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(471), [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(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(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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62696,82 +59983,82 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [174] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8391), + [sym_modifiers] = STATE(8303), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62780,65 +60067,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(766), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(387), [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(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_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(1295), + [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(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), @@ -62857,82 +60144,82 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [175] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3234), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -62941,65 +60228,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(387), [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_LBRACK] = ACTIONS(389), + [anon_sym_typealias] = ACTIONS(391), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), [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), @@ -63018,82 +60305,243 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [176] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3926), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [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(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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(205), + [sym__string_start] = ACTIONS(555), }, - [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), + [177] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -63102,44 +60550,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1101), - [anon_sym_interface] = ACTIONS(1101), - [anon_sym_enum] = ACTIONS(1103), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), [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_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), @@ -63198,63 +60646,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [178] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3434), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8377), - [sym_modifiers] = STATE(8308), + [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -63263,46 +60711,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [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(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), + [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(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_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(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_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_null] = ACTIONS(845), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -63311,11 +60759,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(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(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), @@ -63348,7 +60796,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), @@ -63359,224 +60807,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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(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), - }, - [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), + [179] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4787), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -63585,59 +60872,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(1101), - [anon_sym_interface] = ACTIONS(1101), - [anon_sym_enum] = ACTIONS(1103), + [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(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_val] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_object] = ACTIONS(861), + [anon_sym_fun] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(865), + [anon_sym_set] = ACTIONS(867), [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_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_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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(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), @@ -63681,63 +60968,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [180] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -63746,65 +61033,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63823,81 +61110,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(271), - [anon_sym_actual] = ACTIONS(271), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(295), + [sym__string_start] = ACTIONS(555), }, - [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), + [181] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3447), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -63907,65 +61194,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(786), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_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(1407), + [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(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), + }, + [182] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3910), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [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(334), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(794), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_interface] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(485), + [anon_sym_var] = ACTIONS(485), + [anon_sym_object] = ACTIONS(487), + [anon_sym_fun] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(493), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63984,15 +61432,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(543), [sym_integer_literal] = ACTIONS(545), [sym_hex_literal] = ACTIONS(547), [sym_bin_literal] = ACTIONS(547), @@ -64003,63 +61451,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [183] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2299), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8307), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64068,65 +61516,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(786), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_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(1377), + [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(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), @@ -64145,82 +61593,82 @@ static const uint16_t ts_parse_table[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), - [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(295), + [sym__string_start] = ACTIONS(205), }, - [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), + [184] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3267), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64229,65 +61677,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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(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_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(1395), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -64306,82 +61754,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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), + [185] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64390,25 +61838,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -64424,7 +61872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(327), @@ -64486,63 +61934,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [186] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3267), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64551,59 +61999,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [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(393), - [anon_sym_interface] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(395), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), [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_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_return] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -64631,79 +62079,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [187] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3926), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8312), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64712,65 +62160,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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(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(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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64789,82 +62237,82 @@ static const uint16_t ts_parse_table[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(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [188] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3234), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -64873,65 +62321,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), - [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(1391), - [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_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(1401), + [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(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), @@ -64950,82 +62398,82 @@ static const uint16_t ts_parse_table[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(447), + [anon_sym_actual] = ACTIONS(447), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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), + [189] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8317), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -65034,59 +62482,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(790), [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(393), - [anon_sym_interface] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(395), + [anon_sym_class] = ACTIONS(641), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(643), [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_val] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_object] = ACTIONS(647), + [anon_sym_fun] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(653), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), [anon_sym_do] = ACTIONS(423), [anon_sym_null] = ACTIONS(425), - [anon_sym_if] = ACTIONS(427), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_return] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65114,79 +62562,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [190] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5218), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -65195,59 +62643,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), + [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(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [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(113), + }, + [191] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3447), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_modifiers] = STATE(8286), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(753), [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(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), + [anon_sym_class] = ACTIONS(1101), + [anon_sym_interface] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1103), [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_val] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1107), + [anon_sym_fun] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1111), + [anon_sym_set] = ACTIONS(1113), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), [anon_sym_do] = ACTIONS(157), [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(161), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -65291,63 +62900,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [192] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3866), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2227), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -65356,65 +62965,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(791), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(767), + [anon_sym_var] = ACTIONS(767), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65433,10 +63042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -65452,224 +63061,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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(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(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), - }, - [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), + [193] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4787), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -65678,46 +63126,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(337), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [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_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(221), [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_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), [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_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(247), - [anon_sym_null] = ACTIONS(331), + [anon_sym_null] = ACTIONS(249), [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -65726,11 +63174,11 @@ 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(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(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), @@ -65763,7 +63211,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(343), + [sym_real_literal] = ACTIONS(283), [sym_integer_literal] = ACTIONS(285), [sym_hex_literal] = ACTIONS(287), [sym_bin_literal] = ACTIONS(287), @@ -65774,63 +63222,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [194] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [sym_modifiers] = STATE(8312), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -65839,65 +63287,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(471), [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(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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65916,82 +63364,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [195] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3866), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2449), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8311), + [sym_modifiers] = STATE(8312), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -66000,226 +63448,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(797), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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(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), - }, - [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(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(475), - [anon_sym_typealias] = ACTIONS(477), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [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(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_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(887), + [anon_sym_var] = ACTIONS(887), + [anon_sym_object] = ACTIONS(889), + [anon_sym_fun] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(893), + [anon_sym_set] = ACTIONS(895), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), [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_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -66238,10 +63525,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -66257,224 +63544,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [196] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9996), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -66483,25 +63609,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -66517,7 +63643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(327), @@ -66579,63 +63705,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [197] = { + [sym_type_alias] = STATE(3133), + [sym__declaration] = STATE(3133), + [sym_class_declaration] = STATE(3133), + [sym_function_declaration] = STATE(3133), + [sym_property_declaration] = STATE(3133), + [sym_getter] = STATE(3133), + [sym_setter] = STATE(3133), + [sym_object_declaration] = STATE(3133), + [sym__statement] = STATE(3133), + [sym_control_structure_body] = STATE(3205), + [sym__block] = STATE(3133), + [sym__loop_statement] = STATE(3133), + [sym_for_statement] = STATE(3133), + [sym_while_statement] = STATE(3133), + [sym_do_while_statement] = STATE(3133), + [sym_assignment] = STATE(3133), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_modifiers] = STATE(8302), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -66644,21 +63770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(793), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(387), [anon_sym_AT] = ACTIONS(117), @@ -66673,7 +63799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(919), [anon_sym_object] = ACTIONS(921), [anon_sym_fun] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1403), [anon_sym_get] = ACTIONS(925), [anon_sym_set] = ACTIONS(927), [anon_sym_this] = ACTIONS(411), @@ -66724,79 +63850,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [198] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4704), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -66805,65 +63931,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [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(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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -66882,82 +64008,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [199] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(3281), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_modifiers] = STATE(8309), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -66966,59 +64092,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1405), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(233), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1327), + [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), + }, + [200] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [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_typealias] = ACTIONS(561), + [anon_sym_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(949), [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_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [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_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), @@ -67046,12 +64333,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -67062,63 +64349,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [201] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4779), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4099), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8301), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -67127,65 +64414,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(771), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(207), [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(1375), - [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_LBRACK] = ACTIONS(209), + [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(1405), + [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(445), - [anon_sym_inner] = ACTIONS(445), - [anon_sym_value] = ACTIONS(445), + [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), @@ -67204,81 +64491,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(447), - [anon_sym_actual] = ACTIONS(447), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [202] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5218), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), [sym_modifiers] = STATE(8305), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -67288,65 +64575,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(781), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [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(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_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(981), + [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(1385), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [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), @@ -67365,82 +64652,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [203] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3906), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -67449,65 +64736,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -67526,82 +64813,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [204] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4708), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -67610,59 +64897,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(853), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(855), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), [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_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), [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_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(331), - [anon_sym_if] = ACTIONS(251), + [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(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(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), @@ -67706,43 +64993,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [205] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4708), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4038), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), [sym__primary_expression] = STATE(4530), [sym_parenthesized_expression] = STATE(4530), [sym_collection_literal] = STATE(4530), @@ -67759,10 +65046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__prefix_unary_operator] = STATE(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8293), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -67771,59 +65058,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(337), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), [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), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(776), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(215), - [anon_sym_class] = ACTIONS(217), - [anon_sym_interface] = ACTIONS(217), - [anon_sym_enum] = ACTIONS(219), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), [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_val] = ACTIONS(799), + [anon_sym_var] = ACTIONS(799), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), [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_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(249), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -67867,63 +65154,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [206] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4704), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -67932,65 +65219,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(115), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), + [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(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), @@ -68009,82 +65296,82 @@ static const uint16_t ts_parse_table[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), - [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(273), + [anon_sym_continue_AT] = 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(205), + [sym__string_start] = ACTIONS(295), }, - [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), + [207] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3434), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -68093,21 +65380,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), @@ -68127,7 +65414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(143), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(151), [anon_sym_for] = ACTIONS(153), [anon_sym_while] = ACTIONS(155), @@ -68189,63 +65476,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [208] = { + [sym_type_alias] = STATE(1105), + [sym__declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_property_declaration] = STATE(1105), + [sym_getter] = STATE(1105), + [sym_setter] = STATE(1105), + [sym_object_declaration] = STATE(1105), + [sym__statement] = STATE(1105), + [sym_control_structure_body] = STATE(1028), + [sym__block] = STATE(1105), + [sym__loop_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_while_statement] = STATE(1105), + [sym_assignment] = STATE(1105), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_modifiers] = STATE(8287), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -68254,381 +65541,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(765), [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_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(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), - }, - [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(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(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), - }, - [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), + [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_class] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(949), [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_val] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_object] = ACTIONS(1011), + [anon_sym_fun] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(1015), + [anon_sym_set] = ACTIONS(1017), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [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_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), @@ -68656,12 +65621,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(617), [anon_sym_actual] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(975), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -68672,63 +65637,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [209] = { + [sym_type_alias] = STATE(4026), + [sym__declaration] = STATE(4026), + [sym_class_declaration] = STATE(4026), + [sym_function_declaration] = STATE(4026), + [sym_property_declaration] = STATE(4026), + [sym_getter] = STATE(4026), + [sym_setter] = STATE(4026), + [sym_object_declaration] = STATE(4026), + [sym__statement] = STATE(4026), + [sym_control_structure_body] = STATE(3866), + [sym__block] = STATE(4026), + [sym__loop_statement] = STATE(4026), + [sym_for_statement] = STATE(4026), + [sym_while_statement] = STATE(4026), + [sym_do_while_statement] = STATE(4026), + [sym_assignment] = STATE(4026), + [sym__expression] = STATE(2591), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_modifiers] = STATE(8290), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -68737,65 +65702,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(764), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(471), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(473), + [anon_sym_typealias] = ACTIONS(475), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_val] = ACTIONS(1035), + [anon_sym_var] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1037), + [anon_sym_fun] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1043), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [anon_sym_data] = ACTIONS(529), + [anon_sym_inner] = ACTIONS(529), + [anon_sym_value] = ACTIONS(529), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68814,15 +65779,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(531), + [anon_sym_actual] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(911), [sym_integer_literal] = ACTIONS(545), [sym_hex_literal] = ACTIONS(547), [sym_bin_literal] = ACTIONS(547), @@ -68833,63 +65798,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [210] = { + [sym_type_alias] = STATE(4749), + [sym__declaration] = STATE(4749), + [sym_class_declaration] = STATE(4749), + [sym_function_declaration] = STATE(4749), + [sym_property_declaration] = STATE(4749), + [sym_getter] = STATE(4749), + [sym_setter] = STATE(4749), + [sym_object_declaration] = STATE(4749), + [sym__statement] = STATE(4749), + [sym_control_structure_body] = STATE(4787), + [sym__block] = STATE(4749), + [sym__loop_statement] = STATE(4749), + [sym_for_statement] = STATE(4749), + [sym_while_statement] = STATE(4749), + [sym_do_while_statement] = STATE(4749), + [sym_assignment] = STATE(4749), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8311), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -68898,65 +65863,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(795), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [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_LBRACK] = ACTIONS(209), + [anon_sym_typealias] = ACTIONS(215), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_interface] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(1131), + [anon_sym_var] = ACTIONS(1131), + [anon_sym_object] = ACTIONS(1133), + [anon_sym_fun] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1139), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -68975,81 +65940,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(533), - [anon_sym_actual] = ACTIONS(533), + [anon_sym_expect] = ACTIONS(271), + [anon_sym_actual] = ACTIONS(271), [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [211] = { + [sym_type_alias] = STATE(3382), + [sym__declaration] = STATE(3382), + [sym_class_declaration] = STATE(3382), + [sym_function_declaration] = STATE(3382), + [sym_property_declaration] = STATE(3382), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_object_declaration] = STATE(3382), + [sym__statement] = STATE(3382), + [sym_control_structure_body] = STATE(3447), + [sym__block] = STATE(3382), + [sym__loop_statement] = STATE(3382), + [sym_for_statement] = STATE(3382), + [sym_while_statement] = STATE(3382), + [sym_do_while_statement] = STATE(3382), + [sym_assignment] = STATE(3382), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), [sym_modifiers] = STATE(8319), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -69059,65 +66024,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(787), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(473), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [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_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(1407), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(143), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [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(531), - [anon_sym_inner] = ACTIONS(531), - [anon_sym_value] = ACTIONS(531), + [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), @@ -69136,82 +66101,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(181), + [anon_sym_actual] = ACTIONS(181), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(555), + [sym__string_start] = ACTIONS(205), }, - [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), + [212] = { + [sym_type_alias] = STATE(5079), + [sym__declaration] = STATE(5079), + [sym_class_declaration] = STATE(5079), + [sym_function_declaration] = STATE(5079), + [sym_property_declaration] = STATE(5079), + [sym_getter] = STATE(5079), + [sym_setter] = STATE(5079), + [sym_object_declaration] = STATE(5079), + [sym__statement] = STATE(5079), + [sym_control_structure_body] = STATE(5193), + [sym__block] = STATE(5079), + [sym__loop_statement] = STATE(5079), + [sym_for_statement] = STATE(5079), + [sym_while_statement] = STATE(5079), + [sym_do_while_statement] = STATE(5079), + [sym_assignment] = STATE(5079), + [sym__expression] = STATE(4052), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8313), + [sym_modifiers] = STATE(8296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -69220,65 +66185,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(778), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(387), + [sym__alpha_identifier] = ACTIONS(7), [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_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(345), + [anon_sym_class] = ACTIONS(737), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(741), + [anon_sym_var] = ACTIONS(741), + [anon_sym_object] = ACTIONS(743), + [anon_sym_fun] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(747), + [anon_sym_set] = ACTIONS(749), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), [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_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), @@ -69297,82 +66262,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [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), + [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(471), + [sym__string_start] = ACTIONS(113), }, - [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), + [213] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9967), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -69381,59 +66346,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [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_LBRACK] = ACTIONS(209), + [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(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_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(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_STAR] = ACTIONS(1141), + [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(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(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), @@ -69466,7 +66430,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), @@ -69477,63 +66441,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [214] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9483), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -69542,59 +66505,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(7), [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_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(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), + [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), + }, + [215] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9580), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [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(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_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(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_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1413), + [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(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(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), @@ -69627,7 +66750,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), @@ -69638,63 +66761,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [216] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9586), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -69703,25 +66826,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -69736,7 +66859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(1409), @@ -69798,62 +66921,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [217] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9977), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -69862,21 +66985,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -69886,7 +67009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1415), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69958,63 +67081,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [218] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(10119), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70023,64 +67146,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(207), [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_LBRACK] = ACTIONS(209), + [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(1141), + [sym_label] = ACTIONS(323), + [anon_sym_for] = ACTIONS(325), + [anon_sym_while] = ACTIONS(1417), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [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), @@ -70099,80 +67222,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(617), - [anon_sym_actual] = ACTIONS(617), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(639), + [sym__string_start] = ACTIONS(295), }, - [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), + [219] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70181,24 +67304,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [ts_builtin_sym_end] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1149), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -70278,62 +67401,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [220] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9515), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70342,21 +67465,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -70366,7 +67489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1419), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70438,222 +67561,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [221] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70662,22 +67624,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), [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), @@ -70686,7 +67650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -70758,62 +67721,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [222] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(10107), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70822,21 +67786,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [223] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9720), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [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(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -70846,7 +67969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1421), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70918,62 +68041,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [224] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9551), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -70982,21 +68105,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -71006,7 +68129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1423), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71078,63 +68201,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [225] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9557), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -71143,224 +68265,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(7), [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_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(1425), + [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(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), @@ -71379,81 +68342,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(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(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), + [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), }, - [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), + [226] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9810), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -71462,21 +68425,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -71486,7 +68449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1427), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71558,223 +68521,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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), + [227] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10016), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), [sym_directly_assignable_expression] = STATE(8363), - [sym_modifiers] = STATE(8312), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -71783,64 +68585,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(557), + [sym__alpha_identifier] = ACTIONS(7), [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_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(1429), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [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), @@ -71859,82 +68662,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(617), - [anon_sym_actual] = ACTIONS(617), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [228] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9628), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -71943,64 +68745,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(7), [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_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(1431), + [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(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), @@ -72019,80 +68822,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(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(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), + [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), }, - [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), + [229] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9850), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72101,24 +68905,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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), @@ -72127,6 +68929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1433), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72198,62 +69001,61 @@ 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(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), + [230] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72262,22 +69064,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1203), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -72286,7 +69090,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [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), @@ -72358,62 +69161,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [231] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72422,21 +69224,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym__alpha_identifier] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_typealias] = ACTIONS(1446), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_val] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_object] = ACTIONS(1464), + [anon_sym_fun] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1473), + [anon_sym_this] = ACTIONS(1476), + [anon_sym_super] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1482), + [sym_label] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_when] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1506), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_suspend] = ACTIONS(1527), + [anon_sym_sealed] = ACTIONS(1530), + [anon_sym_annotation] = ACTIONS(1530), + [anon_sym_data] = ACTIONS(1533), + [anon_sym_inner] = ACTIONS(1533), + [anon_sym_value] = ACTIONS(1533), + [anon_sym_override] = ACTIONS(1536), + [anon_sym_lateinit] = ACTIONS(1536), + [anon_sym_public] = ACTIONS(1539), + [anon_sym_private] = ACTIONS(1539), + [anon_sym_internal] = ACTIONS(1539), + [anon_sym_protected] = ACTIONS(1539), + [anon_sym_tailrec] = ACTIONS(1527), + [anon_sym_operator] = ACTIONS(1527), + [anon_sym_infix] = ACTIONS(1527), + [anon_sym_inline] = ACTIONS(1527), + [anon_sym_external] = ACTIONS(1527), + [sym_property_modifier] = ACTIONS(1542), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_final] = ACTIONS(1545), + [anon_sym_open] = ACTIONS(1545), + [anon_sym_vararg] = ACTIONS(1548), + [anon_sym_noinline] = ACTIONS(1548), + [anon_sym_crossinline] = ACTIONS(1548), + [anon_sym_expect] = ACTIONS(1551), + [anon_sym_actual] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1554), + [anon_sym_continue_AT] = ACTIONS(1557), + [anon_sym_break_AT] = ACTIONS(1560), + [anon_sym_this_AT] = ACTIONS(1563), + [anon_sym_super_AT] = ACTIONS(1566), + [sym_real_literal] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1572), + [sym_hex_literal] = ACTIONS(1575), + [sym_bin_literal] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1581), + [sym__backtick_identifier] = ACTIONS(1584), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1587), + }, + [232] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9669), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [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(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -72446,7 +69409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1590), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72518,63 +69481,63 @@ 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(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), + [233] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(10116), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72583,25 +69546,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -72616,10 +69579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(327), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), @@ -72678,62 +69641,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [234] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9578), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72742,21 +69706,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [235] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9687), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [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(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -72766,7 +69889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1592), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72838,63 +69961,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [236] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9577), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -72903,25 +70026,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -72936,7 +70059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), [anon_sym_while] = ACTIONS(1409), @@ -72998,63 +70121,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [237] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9831), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73063,64 +70185,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(7), [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(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_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(1594), + [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(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), @@ -73139,82 +70262,82 @@ static const uint16_t ts_parse_table[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(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), + [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), }, - [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), + [238] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9999), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73223,25 +70346,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(354), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -73256,10 +70379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), + [anon_sym_while] = ACTIONS(1596), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), @@ -73318,63 +70441,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [239] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10060), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73383,25 +70505,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), + [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(1598), + [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), + }, + [240] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(9589), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -73416,10 +70699,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1413), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), @@ -73478,63 +70761,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [241] = { + [sym_type_alias] = STATE(5422), + [sym__declaration] = STATE(5422), + [sym_class_declaration] = STATE(5422), + [sym_function_declaration] = STATE(5422), + [sym_property_declaration] = STATE(5422), + [sym_getter] = STATE(5422), + [sym_setter] = STATE(5422), + [sym_object_declaration] = STATE(5422), + [sym__statement] = STATE(5422), + [sym_control_structure_body] = STATE(5266), + [sym__block] = STATE(5422), + [sym__loop_statement] = STATE(5422), + [sym_for_statement] = STATE(5422), + [sym_while_statement] = STATE(5422), + [sym_do_while_statement] = STATE(5422), + [sym_assignment] = STATE(5422), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8304), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73543,25 +70826,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(785), + [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(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(399), + [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(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [242] = { + [sym_type_alias] = STATE(10002), + [sym__declaration] = STATE(10002), + [sym_class_declaration] = STATE(10002), + [sym_function_declaration] = STATE(10002), + [sym_property_declaration] = STATE(10002), + [sym_getter] = STATE(10002), + [sym_setter] = STATE(10002), + [sym_object_declaration] = STATE(10002), + [sym__statement] = STATE(10002), + [sym_control_structure_body] = STATE(10093), + [sym__block] = STATE(10002), + [sym__loop_statement] = STATE(10002), + [sym_for_statement] = STATE(10002), + [sym_while_statement] = STATE(10002), + [sym_do_while_statement] = STATE(10002), + [sym_assignment] = STATE(10002), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_modifiers] = STATE(8306), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(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(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(207), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_typealias] = ACTIONS(301), [anon_sym_class] = ACTIONS(303), [anon_sym_interface] = ACTIONS(303), @@ -73576,10 +71019,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(319), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1600), [anon_sym_do] = ACTIONS(329), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), @@ -73638,62 +71081,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [243] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9966), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73702,21 +71145,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -73726,7 +71169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1602), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73798,62 +71241,62 @@ 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(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), + [244] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9730), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -73862,21 +71305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -73886,7 +71329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73958,62 +71401,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [245] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74022,22 +71464,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1606), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -74046,7 +71490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [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), @@ -74118,61 +71561,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [246] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9496), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74181,24 +71625,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [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), @@ -74207,6 +71649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1608), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74278,62 +71721,62 @@ 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(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), + [247] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9568), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74342,21 +71785,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -74366,7 +71809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74438,223 +71881,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [248] = { + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_DASH_GT] = ACTIONS(1614), + [sym_label] = ACTIONS(175), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), + [anon_sym_else] = ACTIONS(1616), + [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(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(175), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(1614), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(205), }, - [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), + [249] = { + [sym_type_alias] = STATE(5422), + [sym__declaration] = STATE(5422), + [sym_class_declaration] = STATE(5422), + [sym_function_declaration] = STATE(5422), + [sym_property_declaration] = STATE(5422), + [sym_getter] = STATE(5422), + [sym_setter] = STATE(5422), + [sym_object_declaration] = STATE(5422), + [sym__statement] = STATE(5422), + [sym_control_structure_body] = STATE(5286), + [sym__block] = STATE(5422), + [sym__loop_statement] = STATE(5422), + [sym_for_statement] = STATE(5422), + [sym_while_statement] = STATE(5422), + [sym_do_while_statement] = STATE(5422), + [sym_assignment] = STATE(5422), + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8304), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74663,64 +72106,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(785), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(211), + [sym__alpha_identifier] = ACTIONS(387), [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(1620), - [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_LBRACK] = ACTIONS(389), + [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(399), + [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(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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), @@ -74739,81 +72182,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(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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(469), }, - [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), + [250] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9688), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74822,21 +72265,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -74846,7 +72289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1630), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -74918,62 +72361,62 @@ 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(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), + [251] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(10044), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -74982,21 +72425,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -75006,7 +72449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1632), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -75078,62 +72521,61 @@ 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(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), + [252] = { + [sym_type_alias] = STATE(9120), + [sym__declaration] = STATE(9120), + [sym_class_declaration] = STATE(9120), + [sym_function_declaration] = STATE(9120), + [sym_property_declaration] = STATE(9120), + [sym_getter] = STATE(9120), + [sym_setter] = STATE(9120), + [sym_object_declaration] = STATE(9120), + [sym__statement] = STATE(9120), + [sym__loop_statement] = STATE(9120), + [sym_for_statement] = STATE(9120), + [sym_while_statement] = STATE(9120), + [sym_do_while_statement] = STATE(9120), + [sym_assignment] = STATE(9120), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -75142,22 +72584,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym_source_file_repeat3] = STATE(231), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), + [ts_builtin_sym_end] = ACTIONS(1191), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -75166,7 +72610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [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), @@ -75238,62 +72681,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [253] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9668), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -75302,21 +72745,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -75326,7 +72769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1634), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -75398,62 +72841,62 @@ 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(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), + [254] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9583), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -75462,21 +72905,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -75486,7 +72929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1636), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -75558,62 +73001,62 @@ 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(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), + [255] = { + [sym_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9746), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -75622,21 +73065,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -75646,807 +73089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [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), - [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), - }, - [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(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), - }, - [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_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), - }, - [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(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(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), - }, - [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_interface] = ACTIONS(21), - [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), - [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), - }, - [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_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -76519,61 +73162,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(8664), + [sym__declaration] = STATE(8664), + [sym_class_declaration] = STATE(8664), + [sym_function_declaration] = STATE(8664), + [sym_property_declaration] = STATE(8664), + [sym_getter] = STATE(8664), + [sym_setter] = STATE(8664), + [sym_object_declaration] = STATE(8664), + [sym_statements] = STATE(9599), + [sym__statement] = STATE(8664), + [sym__loop_statement] = STATE(8664), + [sym_for_statement] = STATE(8664), + [sym_while_statement] = STATE(8664), + [sym_do_while_statement] = STATE(8664), + [sym_assignment] = STATE(8664), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -76582,21 +73225,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -76679,60 +73322,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(9383), + [sym__declaration] = STATE(9383), + [sym_class_declaration] = STATE(9383), + [sym_function_declaration] = STATE(9383), + [sym_property_declaration] = STATE(9383), + [sym_getter] = STATE(9383), + [sym_setter] = STATE(9383), + [sym_object_declaration] = STATE(9383), + [sym__statement] = STATE(9383), + [sym__loop_statement] = STATE(9383), + [sym_for_statement] = STATE(9383), + [sym_while_statement] = STATE(9383), + [sym_do_while_statement] = STATE(9383), + [sym_assignment] = STATE(9383), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -76741,21 +73384,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -76838,60 +73481,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [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_type_alias] = STATE(9383), + [sym__declaration] = STATE(9383), + [sym_class_declaration] = STATE(9383), + [sym_function_declaration] = STATE(9383), + [sym_property_declaration] = STATE(9383), + [sym_getter] = STATE(9383), + [sym_setter] = STATE(9383), + [sym_object_declaration] = STATE(9383), + [sym__statement] = STATE(9383), + [sym__loop_statement] = STATE(9383), + [sym_for_statement] = STATE(9383), + [sym_while_statement] = STATE(9383), + [sym_do_while_statement] = STATE(9383), + [sym_assignment] = STATE(9383), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -76900,21 +73543,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -76997,60 +73640,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_type_alias] = STATE(9383), + [sym__declaration] = STATE(9383), + [sym_class_declaration] = STATE(9383), + [sym_function_declaration] = STATE(9383), + [sym_property_declaration] = STATE(9383), + [sym_getter] = STATE(9383), + [sym_setter] = STATE(9383), + [sym_object_declaration] = STATE(9383), + [sym__statement] = STATE(9383), + [sym__loop_statement] = STATE(9383), + [sym_for_statement] = STATE(9383), + [sym_while_statement] = STATE(9383), + [sym_do_while_statement] = STATE(9383), + [sym_assignment] = STATE(9383), + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_modifiers] = STATE(8300), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -77059,21 +73702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3920), + [sym__multi_annotation] = STATE(3920), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(767), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), @@ -77155,145 +73798,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(1423), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1650), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [sym_label] = ACTIONS(525), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [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_if] = ACTIONS(511), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(525), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -77306,313 +73949,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [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__expression] = STATE(373), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1662), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(585), + [sym_label] = ACTIONS(611), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [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_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1616), + [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(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [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__expression] = STATE(2098), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1614), [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_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1620), [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_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(785), - [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(1584), + [anon_sym_STAR] = ACTIONS(687), + [sym_label] = ACTIONS(701), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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(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(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), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(701), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -77620,148 +74263,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [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__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(791), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [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_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -77774,251 +74417,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [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__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(719), + [sym_label] = ACTIONS(733), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [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_if] = ACTIONS(727), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [265] = { - [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__expression] = STATE(2295), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_RBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1614), [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_COMMA] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(1614), [sym_label] = ACTIONS(847), - [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_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1680), @@ -78026,57 +74669,57 @@ 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_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_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(847), - [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), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -78084,295 +74727,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, [266] = { - [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__expression] = STATE(467), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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_as] = ACTIONS(1584), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1660), [anon_sym_fun] = ACTIONS(1684), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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_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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), [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_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(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(1582), - [anon_sym_suspend] = ACTIONS(1584), - [anon_sym_sealed] = ACTIONS(1584), - [anon_sym_annotation] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), }, [267] = { - [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__expression] = STATE(2455), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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_as] = ACTIONS(1584), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1648), [anon_sym_fun] = ACTIONS(1692), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(515), - [anon_sym_try] = ACTIONS(517), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), [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_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_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [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_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), [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_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -78385,92 +75028,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, [268] = { - [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__expression] = STATE(2471), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1614), [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_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), [anon_sym_throw] = ACTIONS(1704), @@ -78478,57 +75121,57 @@ 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_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), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -78536,142 +75179,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [sym__backtick_identifier] = ACTIONS(203), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, [269] = { - [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__expression] = STATE(539), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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_as] = ACTIONS(1584), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1664), + [anon_sym_inner] = ACTIONS(1664), + [anon_sym_value] = ACTIONS(1664), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1664), + [anon_sym_actual] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(639), + }, + [270] = { + [sym__expression] = STATE(2582), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [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_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1614), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [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(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_if] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [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_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), [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_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), [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_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -78684,180 +75476,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [270] = { - [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_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_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(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(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(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(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), - }, [271] = { - [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_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -78866,33 +75509,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1744), [anon_sym_get] = ACTIONS(1746), [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -78900,21 +75543,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(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [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(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -78931,7 +75574,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(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -78960,44 +75603,44 @@ 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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1736), }, [272] = { - [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_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79006,28 +75649,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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(1746), [anon_sym_set] = ACTIONS(1748), @@ -79119,25 +75762,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [273] = { - [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_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79146,33 +75789,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1796), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -79180,21 +75823,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(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_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(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_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(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -79211,7 +75854,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(1796), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -79240,44 +75883,44 @@ 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(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), + [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(1798), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1792), }, [274] = { - [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_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79286,31 +75929,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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(1746), - [anon_sym_set] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1750), @@ -79399,25 +76042,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1804), }, [275] = { - [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_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79426,31 +76069,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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(1746), - [anon_sym_set] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1750), @@ -79539,25 +76182,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [276] = { - [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_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79566,31 +76209,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = ACTIONS(1814), [anon_sym_object] = ACTIONS(1814), [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), [anon_sym_this] = ACTIONS(1814), [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1750), @@ -79679,25 +76322,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1816), }, [277] = { - [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_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79706,33 +76349,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1796), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1824), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -79740,21 +76383,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(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_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -79771,7 +76414,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(1796), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -79800,44 +76443,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1736), }, [278] = { - [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_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79846,33 +76489,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [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_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1800), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -79880,21 +76523,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(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(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [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(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -79911,7 +76554,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(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -79940,44 +76583,44 @@ 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(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1824), }, [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_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -79986,33 +76629,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1802), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(1802), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [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_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -80020,21 +76663,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(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_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -80051,7 +76694,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(1802), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80080,44 +76723,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1824), }, [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_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80126,33 +76769,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [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_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), @@ -80160,21 +76803,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(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(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(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), @@ -80191,7 +76834,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(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80220,44 +76863,44 @@ 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), }, [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_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80266,31 +76909,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1824), + [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), @@ -80379,25 +77022,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80406,31 +77049,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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_get] = ACTIONS(1746), + [anon_sym_set] = ACTIONS(1748), [anon_sym_this] = ACTIONS(1814), [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1750), @@ -80519,91 +77162,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1816), }, [283] = { - [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__expression] = STATE(3289), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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_RBRACK] = ACTIONS(1582), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1584), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [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_COMMA] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(1614), [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_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(251), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(257), @@ -80611,29 +77254,29 @@ 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_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_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [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_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), [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_BANG_BANG] = ACTIONS(1614), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -80653,30 +77296,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(289), [anon_sym_SQUOTE] = ACTIONS(291), [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, [284] = { - [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_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80685,31 +77328,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1796), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1850), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -80717,21 +77360,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(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_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(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_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), @@ -80748,7 +77391,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(1796), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80777,44 +77420,44 @@ 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(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), + [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(1798), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1792), }, [285] = { - [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_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80823,31 +77466,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1814), - [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -80855,21 +77498,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(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_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(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_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), @@ -80886,7 +77529,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(1814), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -80915,44 +77558,44 @@ 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(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), + [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(1816), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1804), }, [286] = { - [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_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -80961,31 +77604,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -80993,21 +77636,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(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(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(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), @@ -81024,7 +77667,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(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81053,44 +77696,44 @@ 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(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(1810), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1804), }, [287] = { - [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_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81099,31 +77742,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1742), - [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_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81131,21 +77774,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(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(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(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), @@ -81162,7 +77805,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(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81191,44 +77834,44 @@ 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(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(1734), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1810), }, [288] = { - [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_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81237,31 +77880,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1802), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1888), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81269,21 +77912,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(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_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(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_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), @@ -81300,7 +77943,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(1802), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81329,44 +77972,44 @@ 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(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), + [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(1804), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1810), }, [289] = { - [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_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81375,31 +78018,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1742), - [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_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81407,21 +78050,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(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(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(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), @@ -81438,7 +78081,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(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81467,44 +78110,44 @@ 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), }, [290] = { - [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_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81513,31 +78156,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1892), [anon_sym_get] = ACTIONS(1852), [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81545,21 +78188,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(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(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(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), @@ -81576,7 +78219,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(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81605,44 +78248,44 @@ 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), }, [291] = { - [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_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81651,31 +78294,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1802), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(1888), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81683,21 +78326,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(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_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81714,7 +78357,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(1802), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81743,44 +78386,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1824), }, [292] = { - [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_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81789,31 +78432,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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(1796), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1888), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81821,21 +78464,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(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_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81852,7 +78495,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(1796), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -81881,44 +78524,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1824), }, [293] = { - [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_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -81927,31 +78570,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(1888), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1852), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -81959,21 +78602,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(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [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(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -81990,7 +78633,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(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82019,44 +78662,44 @@ 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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1736), }, [294] = { - [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_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -82065,31 +78708,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1814), - [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(1888), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82097,21 +78740,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(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_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [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_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -82128,7 +78771,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(1814), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82157,44 +78800,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1736), }, [295] = { - [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_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -82203,31 +78846,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(1888), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1882), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -82235,21 +78878,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), @@ -82266,7 +78909,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), @@ -82295,242 +78938,106 @@ 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), }, [296] = { - [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_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(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(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), - [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), - }, - [297] = { - [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__expression] = STATE(3777), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [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_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [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_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(375), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(377), @@ -82538,41 +79045,41 @@ 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(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_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [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_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), [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), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -82580,93 +79087,229 @@ 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(1582), - [sym_safe_nav] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [297] = { + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(415), + [sym_label] = ACTIONS(441), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(427), + [anon_sym_else] = ACTIONS(1616), + [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(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(443), + [anon_sym_DASH_DASH] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, [298] = { - [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__expression] = STATE(4043), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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_as] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1584), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1926), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [anon_sym_get] = ACTIONS(1842), [anon_sym_set] = ACTIONS(1842), [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_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(817), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(335), @@ -82674,29 +79317,29 @@ 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_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_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_BANG_BANG] = ACTIONS(1614), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -82716,30 +79359,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(289), [anon_sym_SQUOTE] = ACTIONS(291), [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, [299] = { - [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__expression] = STATE(4086), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(751), + [sym_label] = ACTIONS(759), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1616), + [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(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [300] = { + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -82748,66 +79525,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1738), - [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(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), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [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), [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(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_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_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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1796), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82836,43 +79613,43 @@ 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(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), + [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(1798), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1792), }, - [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), + [301] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -82882,66 +79659,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(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(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), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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(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(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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1814), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -82970,44 +79747,44 @@ 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(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), + [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(1816), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1804), }, - [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), + [302] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -83016,66 +79793,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(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_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1968), [anon_sym_get] = ACTIONS(1964), [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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_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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1814), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83104,312 +79881,44 @@ 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(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), + [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(1816), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [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), + [sym__string_start] = ACTIONS(1810), }, [303] = { - [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_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -83418,66 +79927,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1738), - [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(1972), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1970), [anon_sym_get] = ACTIONS(1964), [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1790), + [anon_sym_super] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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_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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1796), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83506,44 +80015,44 @@ 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(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), + [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(1798), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1792), }, - [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), + [304] = { + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -83552,66 +80061,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [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(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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(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(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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1790), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83640,44 +80149,44 @@ 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), }, - [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), + [305] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -83686,66 +80195,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [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(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), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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_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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1790), + [anon_sym_BANG] = ACTIONS(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83774,44 +80283,44 @@ 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), }, - [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), + [306] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -83820,66 +80329,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), - [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(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1802), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -83908,43 +80417,177 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1736), + }, + [307] = { + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(655), + [sym_label] = ACTIONS(669), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(669), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [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_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -83954,66 +80597,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [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), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1802), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84042,44 +80685,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1824), }, [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_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -84088,66 +80731,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(1928), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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(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(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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1808), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84176,43 +80819,43 @@ 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), }, [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_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -84222,66 +80865,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [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), + [anon_sym_get] = ACTIONS(1964), + [anon_sym_set] = ACTIONS(1966), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1732), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84310,44 +80953,44 @@ 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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1736), }, [311] = { - [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_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -84356,66 +80999,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1738), - [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_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1986), [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), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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(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(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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1732), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84444,44 +81087,44 @@ 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), }, [312] = { - [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_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -84490,66 +81133,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(1928), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1938), [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(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(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(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(1808), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84578,109 +81221,109 @@ 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(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1824), }, [313] = { - [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__expression] = STATE(4118), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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_RBRACK] = ACTIONS(1582), - [anon_sym_as] = ACTIONS(1584), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [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_COMMA] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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), - [anon_sym_DASH_GT] = ACTIONS(1582), + [anon_sym_DASH_GT] = ACTIONS(1614), [sym_label] = ACTIONS(877), - [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_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -84688,24 +81331,24 @@ 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_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_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), [anon_sym_PLUS_PLUS] = ACTIONS(879), [anon_sym_DASH_DASH] = ACTIONS(879), [anon_sym_BANG] = ACTIONS(877), - [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1614), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -84725,30 +81368,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(289), [anon_sym_SQUOTE] = ACTIONS(291), [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, [314] = { - [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_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -84757,30 +81400,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1814), - [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(2000), [anon_sym_get] = ACTIONS(2002), [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -84788,15 +81431,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(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_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), @@ -84814,7 +81457,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(1814), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84843,44 +81486,44 @@ 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(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), + [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(1816), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1804), }, [315] = { - [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_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -84889,30 +81532,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1814), - [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(2030), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -84920,15 +81563,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(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_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -84946,7 +81589,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(1814), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -84975,44 +81618,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1824), }, [316] = { - [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_getter] = STATE(5413), + [sym_setter] = STATE(5413), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85021,30 +81664,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(2036), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85052,15 +81695,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(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_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85078,7 +81721,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(1796), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85107,44 +81750,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1824), }, [317] = { - [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_getter] = STATE(5360), + [sym_setter] = STATE(5360), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85153,30 +81796,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(2042), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85184,15 +81827,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), @@ -85210,7 +81853,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), @@ -85239,44 +81882,44 @@ 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), }, [318] = { - [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_getter] = STATE(5358), + [sym_setter] = STATE(5358), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85285,30 +81928,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(2044), [anon_sym_get] = ACTIONS(2038), [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85316,15 +81959,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(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), @@ -85342,7 +81985,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(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85371,44 +82014,44 @@ 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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1764), + [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(1810), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1810), }, [319] = { - [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_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85417,30 +82060,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(2046), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [anon_sym_this] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85448,15 +82091,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(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), @@ -85474,7 +82117,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(1808), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85503,44 +82146,44 @@ 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(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(1734), + [sym__automatic_semicolon] = ACTIONS(1810), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1734), + [sym__string_start] = ACTIONS(1810), }, [320] = { - [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_getter] = STATE(5409), + [sym_setter] = STATE(5409), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85549,30 +82192,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2040), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85580,15 +82223,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(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_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85606,7 +82249,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(1796), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85635,44 +82278,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1736), }, [321] = { - [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_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85681,30 +82324,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85712,15 +82355,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(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85738,7 +82381,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(1822), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85767,44 +82410,44 @@ 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(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [sym__string_start] = ACTIONS(1824), }, [322] = { - [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_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85813,30 +82456,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(2052), [anon_sym_get] = ACTIONS(2032), [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -85844,15 +82487,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(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_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -85870,7 +82513,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(1802), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -85899,44 +82542,44 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1736), }, [323] = { - [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_getter] = STATE(5379), + [sym_setter] = STATE(5379), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -85945,30 +82588,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), + [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), @@ -85976,15 +82619,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(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_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), @@ -86002,7 +82645,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(1796), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86031,44 +82674,44 @@ 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(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), + [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(1798), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [sym__string_start] = ACTIONS(1792), }, [324] = { - [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_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86077,25 +82720,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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(2002), [anon_sym_set] = ACTIONS(2004), @@ -86182,25 +82825,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [325] = { - [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_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86209,30 +82852,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86240,15 +82883,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(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_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), @@ -86266,7 +82909,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(1802), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86295,44 +82938,44 @@ 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(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), + [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(1804), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1816), }, [326] = { - [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_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86341,28 +82984,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), [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_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(2006), @@ -86446,25 +83089,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [327] = { - [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_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86473,30 +83116,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), + [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), @@ -86504,15 +83147,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(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), @@ -86530,7 +83173,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), @@ -86559,44 +83202,44 @@ 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), }, [328] = { - [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_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86605,30 +83248,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1802), - [anon_sym_super] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86636,15 +83279,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(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_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), @@ -86662,7 +83305,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(1802), + [anon_sym_BANG] = ACTIONS(1814), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86691,44 +83334,44 @@ 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(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), + [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(1804), + [sym__automatic_semicolon] = ACTIONS(1816), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), + [sym__string_start] = ACTIONS(1816), }, [329] = { - [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_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86737,30 +83380,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_fun] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_super] = ACTIONS(1732), + [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), @@ -86768,15 +83411,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), @@ -86794,7 +83437,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), @@ -86823,44 +83466,44 @@ 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), }, [330] = { - [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_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -86869,30 +83512,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), + [anon_sym_get] = ACTIONS(2002), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -86900,15 +83543,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(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -86926,7 +83569,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(1734), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -86955,44 +83598,44 @@ 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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1736), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [sym__string_start] = ACTIONS(1736), }, [331] = { - [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_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -87001,30 +83644,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1814), - [anon_sym_fun] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(2038), - [anon_sym_set] = ACTIONS(2040), - [anon_sym_this] = ACTIONS(1814), - [anon_sym_super] = ACTIONS(1814), + [anon_sym_get] = ACTIONS(2032), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_this] = ACTIONS(1802), + [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -87032,15 +83675,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(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_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), @@ -87058,7 +83701,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(1814), + [anon_sym_BANG] = ACTIONS(1802), [anon_sym_BANG_BANG] = ACTIONS(1782), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), @@ -87087,76 +83730,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(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), + [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(1816), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1816), + [sym__string_start] = ACTIONS(1804), }, [332] = { - [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__expression] = STATE(1222), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2079), @@ -87237,57 +83880,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2176), }, [333] = { - [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__expression] = STATE(4126), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2182), @@ -87368,99 +84011,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2275), }, [334] = { - [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), + [sym__expression] = STATE(1426), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2281), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2290), + [anon_sym_fun] = 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_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [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_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_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(2298), + [anon_sym_inner] = ACTIONS(2298), + [anon_sym_value] = ACTIONS(2298), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -87479,119 +84122,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(2298), + [anon_sym_actual] = ACTIONS(2298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), }, [335] = { - [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), + [sym__expression] = STATE(3728), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2380), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2389), + [anon_sym_fun] = ACTIONS(2393), + [anon_sym_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2407), + [sym_label] = ACTIONS(2410), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [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_null] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2320), - [anon_sym_inner] = ACTIONS(2320), - [anon_sym_value] = ACTIONS(2320), + [anon_sym_data] = ACTIONS(2397), + [anon_sym_inner] = ACTIONS(2397), + [anon_sym_value] = ACTIONS(2397), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -87610,119 +84253,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(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), + [anon_sym_expect] = ACTIONS(2397), + [anon_sym_actual] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), }, [336] = { - [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__expression] = STATE(404), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2479), [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_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2488), + [anon_sym_fun] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2506), + [sym_label] = ACTIONS(2509), [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_null] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), [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_data] = ACTIONS(2496), + [anon_sym_inner] = ACTIONS(2496), + [anon_sym_value] = ACTIONS(2496), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -87741,119 +84384,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(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), + [anon_sym_expect] = ACTIONS(2496), + [anon_sym_actual] = ACTIONS(2496), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), }, [337] = { - [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), + [sym__expression] = STATE(4040), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2182), [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_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2191), + [anon_sym_fun] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2576), + [sym_label] = ACTIONS(2579), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [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_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), [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_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), @@ -87872,119 +84515,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(2419), - [anon_sym_actual] = ACTIONS(2419), + [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(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_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), }, [338] = { - [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), + [sym__expression] = STATE(2466), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2090), + [anon_sym_fun] = ACTIONS(2594), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2598), + [sym_label] = ACTIONS(2601), [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_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2320), - [anon_sym_inner] = ACTIONS(2320), - [anon_sym_value] = ACTIONS(2320), + [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), @@ -88003,119 +84646,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(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), + [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), }, [339] = { - [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), + [sym__expression] = STATE(2534), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2281), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [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_object] = ACTIONS(2290), + [anon_sym_fun] = ACTIONS(2616), + [anon_sym_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2620), + [sym_label] = ACTIONS(2623), [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_null] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), [anon_sym_suspend] = ACTIONS(2082), [anon_sym_sealed] = ACTIONS(2082), [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2559), - [anon_sym_inner] = ACTIONS(2559), - [anon_sym_value] = ACTIONS(2559), + [anon_sym_data] = ACTIONS(2298), + [anon_sym_inner] = ACTIONS(2298), + [anon_sym_value] = ACTIONS(2298), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88134,77 +84777,77 @@ 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(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), + [anon_sym_expect] = ACTIONS(2298), + [anon_sym_actual] = ACTIONS(2298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), }, [340] = { - [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__expression] = STATE(966), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2641), @@ -88268,7 +84911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2658), [anon_sym_actual] = ACTIONS(2658), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_return_AT] = ACTIONS(2440), [anon_sym_continue_AT] = ACTIONS(2701), [anon_sym_break_AT] = ACTIONS(2704), [anon_sym_this_AT] = ACTIONS(2707), @@ -88285,88 +84928,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2731), }, [341] = { - [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__expression] = STATE(4088), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2380), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2551), + [anon_sym_object] = ACTIONS(2389), [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_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), [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(2575), + [anon_sym_null] = ACTIONS(2413), [anon_sym_if] = ACTIONS(2744), - [anon_sym_when] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2584), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), [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_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), [anon_sym_PLUS] = ACTIONS(2741), [anon_sym_DASH] = ACTIONS(2741), [anon_sym_PLUS_PLUS] = ACTIONS(2753), @@ -88375,9 +85018,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(2559), - [anon_sym_inner] = ACTIONS(2559), - [anon_sym_value] = ACTIONS(2559), + [anon_sym_data] = ACTIONS(2397), + [anon_sym_inner] = ACTIONS(2397), + [anon_sym_value] = ACTIONS(2397), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88396,108 +85039,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(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), + [anon_sym_expect] = ACTIONS(2397), + [anon_sym_actual] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), }, [342] = { - [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), + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2182), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2650), + [anon_sym_object] = ACTIONS(2191), [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_get] = ACTIONS(2199), + [anon_sym_set] = ACTIONS(2199), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), [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(2674), + [anon_sym_null] = ACTIONS(2215), [anon_sym_if] = ACTIONS(2766), - [anon_sym_when] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2683), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), [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_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), [anon_sym_PLUS] = ACTIONS(2763), [anon_sym_DASH] = ACTIONS(2763), [anon_sym_PLUS_PLUS] = ACTIONS(2775), @@ -88506,9 +85149,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(2658), - [anon_sym_inner] = ACTIONS(2658), - [anon_sym_value] = ACTIONS(2658), + [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), @@ -88527,108 +85170,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(2658), - [anon_sym_actual] = ACTIONS(2658), + [anon_sym_expect] = ACTIONS(2199), + [anon_sym_actual] = ACTIONS(2199), [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), + [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(2731), + [sym__string_start] = ACTIONS(2275), }, [343] = { - [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), + [sym__expression] = STATE(2209), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2281), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2650), + [anon_sym_object] = ACTIONS(2290), [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_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), [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_null] = ACTIONS(2314), [anon_sym_if] = ACTIONS(2788), - [anon_sym_when] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2683), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), [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_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(2785), [anon_sym_DASH] = ACTIONS(2785), [anon_sym_PLUS_PLUS] = ACTIONS(2797), @@ -88637,9 +85280,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(2658), - [anon_sym_inner] = ACTIONS(2658), - [anon_sym_value] = ACTIONS(2658), + [anon_sym_data] = ACTIONS(2298), + [anon_sym_inner] = ACTIONS(2298), + [anon_sym_value] = ACTIONS(2298), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88658,108 +85301,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(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), + [anon_sym_expect] = ACTIONS(2298), + [anon_sym_actual] = ACTIONS(2298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), }, [344] = { - [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), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2479), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2191), + [anon_sym_object] = ACTIONS(2488), [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_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), [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_null] = ACTIONS(2512), [anon_sym_if] = ACTIONS(2810), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), [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_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2807), [anon_sym_DASH] = ACTIONS(2807), [anon_sym_PLUS_PLUS] = ACTIONS(2819), @@ -88768,9 +85411,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(2496), + [anon_sym_inner] = ACTIONS(2496), + [anon_sym_value] = ACTIONS(2496), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88789,108 +85432,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(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(2496), + [anon_sym_actual] = ACTIONS(2496), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), }, [345] = { - [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), + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2479), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2488), [anon_sym_fun] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), [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(2116), + [anon_sym_null] = ACTIONS(2512), [anon_sym_if] = ACTIONS(2832), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), [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_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2829), [anon_sym_DASH] = ACTIONS(2829), [anon_sym_PLUS_PLUS] = ACTIONS(2841), @@ -88899,9 +85542,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(2496), + [anon_sym_inner] = ACTIONS(2496), + [anon_sym_value] = ACTIONS(2496), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -88920,77 +85563,77 @@ 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(2496), + [anon_sym_actual] = ACTIONS(2496), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), }, [346] = { - [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__expression] = STATE(1223), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2641), @@ -89054,7 +85697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2658), [anon_sym_actual] = ACTIONS(2658), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2602), + [anon_sym_return_AT] = ACTIONS(2440), [anon_sym_continue_AT] = ACTIONS(2701), [anon_sym_break_AT] = ACTIONS(2704), [anon_sym_this_AT] = ACTIONS(2707), @@ -89071,88 +85714,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2731), }, [347] = { - [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), + [sym__expression] = STATE(2304), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2312), + [anon_sym_object] = ACTIONS(2090), [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_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), [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_null] = ACTIONS(2116), [anon_sym_if] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2345), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), [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_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(2873), [anon_sym_DASH] = ACTIONS(2873), [anon_sym_PLUS_PLUS] = ACTIONS(2885), @@ -89161,9 +85804,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(2320), - [anon_sym_inner] = ACTIONS(2320), - [anon_sym_value] = ACTIONS(2320), + [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), @@ -89182,108 +85825,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(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), + [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), }, [348] = { - [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), + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2380), [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_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2411), + [anon_sym_object] = ACTIONS(2389), [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_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), [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(2435), + [anon_sym_null] = ACTIONS(2413), [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2444), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), [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_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), [anon_sym_PLUS] = ACTIONS(2895), [anon_sym_DASH] = ACTIONS(2895), [anon_sym_PLUS_PLUS] = ACTIONS(2907), @@ -89292,9 +85935,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(2419), - [anon_sym_inner] = ACTIONS(2419), - [anon_sym_value] = ACTIONS(2419), + [anon_sym_data] = ACTIONS(2397), + [anon_sym_inner] = ACTIONS(2397), + [anon_sym_value] = ACTIONS(2397), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89313,108 +85956,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(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), + [anon_sym_expect] = ACTIONS(2397), + [anon_sym_actual] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), }, [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), + [sym__expression] = STATE(2083), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2079), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2551), + [anon_sym_object] = ACTIONS(2090), [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_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), [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_null] = ACTIONS(2116), [anon_sym_if] = ACTIONS(2920), - [anon_sym_when] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2584), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), [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_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), [anon_sym_PLUS] = ACTIONS(2917), [anon_sym_DASH] = ACTIONS(2917), [anon_sym_PLUS_PLUS] = ACTIONS(2929), @@ -89423,9 +86066,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(2559), - [anon_sym_inner] = ACTIONS(2559), - [anon_sym_value] = ACTIONS(2559), + [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), @@ -89444,108 +86087,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(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), + [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), }, [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), + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2380), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2389), [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_get] = ACTIONS(2397), + [anon_sym_set] = ACTIONS(2397), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), [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_null] = ACTIONS(2413), [anon_sym_if] = ACTIONS(2942), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), [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_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), [anon_sym_PLUS] = ACTIONS(2939), [anon_sym_DASH] = ACTIONS(2939), [anon_sym_PLUS_PLUS] = ACTIONS(2951), @@ -89554,9 +86197,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(2397), + [anon_sym_inner] = ACTIONS(2397), + [anon_sym_value] = ACTIONS(2397), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89575,108 +86218,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(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(2397), + [anon_sym_actual] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), }, [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), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2281), [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_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2411), + [anon_sym_object] = ACTIONS(2290), [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_get] = ACTIONS(2298), + [anon_sym_set] = ACTIONS(2298), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), [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_null] = ACTIONS(2314), [anon_sym_if] = ACTIONS(2964), - [anon_sym_when] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2444), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), [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_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(2961), [anon_sym_DASH] = ACTIONS(2961), [anon_sym_PLUS_PLUS] = ACTIONS(2973), @@ -89685,9 +86328,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(2419), - [anon_sym_inner] = ACTIONS(2419), - [anon_sym_value] = ACTIONS(2419), + [anon_sym_data] = ACTIONS(2298), + [anon_sym_inner] = ACTIONS(2298), + [anon_sym_value] = ACTIONS(2298), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89706,108 +86349,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(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), + [anon_sym_expect] = ACTIONS(2298), + [anon_sym_actual] = ACTIONS(2298), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), }, [352] = { - [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), + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2479), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2312), + [anon_sym_object] = ACTIONS(2488), [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_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), [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_null] = ACTIONS(2512), [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2345), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), [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_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), [anon_sym_PLUS] = ACTIONS(2983), [anon_sym_DASH] = ACTIONS(2983), [anon_sym_PLUS_PLUS] = ACTIONS(2995), @@ -89816,9 +86459,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(2320), - [anon_sym_inner] = ACTIONS(2320), - [anon_sym_value] = ACTIONS(2320), + [anon_sym_data] = ACTIONS(2496), + [anon_sym_inner] = ACTIONS(2496), + [anon_sym_value] = ACTIONS(2496), [anon_sym_override] = ACTIONS(2082), [anon_sym_lateinit] = ACTIONS(2082), [anon_sym_public] = ACTIONS(2082), @@ -89837,108 +86480,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(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), + [anon_sym_expect] = ACTIONS(2496), + [anon_sym_actual] = ACTIONS(2496), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), }, [353] = { - [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), + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), + [anon_sym_object] = ACTIONS(2650), [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_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), [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(2116), + [anon_sym_null] = ACTIONS(2674), [anon_sym_if] = ACTIONS(3008), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), [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_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), [anon_sym_PLUS] = ACTIONS(3005), [anon_sym_DASH] = ACTIONS(3005), [anon_sym_PLUS_PLUS] = ACTIONS(3017), @@ -89947,9 +86590,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(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), @@ -89968,77 +86611,77 @@ 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), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), [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_return_AT] = ACTIONS(2440), + [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(2176), + [sym__string_start] = ACTIONS(2731), }, [354] = { - [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__expression] = STATE(4266), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), [sym__alpha_identifier] = ACTIONS(2179), [anon_sym_AT] = ACTIONS(2075), [anon_sym_LBRACK] = ACTIONS(2182), @@ -90119,88 +86762,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(2275), }, [355] = { - [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), + [sym__expression] = STATE(2104), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2641), [anon_sym_typealias] = ACTIONS(2082), [anon_sym_class] = ACTIONS(2082), [anon_sym_interface] = ACTIONS(2082), [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), [anon_sym_val] = ACTIONS(2082), [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2551), + [anon_sym_object] = ACTIONS(2650), [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_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), [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_null] = ACTIONS(2674), [anon_sym_if] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2584), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), [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_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), [anon_sym_PLUS] = ACTIONS(3049), [anon_sym_DASH] = ACTIONS(3049), [anon_sym_PLUS_PLUS] = ACTIONS(3061), @@ -90209,9 +86852,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(2559), - [anon_sym_inner] = ACTIONS(2559), - [anon_sym_value] = ACTIONS(2559), + [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), @@ -90230,236 +86873,236 @@ 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(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), + [anon_sym_expect] = ACTIONS(2658), + [anon_sym_actual] = ACTIONS(2658), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [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), }, [356] = { - [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__expression] = STATE(2109), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), [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_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), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1916), [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_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), [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), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [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(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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [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__expression] = STATE(4256), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_as] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [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_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1904), [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_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(961), - [sym_label] = ACTIONS(969), - [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(3076), @@ -90467,36 +87110,36 @@ 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(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(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(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), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -90504,92 +87147,92 @@ 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(1582), - [sym_safe_nav] = ACTIONS(1582), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, [358] = { - [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__expression] = STATE(4265), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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_as] = ACTIONS(1584), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1614), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1614), [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), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), - [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_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(1584), + [anon_sym_else] = ACTIONS(1616), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(3084), @@ -90597,24 +87240,24 @@ 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_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_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), [anon_sym_PLUS] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(339), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_as_QMARK] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), [anon_sym_PLUS_PLUS] = ACTIONS(341), [anon_sym_DASH_DASH] = ACTIONS(341), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_BANG_BANG] = ACTIONS(1582), + [anon_sym_BANG_BANG] = ACTIONS(1614), [anon_sym_data] = ACTIONS(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -90634,48 +87277,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(289), [anon_sym_SQUOTE] = ACTIONS(291), [sym__backtick_identifier] = ACTIONS(293), - [sym_safe_nav] = ACTIONS(1582), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, [359] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3088), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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(3092), [anon_sym_set] = ACTIONS(3092), @@ -90686,8 +87329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -90703,10 +87346,10 @@ 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(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), + [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(1770), [anon_sym_GT_EQ] = ACTIONS(1770), [anon_sym_BANGin] = ACTIONS(1772), @@ -90767,55 +87410,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3090), }, [360] = { - [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), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3094), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = 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_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3094), [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(1750), [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_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(3094), [anon_sym_if] = ACTIONS(3094), [anon_sym_else] = ACTIONS(3094), @@ -90831,15 +87474,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -90852,9 +87495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3094), [anon_sym_lateinit] = ACTIONS(3094), [anon_sym_public] = ACTIONS(3094), @@ -90873,8 +87516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3096), [anon_sym_continue_AT] = ACTIONS(3096), @@ -90888,77 +87531,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3094), [anon_sym_false] = ACTIONS(3094), [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3096), }, [361] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3098), [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(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_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), [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(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_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), [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(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -90975,224 +87618,224 @@ 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(3098), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [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), + [anon_sym_return_AT] = ACTIONS(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), + [sym__automatic_semicolon] = ACTIONS(3100), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), + [sym__string_start] = ACTIONS(3100), }, [362] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [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(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [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(3102), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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), + [anon_sym_return_AT] = ACTIONS(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(3104), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3106), [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(1740), - [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_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3113), - [anon_sym_super] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -91200,21 +87843,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(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_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), [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_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -91231,91 +87874,219 @@ 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(3113), + [anon_sym_BANG] = ACTIONS(3106), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3113), - [anon_sym_sealed] = ACTIONS(3113), - [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3108), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3115), + [sym__string_start] = ACTIONS(3108), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(1750), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3112), + }, + [365] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3117), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = ACTIONS(3117), [anon_sym_object] = ACTIONS(3117), [anon_sym_fun] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3119), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), @@ -91406,305 +88177,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3119), }, - [365] = { - [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(3121), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3123), - }, [366] = { - [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(3125), - [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(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [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), + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), [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(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), - [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(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), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym__string_start] = ACTIONS(113), }, [367] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3129), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(1738), - [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(3134), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_fun] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3132), - [anon_sym_super] = ACTIONS(3132), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_super] = ACTIONS(3129), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1754), @@ -91712,21 +88355,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(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_null] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_when] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), [anon_sym_EQ_EQ] = ACTIONS(1766), @@ -91743,127 +88386,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(3132), + [anon_sym_BANG] = ACTIONS(3129), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3132), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), [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_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), [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), + [anon_sym_return_AT] = ACTIONS(3131), + [anon_sym_continue_AT] = ACTIONS(3131), + [anon_sym_break_AT] = ACTIONS(3131), + [anon_sym_this_AT] = ACTIONS(3131), + [anon_sym_super_AT] = ACTIONS(3131), + [sym_real_literal] = ACTIONS(3131), + [sym_integer_literal] = ACTIONS(3129), + [sym_hex_literal] = ACTIONS(3131), + [sym_bin_literal] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3131), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3134), + [sym__automatic_semicolon] = ACTIONS(3131), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3134), + [sym__string_start] = ACTIONS(3131), }, [368] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3133), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(3133), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [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_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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), - [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(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -91871,91 +88514,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(3136), + [anon_sym_BANG] = ACTIONS(3133), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3136), - [anon_sym_sealed] = ACTIONS(3136), - [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3138), + [sym__automatic_semicolon] = ACTIONS(3135), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3138), + [sym__string_start] = ACTIONS(3135), }, [369] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = ACTIONS(3140), [anon_sym_object] = ACTIONS(3140), [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3142), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), @@ -91966,8 +88609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1754), [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), [anon_sym_null] = ACTIONS(3140), [anon_sym_if] = ACTIONS(3140), [anon_sym_else] = ACTIONS(3140), @@ -91983,10 +88626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -92047,43 +88690,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3142), }, [370] = { - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3144), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = 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), @@ -92094,8 +88737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP_AMP] = ACTIONS(1760), + [anon_sym_PIPE_PIPE] = ACTIONS(1762), [anon_sym_null] = ACTIONS(3144), [anon_sym_if] = ACTIONS(3144), [anon_sym_else] = ACTIONS(3144), @@ -92111,12 +88754,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -92175,171 +88818,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3146), }, [371] = { - [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), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), [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), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [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(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), + [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(3148), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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), + [anon_sym_return_AT] = ACTIONS(3150), + [anon_sym_continue_AT] = ACTIONS(3150), + [anon_sym_break_AT] = ACTIONS(3150), + [anon_sym_this_AT] = ACTIONS(3150), + [anon_sym_super_AT] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3150), + [sym_bin_literal] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(3150), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [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(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [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(3152), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [373] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3156), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [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), @@ -92430,54 +89201,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3158), }, - [373] = { - [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), + [374] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3160), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3160), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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(3162), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), [anon_sym_this] = ACTIONS(3160), [anon_sym_super] = ACTIONS(3160), [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(3160), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), + [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), @@ -92504,8 +89275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), [anon_sym_SLASH] = ACTIONS(1750), [anon_sym_PERCENT] = ACTIONS(1750), [anon_sym_as_QMARK] = ACTIONS(1780), @@ -92516,9 +89287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -92537,8 +89308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), @@ -92552,62 +89323,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3160), [anon_sym_false] = ACTIONS(3160), [anon_sym_SQUOTE] = ACTIONS(3162), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3162), [sym__automatic_semicolon] = ACTIONS(3162), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3162), }, - [374] = { - [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), + [375] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3167), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3167), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), [anon_sym_where] = ACTIONS(3167), [anon_sym_object] = ACTIONS(3167), [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), [anon_sym_this] = ACTIONS(3167), [anon_sym_super] = ACTIONS(3167), [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_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), [anon_sym_null] = ACTIONS(3167), [anon_sym_if] = ACTIONS(3167), [anon_sym_else] = ACTIONS(3167), @@ -92623,15 +89394,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), [anon_sym_PLUS] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), @@ -92644,9 +89415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), [anon_sym_override] = ACTIONS(3167), [anon_sym_lateinit] = ACTIONS(3167), [anon_sym_public] = ACTIONS(3167), @@ -92665,8 +89436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3169), [anon_sym_continue_AT] = ACTIONS(3169), @@ -92680,306 +89451,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3167), [anon_sym_false] = ACTIONS(3167), [anon_sym_SQUOTE] = ACTIONS(3169), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3169), [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3169), }, - [375] = { - [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(3171), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_where] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_fun] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(1742), - [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), - [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(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(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), - [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(3171), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3173), - }, [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(3175), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(3175), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [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(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), - [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(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), + [sym__expression] = STATE(2266), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3182), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1742), [anon_sym_where] = ACTIONS(3182), [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), @@ -93071,43 +89714,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3184), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3186), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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(3188), [anon_sym_get] = ACTIONS(3186), [anon_sym_set] = ACTIONS(3186), @@ -93199,43 +89842,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3188), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2101), + [sym__in_operator] = STATE(2102), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2106), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2107), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3193), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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), @@ -93244,7 +89887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1750), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(1756), [anon_sym_QMARK_COLON] = ACTIONS(3195), [anon_sym_AMP_AMP] = ACTIONS(3195), [anon_sym_PIPE_PIPE] = ACTIONS(3195), @@ -93272,8 +89915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), [anon_sym_SLASH] = ACTIONS(1750), [anon_sym_PERCENT] = ACTIONS(1750), [anon_sym_as_QMARK] = ACTIONS(1780), @@ -93327,172 +89970,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3195), }, [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(3193), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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), - }, - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3148), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -93500,21 +90017,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(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_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), [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_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -93531,116 +90048,242 @@ 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(3148), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), [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_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), [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), + [anon_sym_return_AT] = ACTIONS(3150), + [anon_sym_continue_AT] = ACTIONS(3150), + [anon_sym_break_AT] = ACTIONS(3150), + [anon_sym_this_AT] = ACTIONS(3150), + [anon_sym_super_AT] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3150), + [sym_bin_literal] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), + [sym__automatic_semicolon] = ACTIONS(3150), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(3150), + }, + [381] = { + [sym_primary_constructor] = STATE(2842), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(414), + [sym_type_constraints] = STATE(3040), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = 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_fun] = 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), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3106), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_fun] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3117), - [anon_sym_super] = ACTIONS(3117), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), [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(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_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -93657,101 +90300,101 @@ 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(3117), + [anon_sym_BANG] = ACTIONS(3106), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3117), - [anon_sym_sealed] = ACTIONS(3117), - [anon_sym_annotation] = ACTIONS(3117), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3119), + [sym__automatic_semicolon] = ACTIONS(3108), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3119), + [sym__string_start] = ACTIONS(3108), }, [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), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3167), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), [anon_sym_object] = ACTIONS(3167), [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), [anon_sym_this] = ACTIONS(3167), [anon_sym_super] = ACTIONS(3167), [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_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), [anon_sym_null] = ACTIONS(3167), [anon_sym_if] = ACTIONS(3167), [anon_sym_else] = ACTIONS(3167), @@ -93767,15 +90410,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), @@ -93788,9 +90431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), [anon_sym_override] = ACTIONS(3167), [anon_sym_lateinit] = ACTIONS(3167), [anon_sym_public] = ACTIONS(3167), @@ -93809,8 +90452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3169), [anon_sym_continue_AT] = ACTIONS(3169), @@ -93824,179 +90467,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3167), [anon_sym_false] = ACTIONS(3167), [anon_sym_SQUOTE] = ACTIONS(3169), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3169), [sym__automatic_semicolon] = ACTIONS(3169), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3169), }, [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(3204), - [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(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_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), - [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), - }, - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3182), - [anon_sym_super] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -94004,21 +90521,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(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_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(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_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(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -94035,206 +90552,81 @@ 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(3182), + [anon_sym_BANG] = ACTIONS(3140), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3182), - [anon_sym_sealed] = ACTIONS(3182), - [anon_sym_annotation] = ACTIONS(3182), + [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(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_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(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), + [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(3184), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3184), + [sym__string_start] = ACTIONS(3142), }, - [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), + [385] = { + [sym_primary_constructor] = STATE(2844), + [sym_class_body] = STATE(3142), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(408), + [sym_type_constraints] = STATE(2980), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), [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(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(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), - [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), - }, - [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(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(3210), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(3238), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3238), @@ -94243,7 +90635,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -94334,52 +90725,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3238), }, - [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), + [386] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3160), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_EQ] = ACTIONS(3160), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), [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_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), @@ -94406,8 +90797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), [anon_sym_SLASH] = ACTIONS(1856), [anon_sym_PERCENT] = ACTIONS(1856), [anon_sym_as_QMARK] = ACTIONS(1780), @@ -94418,9 +90809,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -94439,8 +90830,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), @@ -94454,84 +90845,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3160), [anon_sym_false] = ACTIONS(3160), [anon_sym_SQUOTE] = ACTIONS(3162), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3162), [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), + [387] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3133), [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(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(3133), [anon_sym_DOT_DOT] = ACTIONS(1860), [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [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_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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), - [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_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [anon_sym_PLUS] = ACTIONS(1876), [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), @@ -94539,120 +90930,120 @@ 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(3136), + [anon_sym_BANG] = ACTIONS(3133), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3136), - [anon_sym_sealed] = ACTIONS(3136), - [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3138), + [sym__automatic_semicolon] = ACTIONS(3135), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3138), + [sym__string_start] = ACTIONS(3135), }, - [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), + [388] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3144), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3140), - [anon_sym_super] = ACTIONS(3140), + [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(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_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [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(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_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(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), @@ -94665,125 +91056,251 @@ 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(3140), + [anon_sym_BANG] = ACTIONS(3144), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3140), - [anon_sym_sealed] = ACTIONS(3140), - [anon_sym_annotation] = ACTIONS(3140), + [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(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_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(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), + [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(3142), + [sym__automatic_semicolon] = ACTIONS(3146), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3142), + [sym__string_start] = ACTIONS(3146), }, - [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), + [389] = { + [sym_primary_constructor] = STATE(2840), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(415), + [sym_type_constraints] = STATE(3058), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [390] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3102), [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_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(1858), [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_QMARK_COLON] = ACTIONS(1862), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [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), @@ -94791,215 +91308,89 @@ 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(3125), + [anon_sym_BANG] = ACTIONS(3102), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), [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_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), [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), + [anon_sym_return_AT] = ACTIONS(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym__string_start] = ACTIONS(3104), }, - [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(3186), - [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(3186), - [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_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(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), - }, - [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), + [391] = { + [sym_primary_constructor] = STATE(2833), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(406), + [sym_type_constraints] = STATE(2978), + [sym_enum_class_body] = STATE(3249), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3256), + [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), @@ -95090,168 +91481,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3175), - [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(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [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(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), - [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(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), - }, - [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), + [392] = { + [sym_primary_constructor] = STATE(831), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(412), + [sym_type_constraints] = STATE(997), + [sym_enum_class_body] = STATE(1157), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3250), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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), @@ -95342,78 +91607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3248), }, - [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), + [393] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3193), [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_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [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(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_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [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(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_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(1876), [anon_sym_DASH] = ACTIONS(1876), [anon_sym_SLASH] = ACTIONS(1856), @@ -95421,120 +91686,120 @@ 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(3094), + [anon_sym_BANG] = ACTIONS(3193), [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), + [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(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), + [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(3096), + [sym__string_start] = ACTIONS(3195), }, - [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), + [394] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3088), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_fun] = ACTIONS(3132), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3132), - [anon_sym_super] = ACTIONS(3132), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), [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(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_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(1764), - [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), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), + [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(1872), [anon_sym_GT_EQ] = ACTIONS(1872), [anon_sym_BANGin] = ACTIONS(1874), @@ -95547,94 +91812,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(3132), + [anon_sym_BANG] = ACTIONS(3088), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3132), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), + [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(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_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(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), + [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(3134), + [sym__automatic_semicolon] = ACTIONS(3090), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3134), + [sym__string_start] = ACTIONS(3090), }, - [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), + [395] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3182), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3113), - [anon_sym_super] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -95642,21 +91907,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(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_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(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_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), @@ -95673,89 +91938,215 @@ 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(3113), + [anon_sym_BANG] = ACTIONS(3182), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3113), - [anon_sym_sealed] = ACTIONS(3113), - [anon_sym_annotation] = ACTIONS(3113), + [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(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_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(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), + [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(3115), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3115), + [sym__string_start] = ACTIONS(3184), }, - [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), + [396] = { + [sym_primary_constructor] = STATE(859), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(417), + [sym_type_constraints] = STATE(954), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3260), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3252), [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3256), + [anon_sym_where] = ACTIONS(3258), [anon_sym_object] = ACTIONS(3200), [anon_sym_fun] = 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), + }, + [397] = { + [sym_primary_constructor] = STATE(857), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(421), + [sym_type_constraints] = STATE(941), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = ACTIONS(3200), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), [anon_sym_set] = ACTIONS(3200), @@ -95846,47 +92237,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, + [398] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [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(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(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(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), + }, + [399] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [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(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(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), + [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(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [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(3119), + }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3094), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -95894,21 +92537,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(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_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(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_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(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -95925,122 +92568,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(3156), + [anon_sym_BANG] = ACTIONS(3094), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3156), - [anon_sym_sealed] = ACTIONS(3156), - [anon_sym_annotation] = ACTIONS(3156), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), [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_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(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), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3158), + [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), + [sym__string_start] = ACTIONS(3096), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3098), [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_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1848), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3144), - [anon_sym_super] = ACTIONS(3144), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), [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_AMP_AMP] = ACTIONS(1864), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), [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_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [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), @@ -96051,89 +92694,89 @@ 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(3144), + [anon_sym_BANG] = ACTIONS(3098), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3144), - [anon_sym_sealed] = ACTIONS(3144), - [anon_sym_annotation] = ACTIONS(3144), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [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), + [anon_sym_return_AT] = ACTIONS(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3146), + [sym__automatic_semicolon] = ACTIONS(3100), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3146), + [sym__string_start] = ACTIONS(3100), }, [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_primary_constructor] = STATE(828), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(416), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3256), + [anon_sym_where] = ACTIONS(3258), [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), @@ -96225,172 +92868,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = 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(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(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), - [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(1856), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [sym__string_start] = ACTIONS(3112), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3152), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_fun] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3171), - [anon_sym_super] = ACTIONS(3171), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -96398,21 +93041,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(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_null] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), [anon_sym_BANG_EQ] = ACTIONS(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -96429,94 +93072,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(3171), + [anon_sym_BANG] = ACTIONS(3152), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3171), - [anon_sym_sealed] = ACTIONS(3171), - [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), [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_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), [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), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3173), + [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3173), + [sym__string_start] = ACTIONS(3154), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1887), + [sym__in_operator] = STATE(1889), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1891), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1892), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [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_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(3156), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_fun] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), + [anon_sym_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), [anon_sym_STAR] = ACTIONS(1856), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(1858), @@ -96524,21 +93167,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(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_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(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(1868), [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), [anon_sym_EQ_EQ] = ACTIONS(1868), @@ -96555,133 +93198,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(3101), + [anon_sym_BANG] = ACTIONS(3156), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), + [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(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_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(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_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(3103), + [sym__automatic_semicolon] = ACTIONS(3158), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), + [sym__string_start] = ACTIONS(3158), }, [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), + [sym_primary_constructor] = STATE(2824), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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(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_COLON] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -96709,104 +93352,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(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), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, [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), + [sym_primary_constructor] = STATE(899), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(431), + [sym_type_constraints] = STATE(997), + [sym_enum_class_body] = STATE(1157), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = 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), @@ -96834,104 +93477,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(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), + [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), }, [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), + [sym_primary_constructor] = STATE(2843), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2971), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [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_COLON] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3280), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), [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_object] = ACTIONS(3276), + [anon_sym_fun] = 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), @@ -96959,354 +93602,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(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), + [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), }, [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(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), - [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), - }, - [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), + [sym_primary_constructor] = STATE(866), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(422), + [sym_type_constraints] = STATE(954), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3252), [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), - [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), - }, - [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(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(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(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_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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), @@ -97334,59 +93727,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), - [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), + [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), }, - [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), + [410] = { + [sym_primary_constructor] = STATE(875), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(436), + [sym_type_constraints] = STATE(941), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3284), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3256), + [anon_sym_where] = ACTIONS(3258), [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), @@ -97477,41 +93870,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [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), + [411] = { + [sym_primary_constructor] = STATE(874), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(423), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3286), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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), @@ -97602,336 +93995,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3238), }, - [414] = { - [sym_primary_constructor] = STATE(829), - [sym_class_body] = STATE(1068), - [sym__class_parameters] = STATE(936), + [412] = { + [sym_primary_constructor] = STATE(835), + [sym__class_parameters] = STATE(927), [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(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), - [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), - }, - [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(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(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(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(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(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), + [sym_enum_class_body] = STATE(1156), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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(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_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_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -97959,51 +94102,52 @@ 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(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, - [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), + [413] = { + [sym_primary_constructor] = STATE(2968), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(434), + [sym_type_constraints] = STATE(2978), + [sym_enum_class_body] = STATE(3249), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_EQ] = ACTIONS(3244), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3248), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), @@ -98011,7 +94155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -98102,41 +94245,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3248), }, + [414] = { + [sym_primary_constructor] = STATE(2839), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = 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_fun] = 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), + }, + [415] = { + [sym_primary_constructor] = STATE(2838), + [sym_class_body] = STATE(3220), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2985), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [416] = { + [sym_primary_constructor] = STATE(854), + [sym_class_body] = STATE(1120), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [417] = { + [sym_primary_constructor] = STATE(841), + [sym_class_body] = STATE(1135), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(996), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, [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_primary_constructor] = STATE(2964), + [sym_class_body] = STATE(3142), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(429), + [sym_type_constraints] = STATE(2980), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3304), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3256), + [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), @@ -98228,85 +94871,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(3238), }, [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), + [sym_primary_constructor] = STATE(2886), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(437), + [sym_type_constraints] = STATE(3058), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), [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_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3212), [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_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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), @@ -98334,104 +94977,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(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), + [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(3248), + [sym__string_start] = ACTIONS(3206), }, [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), + [sym_primary_constructor] = STATE(2908), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(430), + [sym_type_constraints] = STATE(3040), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3270), - [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3206), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), [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_object] = ACTIONS(3200), + [anon_sym_fun] = 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), @@ -98459,104 +95102,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(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), + [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), }, [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), + [sym_primary_constructor] = STATE(837), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), [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_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -98584,103 +95227,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(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), + [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), }, [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), + [sym_primary_constructor] = STATE(897), + [sym_class_body] = STATE(1135), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(996), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), [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_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -98708,103 +95351,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(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), + [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), }, [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), + [sym_primary_constructor] = STATE(869), + [sym_class_body] = STATE(1120), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), [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_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), @@ -98832,30 +95475,30 @@ 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(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), + [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), }, [424] = { - [sym_type_constraints] = STATE(456), - [sym_property_delegate] = STATE(503), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9230), + [sym_type_constraints] = STATE(459), + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -98865,70 +95508,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_as] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), [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_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(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_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1806), [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_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), @@ -98956,30 +95599,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1804), }, [425] = { - [sym_type_constraints] = STATE(446), - [sym_property_delegate] = STATE(506), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9215), + [sym_type_constraints] = STATE(447), + [sym_property_delegate] = STATE(481), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1832), + [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), + [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(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), + }, + [426] = { + [sym_type_constraints] = STATE(444), + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9181), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1812), + [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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), + }, + [427] = { + [sym_type_constraints] = STATE(458), + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -98989,14 +95880,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(3336), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -99004,13 +95896,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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_SEMI] = ACTIONS(1796), + [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), @@ -99098,85 +95989,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [428] = { + [sym_type_constraints] = STATE(442), + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [429] = { + [sym_primary_constructor] = STATE(2909), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2971), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_COLON] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3280), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), [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_object] = ACTIONS(3276), + [anon_sym_fun] = 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), @@ -99204,103 +96219,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(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), + [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), }, - [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), + [430] = { + [sym_primary_constructor] = STATE(2918), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = 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_fun] = 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), @@ -99328,103 +96343,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(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), + [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), }, - [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), + [431] = { + [sym_primary_constructor] = STATE(901), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99452,103 +96467,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(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), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, - [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), + [432] = { + [sym_type_constraints] = STATE(454), + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9181), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [433] = { + [sym_type_constraints] = STATE(450), + [sym_property_delegate] = STATE(494), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3356), + [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(3258), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = 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), + }, + [434] = { + [sym_primary_constructor] = STATE(2933), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -99576,30 +96839,30 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, - [430] = { - [sym_type_constraints] = STATE(442), - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9215), + [435] = { + [sym_type_constraints] = STATE(443), + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -99609,14 +96872,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3360), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), @@ -99624,11 +96888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(3320), [anon_sym_LT] = ACTIONS(1802), [anon_sym_GT] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [anon_sym_object] = ACTIONS(1802), [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1830), [anon_sym_get] = ACTIONS(3330), [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1802), @@ -99718,209 +96981,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [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(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(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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [436] = { + [sym_primary_constructor] = STATE(886), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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(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(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), }, - [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), + [437] = { + [sym_primary_constructor] = STATE(2966), + [sym_class_body] = STATE(3220), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2985), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_as] = ACTIONS(3278), - [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_COLON] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3282), + [anon_sym_RBRACE] = ACTIONS(3296), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), [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_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -99948,30 +97211,30 @@ 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(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), + [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), }, - [433] = { - [sym_type_constraints] = STATE(448), - [sym_property_delegate] = STATE(511), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9230), + [438] = { + [sym_type_constraints] = STATE(449), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -99981,194 +97244,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), [anon_sym_by] = ACTIONS(3320), - [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(1820), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3372), [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), - }, - [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(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_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100196,30 +97335,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [435] = { - [sym_type_constraints] = STATE(454), - [sym_property_delegate] = STATE(498), - [sym_getter] = STATE(1029), - [sym_setter] = STATE(1029), - [sym_modifiers] = STATE(9215), + [439] = { + [sym_type_constraints] = STATE(455), + [sym_property_delegate] = STATE(508), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -100229,194 +97368,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), [anon_sym_by] = ACTIONS(3320), - [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(3364), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3376), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [436] = { - [sym_type_constraints] = STATE(453), - [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(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_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100444,30 +97459,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [437] = { - [sym_type_constraints] = STATE(445), - [sym_property_delegate] = STATE(487), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9230), + [440] = { + [sym_type_constraints] = STATE(493), + [sym_property_delegate] = STATE(555), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -100477,70 +97492,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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(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(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), - [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -100568,30 +97582,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [438] = { - [sym_type_constraints] = STATE(458), - [sym_property_delegate] = STATE(514), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9230), + [441] = { + [sym_type_constraints] = STATE(490), + [sym_property_delegate] = STATE(588), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -100601,28 +97615,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(3388), [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_by] = ACTIONS(3380), [anon_sym_LT] = ACTIONS(1802), [anon_sym_GT] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1802), @@ -100710,135 +97723,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [440] = { - [sym_property_delegate] = STATE(480), - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9215), + [442] = { + [sym_property_delegate] = STATE(494), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -100848,70 +97737,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), [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_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(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_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_SEMI] = ACTIONS(1794), [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_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), @@ -100939,30 +97828,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [441] = { - [sym_type_constraints] = STATE(507), - [sym_property_delegate] = STATE(556), - [sym_getter] = STATE(3149), - [sym_setter] = STATE(3149), - [sym_modifiers] = STATE(9109), + [443] = { + [sym_property_delegate] = STATE(481), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -100972,69 +97860,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3320), + [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_SEMI] = ACTIONS(1832), + [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), + [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), @@ -101062,102 +97951,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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_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), + }, + [444] = { + [sym_property_delegate] = STATE(500), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9181), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), [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(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), - [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_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_SEMI] = ACTIONS(1818), + [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), @@ -101185,30 +98074,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [443] = { - [sym_type_constraints] = STATE(496), - [sym_property_delegate] = STATE(545), - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9448), + [445] = { + [sym_type_constraints] = STATE(504), + [sym_property_delegate] = STATE(563), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101218,69 +98107,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3390), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), [anon_sym_by] = ACTIONS(3380), - [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(3394), - [anon_sym_set] = ACTIONS(3396), - [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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1886), + [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), @@ -101308,30 +98197,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [444] = { - [sym_type_constraints] = STATE(479), - [sym_property_delegate] = STATE(595), - [sym_getter] = STATE(1029), - [sym_setter] = STATE(1029), - [sym_modifiers] = STATE(9448), + [446] = { + [sym_type_constraints] = STATE(496), + [sym_property_delegate] = STATE(590), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101341,69 +98230,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_as] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), [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(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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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(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), + }, + [447] = { + [sym_property_delegate] = STATE(483), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3320), + [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_SEMI] = ACTIONS(1834), + [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), @@ -101431,29 +98443,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [445] = { - [sym_property_delegate] = STATE(511), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9230), + [448] = { + [sym_type_constraints] = STATE(489), + [sym_property_delegate] = STATE(574), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3402), + [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(3258), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), + }, + [449] = { + [sym_property_delegate] = STATE(516), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101463,70 +98598,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), [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_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3354), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101554,29 +98689,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [446] = { - [sym_property_delegate] = STATE(513), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9215), + [450] = { + [sym_property_delegate] = STATE(511), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101586,14 +98721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3360), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), @@ -101604,8 +98740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1830), [anon_sym_get] = ACTIONS(3330), [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1802), @@ -101695,12 +98830,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [447] = { - [sym_type_constraints] = STATE(505), - [sym_property_delegate] = STATE(589), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9109), + [451] = { + [sym_type_constraints] = STATE(491), + [sym_property_delegate] = STATE(552), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(9112), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), + }, + [452] = { + [sym_type_constraints] = STATE(499), + [sym_property_delegate] = STATE(559), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101710,25 +98968,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_EQ] = ACTIONS(3408), [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_where] = ACTIONS(3258), [anon_sym_object] = ACTIONS(1802), [anon_sym_fun] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), [anon_sym_get] = ACTIONS(3384), [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1802), @@ -101818,11 +99076,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [448] = { - [sym_property_delegate] = STATE(503), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9230), + [453] = { + [sym_type_constraints] = STATE(487), + [sym_property_delegate] = STATE(570), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101832,70 +99091,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -101923,29 +99181,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [449] = { - [sym_property_delegate] = STATE(506), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9215), + [454] = { + [sym_property_delegate] = STATE(510), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -101955,14 +99213,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(3336), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -101973,10 +99232,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1796), + [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), @@ -102064,12 +99322,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [455] = { + [sym_property_delegate] = STATE(480), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -102079,69 +99336,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102169,30 +99427,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [451] = { - [sym_type_constraints] = STATE(500), - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9109), + [456] = { + [sym_type_constraints] = STATE(485), + [sym_property_delegate] = STATE(561), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -102202,69 +99460,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3366), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), [anon_sym_by] = ACTIONS(3380), - [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(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_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102292,30 +99550,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [452] = { + [457] = { [sym_type_constraints] = STATE(495), - [sym_property_delegate] = STATE(547), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9109), + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -102325,25 +99583,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_EQ] = ACTIONS(3418), [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_where] = ACTIONS(3258), [anon_sym_object] = ACTIONS(1790), [anon_sym_fun] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1902), [anon_sym_get] = ACTIONS(3384), [anon_sym_set] = ACTIONS(3386), [anon_sym_this] = ACTIONS(1790), @@ -102433,258 +99691,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [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(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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(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(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), - [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), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [455] = { - [sym_type_constraints] = STATE(491), - [sym_property_delegate] = STATE(568), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9448), + [458] = { + [sym_property_delegate] = STATE(506), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -102694,136 +99705,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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_EQ] = ACTIONS(3318), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), @@ -102834,8 +99724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1806), [anon_sym_get] = ACTIONS(3322), [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(1802), @@ -102925,12 +99814,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [457] = { - [sym_type_constraints] = STATE(493), - [sym_property_delegate] = STATE(560), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9448), + [459] = { + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -102940,69 +99828,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3320), + [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_SEMI] = ACTIONS(1812), + [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), @@ -103030,319 +99919,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1810), }, - [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), + [460] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), [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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [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(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(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(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(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(3092), + [anon_sym_actual] = ACTIONS(3092), [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(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(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, - [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), + [461] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1738), + [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_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(1938), + [sym_label] = ACTIONS(1752), + [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(1764), + [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(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(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(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(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), + [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(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), }, - [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), + [462] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [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(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [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(3148), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3150), + [anon_sym_continue_AT] = ACTIONS(3150), + [anon_sym_break_AT] = ACTIONS(3150), + [anon_sym_this_AT] = ACTIONS(3150), + [anon_sym_super_AT] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3150), + [sym_bin_literal] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3150), + }, + [463] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), + [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(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [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(3106), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3108), + }, + [464] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [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(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(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_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(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), + }, + [465] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [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(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [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(3152), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [466] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), [anon_sym_where] = ACTIONS(3182), [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(1936), + [anon_sym_STAR] = ACTIONS(1938), [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_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(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), @@ -103353,19 +100728,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3182), [anon_sym_break] = ACTIONS(3182), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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), @@ -103416,55 +100791,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3184), }, - [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), + [467] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), [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), + [anon_sym_STAR] = ACTIONS(1938), [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_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), @@ -103475,19 +100850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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), @@ -103538,174 +100913,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [468] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(3173), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), [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), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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(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(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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(3140), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [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(3142), + }, + [469] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(1938), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [470] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(1938), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3171), + [anon_sym_BANG] = ACTIONS(3110), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3171), - [anon_sym_sealed] = ACTIONS(3171), - [anon_sym_annotation] = ACTIONS(3171), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), [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_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), [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), + [anon_sym_return_AT] = ACTIONS(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3173), + [sym__automatic_semicolon] = ACTIONS(3112), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3173), + [sym__string_start] = ACTIONS(3112), }, - [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), + [471] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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), + [anon_sym_STAR] = ACTIONS(1938), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(1942), [anon_sym_QMARK_COLON] = ACTIONS(3195), [anon_sym_AMP_AMP] = ACTIONS(3195), [anon_sym_PIPE_PIPE] = ACTIONS(3195), @@ -103728,10 +101347,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -103782,663 +101401,785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [472] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [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), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(1938), [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_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(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(3113), + [anon_sym_BANG] = ACTIONS(3098), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3113), - [anon_sym_sealed] = ACTIONS(3113), - [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [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), + [anon_sym_return_AT] = ACTIONS(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3100), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3115), + [sym__string_start] = ACTIONS(3100), }, - [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), + [473] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [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), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(1938), [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_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_QMARK_COLON] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), [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_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [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(3125), + [anon_sym_BANG] = ACTIONS(3133), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), + [sym__automatic_semicolon] = ACTIONS(3135), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym__string_start] = ACTIONS(3135), }, - [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), + [474] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(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_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_fun] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3101), - [anon_sym_super] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_super] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(1938), [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(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_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(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_when] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(3101), + [anon_sym_BANG] = ACTIONS(3129), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3101), - [anon_sym_sealed] = ACTIONS(3101), - [anon_sym_annotation] = ACTIONS(3101), + [anon_sym_suspend] = ACTIONS(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), [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_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), [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), + [anon_sym_return_AT] = ACTIONS(3131), + [anon_sym_continue_AT] = ACTIONS(3131), + [anon_sym_break_AT] = ACTIONS(3131), + [anon_sym_this_AT] = ACTIONS(3131), + [anon_sym_super_AT] = ACTIONS(3131), + [sym_real_literal] = ACTIONS(3131), + [sym_integer_literal] = ACTIONS(3129), + [sym_hex_literal] = ACTIONS(3131), + [sym_bin_literal] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3131), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3103), + [sym__automatic_semicolon] = ACTIONS(3131), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), + [sym__string_start] = ACTIONS(3131), }, - [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), + [475] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(1738), + [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_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), + }, + [476] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(3142), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), [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), + [anon_sym_this] = ACTIONS(3088), + [anon_sym_super] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1938), [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(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_in] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_QMARK_COLON] = ACTIONS(1944), + [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(1764), - [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_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(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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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(3140), + [anon_sym_BANG] = ACTIONS(3088), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3140), - [anon_sym_sealed] = ACTIONS(3140), - [anon_sym_annotation] = ACTIONS(3140), + [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(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_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(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), + [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(3142), + [sym__automatic_semicolon] = ACTIONS(3090), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3142), + [sym__string_start] = ACTIONS(3090), }, - [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), + [477] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(1938), [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_in] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_QMARK_COLON] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [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(3094), + [anon_sym_BANG] = ACTIONS(3102), [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), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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), + [anon_sym_return_AT] = ACTIONS(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [sym__string_start] = ACTIONS(3104), }, - [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), + [478] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1715), + [sym__in_operator] = STATE(1714), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1712), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1711), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1930), [anon_sym_where] = ACTIONS(3117), [anon_sym_object] = ACTIONS(3117), [anon_sym_fun] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(1742), [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), + [anon_sym_STAR] = ACTIONS(1938), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_QMARK_COLON] = ACTIONS(1944), [anon_sym_AMP_AMP] = ACTIONS(3119), [anon_sym_PIPE_PIPE] = ACTIONS(3119), [anon_sym_null] = ACTIONS(3117), @@ -104451,19 +102192,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3117), [anon_sym_break] = ACTIONS(3117), [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_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(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), + [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), @@ -104514,1109 +102255,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3119), }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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(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), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(3132), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3134), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3134), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(1738), - [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(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(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(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(3167), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3169), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3169), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(1738), - [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(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(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(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(3136), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3138), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3138), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3090), - [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(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [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(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(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(3088), - [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(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(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1738), - [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(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(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(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(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3123), - }, [479] = { - [sym_property_delegate] = STATE(545), - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9448), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -105626,68 +102268,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3390), - [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(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), - [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_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), @@ -105715,28 +102358,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [480] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -105746,12 +102389,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -105763,7 +102407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -105855,9 +102498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [481] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -105867,69 +102510,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1834), [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_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), @@ -105957,28 +102600,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1816), }, [482] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -105988,69 +102631,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), [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_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106078,28 +102721,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, [483] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), + }, + [484] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106109,12 +102873,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), @@ -106126,8 +102891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), [anon_sym_get] = ACTIONS(3330), [anon_sym_set] = ACTIONS(3332), [anon_sym_this] = ACTIONS(1808), @@ -106217,131 +102981,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [484] = { + [485] = { + [sym_property_delegate] = STATE(570), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [485] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9230), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106351,69 +102995,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3338), [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(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), - [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106441,28 +103084,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [486] = { - [sym_getter] = STATE(3116), - [sym_setter] = STATE(3116), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106472,12 +103115,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), @@ -106489,8 +103133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1818), [anon_sym_get] = ACTIONS(3322), [anon_sym_set] = ACTIONS(3324), [anon_sym_this] = ACTIONS(1814), @@ -106581,9 +103224,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1816), }, [487] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9230), + [sym_property_delegate] = STATE(574), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106593,69 +103237,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3402), + [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_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), @@ -106683,28 +103326,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [488] = { - [sym_getter] = STATE(3111), - [sym_setter] = STATE(3111), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106714,69 +103357,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106804,28 +103447,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [489] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9230), + [sym_property_delegate] = STATE(588), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -106835,311 +103479,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), [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(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_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), @@ -107167,28 +103568,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [492] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9230), + [490] = { + [sym_property_delegate] = STATE(590), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107198,27 +103600,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3398), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3380), [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_SEMI] = ACTIONS(1888), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1808), @@ -107306,11 +103707,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [493] = { - [sym_property_delegate] = STATE(568), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9448), + [491] = { + [sym_property_delegate] = STATE(555), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107320,68 +103721,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), [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_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -107409,29 +103810,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [494] = { - [sym_property_delegate] = STATE(560), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9448), + [492] = { + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [493] = { + [sym_property_delegate] = STATE(557), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107441,14 +103963,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_EQ] = ACTIONS(3418), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), @@ -107457,10 +103980,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1902), + [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), @@ -107548,11 +104070,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [495] = { - [sym_property_delegate] = STATE(589), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9109), + [494] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107562,26 +104083,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3402), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(3380), + [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(1884), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(1830), + [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), @@ -107669,11 +104191,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [495] = { + [sym_property_delegate] = STATE(559), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107683,68 +104205,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), [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_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1878), + [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), @@ -107772,28 +104294,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [497] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9215), + [496] = { + [sym_property_delegate] = STATE(593), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107803,69 +104326,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1814), [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(3330), - [anon_sym_set] = ACTIONS(3332), - [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), @@ -107893,28 +104415,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1810), + [sym__string_start] = ACTIONS(1816), }, - [498] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9215), + [497] = { + [sym_getter] = STATE(1084), + [sym_setter] = STATE(1084), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -107924,69 +104446,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3422), [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(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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108014,28 +104536,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, - [499] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9215), + [498] = { + [sym_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108045,69 +104567,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108135,29 +104657,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, - [500] = { - [sym_property_delegate] = STATE(549), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9109), + [499] = { + [sym_property_delegate] = STATE(563), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108167,68 +104689,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), [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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1886), [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_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), @@ -108256,29 +104778,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [501] = { - [sym_property_delegate] = STATE(547), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9109), + [500] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108288,68 +104809,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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_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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108377,28 +104899,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [502] = { - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), - [sym_modifiers] = STATE(9230), + [501] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108408,69 +104930,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), [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_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -108498,28 +105020,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [503] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9230), + [502] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108529,12 +105051,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -108546,10 +105069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -108637,10 +105159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [504] = { - [sym_getter] = STATE(1099), - [sym_setter] = STATE(1099), - [sym_modifiers] = STATE(9215), + [503] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108650,69 +105172,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), [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_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), @@ -108740,29 +105262,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [505] = { - [sym_property_delegate] = STATE(583), - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), - [sym_modifiers] = STATE(9109), + [504] = { + [sym_property_delegate] = STATE(566), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -108772,68 +105294,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(3426), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), [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(1882), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1890), [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), - [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_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), @@ -108861,100 +105383,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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_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), + }, + [505] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9181), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_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), @@ -108982,29 +105504,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1816), + }, + [506] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9181), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_SEMI] = ACTIONS(1812), + [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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), }, [507] = { - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9109), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109014,68 +105656,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_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), @@ -109103,28 +105746,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [508] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109134,69 +105777,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3344), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109224,28 +105867,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [509] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9215), + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109255,69 +105898,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), [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_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109345,28 +105988,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [510] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109376,69 +106019,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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(3372), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1806), [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_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), @@ -109466,28 +106109,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [511] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9196), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_SEMI] = ACTIONS(1832), + [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), + [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(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), + }, + [512] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109497,12 +106261,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -109514,10 +106279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -109605,131 +106369,10 @@ 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(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), - [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_getter] = STATE(3090), + [sym_setter] = STATE(3090), + [sym_modifiers] = STATE(9196), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109739,69 +106382,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3422), [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(1744), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), [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_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109829,28 +106472,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, [514] = { - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109860,69 +106503,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3354), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -109950,28 +106593,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [515] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -109981,69 +106624,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), [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_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), @@ -110071,28 +106714,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [516] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9230), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9181), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -110102,69 +106745,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1796), [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_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), @@ -110192,90 +106835,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1792), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(2008), [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_QMARK_COLON] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), [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_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), @@ -110283,88 +106926,328 @@ 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(3125), + [anon_sym_BANG] = ACTIONS(3152), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), [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_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), [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), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), + [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym__string_start] = ACTIONS(3154), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [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(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [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(3098), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3100), + }, + [519] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = 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(2006), + [sym_label] = ACTIONS(1752), + [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(1764), + [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(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(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(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(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [520] = { + [sym_primary_constructor] = STATE(1309), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(565), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), [anon_sym_COLON] = ACTIONS(3428), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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), @@ -110450,69 +107333,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3238), }, - [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), + [521] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(3113), - [anon_sym_fun] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3113), - [anon_sym_super] = ACTIONS(3113), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), [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(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_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), [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_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), [anon_sym_BANGin] = ACTIONS(2024), [anon_sym_is] = ACTIONS(1774), [anon_sym_BANGis] = ACTIONS(1776), @@ -110523,100 +107406,220 @@ 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(3113), + [anon_sym_BANG] = ACTIONS(3102), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3113), - [anon_sym_sealed] = ACTIONS(3113), - [anon_sym_annotation] = ACTIONS(3113), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), [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_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), [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), + [anon_sym_return_AT] = ACTIONS(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3115), + [sym__automatic_semicolon] = ACTIONS(3104), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3115), + [sym__string_start] = ACTIONS(3104), }, - [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), + [522] = { + [sym_primary_constructor] = STATE(1346), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(564), + [sym_type_constraints] = STATE(941), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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), + }, + [523] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), [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_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_this] = ACTIONS(3094), [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(2006), [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_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(3094), [anon_sym_if] = ACTIONS(3094), [anon_sym_else] = ACTIONS(3094), @@ -110627,15 +107630,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3094), [anon_sym_break] = ACTIONS(3094), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_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), @@ -110648,9 +107651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), [anon_sym_override] = ACTIONS(3094), [anon_sym_lateinit] = ACTIONS(3094), [anon_sym_public] = ACTIONS(3094), @@ -110669,8 +107672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3096), [anon_sym_continue_AT] = ACTIONS(3096), @@ -110684,78 +107687,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3094), [anon_sym_false] = ACTIONS(3094), [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(3096), + [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(3096), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3096), }, - [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), + [524] = { + [sym_primary_constructor] = STATE(1313), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(547), + [sym_type_constraints] = STATE(954), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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), + }, + [525] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_fun] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(1742), - [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_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [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(2008), + [anon_sym_in] = ACTIONS(3193), [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [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_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(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_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(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -110763,109 +107886,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(3117), + [anon_sym_BANG] = ACTIONS(3193), [anon_sym_BANG_BANG] = ACTIONS(1782), - [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), + [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(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), + [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(3119), + [sym__string_start] = ACTIONS(3195), }, - [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), + [526] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_fun] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3136), - [anon_sym_super] = ACTIONS(3136), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), [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(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_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), [anon_sym_COLON_COLON] = ACTIONS(1764), [anon_sym_BANG_EQ] = ACTIONS(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -110883,114 +108006,114 @@ 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(3136), + [anon_sym_BANG] = ACTIONS(3106), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3136), - [anon_sym_sealed] = ACTIONS(3136), - [anon_sym_annotation] = ACTIONS(3136), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3138), + [sym__automatic_semicolon] = ACTIONS(3108), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3138), + [sym__string_start] = ACTIONS(3108), }, - [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), + [527] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_fun] = ACTIONS(3140), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3140), - [anon_sym_super] = ACTIONS(3140), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), [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(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_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [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(3140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3142), - [anon_sym_EQ_EQ] = ACTIONS(3140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3142), + [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), @@ -111003,88 +108126,88 @@ 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(3140), + [anon_sym_BANG] = ACTIONS(3182), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3140), - [anon_sym_sealed] = ACTIONS(3140), - [anon_sym_annotation] = ACTIONS(3140), + [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(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_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(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), + [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(3142), + [sym__automatic_semicolon] = ACTIONS(3184), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3142), + [sym__string_start] = ACTIONS(3184), }, - [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), + [528] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), [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), @@ -111095,8 +108218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), [anon_sym_null] = ACTIONS(3144), [anon_sym_if] = ACTIONS(3144), [anon_sym_else] = ACTIONS(3144), @@ -111107,12 +108230,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(3144), [anon_sym_break] = ACTIONS(3144), [anon_sym_COLON_COLON] = ACTIONS(1764), - [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_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), @@ -111170,521 +108293,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3146), }, - [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_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(2006), - [sym_label] = ACTIONS(1752), - [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(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(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), - }, - [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_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(3171), - [anon_sym_fun] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(1742), - [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), - [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(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), - [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(3171), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3173), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(3101), - [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(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(3103), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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), - }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1738), [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), @@ -111771,71 +108414,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [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(3132), - [anon_sym_fun] = ACTIONS(3132), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3132), - [anon_sym_super] = ACTIONS(3132), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(3133), [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(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_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), [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_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [anon_sym_PLUS] = ACTIONS(2026), [anon_sym_DASH] = ACTIONS(2026), [anon_sym_SLASH] = ACTIONS(2028), @@ -111843,213 +108486,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(3132), + [anon_sym_BANG] = ACTIONS(3133), [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3132), - [anon_sym_sealed] = ACTIONS(3132), - [anon_sym_annotation] = ACTIONS(3132), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3134), + [sym__automatic_semicolon] = ACTIONS(3135), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3134), + [sym__string_start] = ACTIONS(3135), }, [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_primary_constructor] = STATE(3698), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(578), + [sym_type_constraints] = STATE(3058), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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(3177), + [sym__string_start] = ACTIONS(3206), }, [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_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), [anon_sym_STAR] = ACTIONS(2006), [sym_label] = ACTIONS(1752), [anon_sym_in] = ACTIONS(2008), @@ -112057,15 +108700,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(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_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(2018), [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), @@ -112083,448 +108726,88 @@ 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_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(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(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), - }, - [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_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(1736), - [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(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(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(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(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(3167), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [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(3169), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3169), - }, - [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_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(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(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(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), - [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(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), - }, - [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_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(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3156), - [anon_sym_super] = ACTIONS(3156), - [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(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(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(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_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(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), + [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(3158), + [sym__automatic_semicolon] = ACTIONS(3142), [sym_safe_nav] = ACTIONS(1764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3158), + [sym__string_start] = ACTIONS(3142), }, - [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), + [533] = { + [sym_primary_constructor] = STATE(3695), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(579), + [sym_type_constraints] = STATE(3040), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_COLON] = ACTIONS(3436), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3256), + [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), @@ -112610,29 +108893,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [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), + [534] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [535] = { + [sym_primary_constructor] = STATE(3692), + [sym_class_body] = STATE(3142), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(586), + [sym_type_constraints] = STATE(2980), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_COLON] = ACTIONS(3438), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3240), @@ -112644,7 +109048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112730,32 +109133,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3238), }, - [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), + [536] = { + [sym_primary_constructor] = STATE(3704), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(576), + [sym_type_constraints] = STATE(2978), + [sym_enum_class_body] = STATE(3249), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_COLON] = ACTIONS(3440), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3248), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_COMMA] = ACTIONS(3248), @@ -112764,7 +109168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -112850,81 +109253,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3248), }, + [537] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(2006), + [sym_label] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3112), + }, + [538] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [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(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(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(3117), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [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(3119), + }, [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), + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [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(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(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(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(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), + }, + [540] = { + [sym_primary_constructor] = STATE(1316), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(548), + [sym_type_constraints] = STATE(997), + [sym_enum_class_body] = STATE(1157), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), [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_COLON] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3248), [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_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = 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), @@ -112952,59 +109715,298 @@ 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(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), + [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(3238), + [sym__string_start] = ACTIONS(3248), }, - [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), + [541] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [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(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [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(3148), + [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3150), + [anon_sym_continue_AT] = ACTIONS(3150), + [anon_sym_break_AT] = ACTIONS(3150), + [anon_sym_this_AT] = ACTIONS(3150), + [anon_sym_super_AT] = ACTIONS(3150), + [sym_real_literal] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3150), + [sym_bin_literal] = ACTIONS(3150), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3150), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3150), + }, + [542] = { + [sym_indexing_suffix] = STATE(1064), + [sym_navigation_suffix] = STATE(1063), + [sym_call_suffix] = STATE(1062), + [sym_annotated_lambda] = STATE(1061), + [sym_type_arguments] = STATE(8275), + [sym_value_arguments] = STATE(757), + [sym_lambda_literal] = STATE(1058), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1655), + [sym__in_operator] = STATE(1654), + [sym__is_operator] = STATE(6223), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1652), + [sym__as_operator] = STATE(6225), + [sym__postfix_unary_operator] = STATE(1056), + [sym__member_access_operator] = STATE(7797), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1650), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [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(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(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(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(3088), + [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(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(3090), + [sym_safe_nav] = ACTIONS(1764), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [543] = { + [sym_primary_constructor] = STATE(1399), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(616), + [sym_type_constraints] = STATE(941), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_COLON] = ACTIONS(3444), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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), @@ -113090,250 +110092,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [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(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(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), - [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), - }, - [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), + [544] = { + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -113343,67 +110105,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113431,28 +110193,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [544] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9109), + [545] = { + [sym_type_constraints] = STATE(604), + [sym_property_delegate] = STATE(652), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -113462,67 +110226,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -113550,28 +110312,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [545] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9448), + [546] = { + [sym_type_constraints] = STATE(608), + [sym_property_delegate] = STATE(655), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -113581,67 +110345,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -113669,58 +110431,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), + }, + [547] = { + [sym_primary_constructor] = STATE(1315), + [sym_class_body] = STATE(1135), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(996), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, - [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), + [548] = { + [sym_primary_constructor] = STATE(1323), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [549] = { + [sym_primary_constructor] = STATE(1398), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(612), + [sym_type_constraints] = STATE(954), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3460), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3250), + [anon_sym_constructor] = ACTIONS(3252), [anon_sym_LBRACE] = ACTIONS(3262), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3256), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3256), + [anon_sym_where] = ACTIONS(3258), [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), @@ -113806,10 +110806,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3206), }, - [547] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9109), + [550] = { + [sym_type_constraints] = STATE(609), + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -113819,67 +110821,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -113907,28 +110907,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1810), }, - [548] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9109), + [551] = { + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -113938,67 +110938,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114026,28 +111026,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [549] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9109), + [552] = { + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114057,67 +111057,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3382), [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_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114145,28 +111145,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [550] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9109), + [553] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114176,12 +111176,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -114191,7 +111192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -114282,10 +111282,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [551] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9448), + [554] = { + [sym_primary_constructor] = STATE(1404), + [sym_class_body] = STATE(1108), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(618), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_fun] = 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), + }, + [555] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114295,12 +111414,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -114310,10 +111430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1902), + [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), @@ -114401,129 +111520,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [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(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), - [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), - }, - [553] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9109), + [556] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114533,67 +111533,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), [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_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), @@ -114621,28 +111621,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [554] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9109), + [557] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114652,67 +111652,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1878), [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_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), @@ -114740,147 +111740,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3448), - [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_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(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), + [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(3238), + [sym__string_start] = ACTIONS(1804), }, - [556] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9109), + [558] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -114890,67 +111771,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), [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_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), @@ -114978,28 +111859,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [557] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9448), + [559] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -115009,67 +111890,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), [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_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), @@ -115097,147 +111978,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1810), }, - [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(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(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(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), + [560] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9112), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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), + [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(3238), + [sym__string_start] = ACTIONS(1816), }, - [559] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9448), + [561] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -115247,67 +112128,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115335,28 +112216,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [560] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9448), + [562] = { + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -115366,67 +112247,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), @@ -115454,149 +112335,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), - }, - [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(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), + [sym__string_start] = ACTIONS(1792), }, - [562] = { - [sym_type_constraints] = STATE(612), - [sym_property_delegate] = STATE(664), - [sym_getter] = STATE(3149), - [sym_setter] = STATE(3149), - [sym_modifiers] = STATE(9389), + [563] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -115606,65 +112366,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1890), + [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), @@ -115692,98 +112454,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), + [564] = { + [sym_primary_constructor] = STATE(1314), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -115811,98 +112573,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(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), + [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), }, - [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), + [565] = { + [sym_primary_constructor] = STATE(1299), + [sym_class_body] = STATE(1120), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), @@ -115930,28 +112692,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), - [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), + [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), }, - [565] = { - [sym_getter] = STATE(3111), - [sym_setter] = STATE(3111), - [sym_modifiers] = STATE(9109), + [566] = { + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -115961,67 +112723,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1900), [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_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116049,28 +112811,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [566] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9448), + [567] = { + [sym_type_constraints] = STATE(601), + [sym_property_delegate] = STATE(662), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -116080,67 +112844,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -116168,147 +112930,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3468), - [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_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(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), + [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), }, [568] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9448), + [sym_type_constraints] = STATE(610), + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -116318,67 +112963,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116406,30 +113049,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [569] = { - [sym_type_constraints] = STATE(603), - [sym_property_delegate] = STATE(668), - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9112), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -116439,65 +113080,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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(3216), - [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116525,30 +113168,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, [570] = { - [sym_type_constraints] = STATE(620), - [sym_property_delegate] = STATE(673), - [sym_getter] = STATE(1029), - [sym_setter] = STATE(1029), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -116558,71 +113199,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1790), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), @@ -116644,336 +113287,693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [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_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [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(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), - [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_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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(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), + [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), }, [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), + [sym_getter] = STATE(3090), + [sym_setter] = STATE(3090), + [sym_modifiers] = STATE(9112), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3384), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), + }, + [574] = { + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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), + }, + [575] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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(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), + }, + [576] = { + [sym_primary_constructor] = STATE(3705), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -117001,28 +114001,30 @@ 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(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), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, - [574] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9448), + [577] = { + [sym_type_constraints] = STATE(611), + [sym_property_delegate] = STATE(649), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -117032,67 +114034,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3366), [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(3394), - [anon_sym_set] = ACTIONS(3396), - [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117120,98 +114120,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [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), + [578] = { + [sym_primary_constructor] = STATE(3703), + [sym_class_body] = STATE(3220), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2985), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), @@ -117239,98 +114239,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(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), + [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), }, - [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), + [579] = { + [sym_primary_constructor] = STATE(3702), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_as] = ACTIONS(3200), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), [anon_sym_constructor] = ACTIONS(3208), [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3296), [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), [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_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -117358,50 +114358,51 @@ 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(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), }, - [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), + [580] = { + [sym_primary_constructor] = STATE(3823), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(597), + [sym_type_constraints] = STATE(2978), + [sym_enum_class_body] = STATE(3249), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3492), + [anon_sym_COLON] = ACTIONS(3490), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3210), [anon_sym_RBRACE] = ACTIONS(3248), [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), @@ -117409,7 +114410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -117495,40 +114495,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3248), }, - [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), + [581] = { + [sym_type_constraints] = STATE(620), + [sym_property_delegate] = STATE(671), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), + }, + [582] = { + [sym_type_constraints] = STATE(607), + [sym_property_delegate] = STATE(674), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [583] = { + [sym_type_constraints] = STATE(622), + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), + }, + [584] = { + [sym_primary_constructor] = STATE(3810), + [sym_class_body] = STATE(3142), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(600), + [sym_type_constraints] = STATE(2980), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3494), + [anon_sym_COLON] = ACTIONS(3502), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3214), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3256), + [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), @@ -117614,10 +114971,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3238), }, - [579] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9448), + [585] = { + [sym_type_constraints] = STATE(605), + [sym_property_delegate] = STATE(659), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -117627,28 +114986,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3504), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3448), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), [anon_sym_object] = ACTIONS(1808), [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3394), - [anon_sym_set] = ACTIONS(3396), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1808), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), @@ -117665,11 +115027,6 @@ 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(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), @@ -117682,7 +115039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = 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), @@ -117733,10 +115090,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [580] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9448), + [586] = { + [sym_primary_constructor] = STATE(3694), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2971), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [587] = { + [sym_primary_constructor] = STATE(1389), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(606), + [sym_type_constraints] = STATE(997), + [sym_enum_class_body] = STATE(1157), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3244), + [anon_sym_fun] = 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), + [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), + }, + [588] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -117746,27 +115341,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [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(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), + }, + [589] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(1814), + [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1814), [sym_label] = ACTIONS(1814), [anon_sym_in] = ACTIONS(1814), @@ -117852,129 +115566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1816), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [582] = { - [sym_getter] = STATE(3116), - [sym_setter] = STATE(3116), - [sym_modifiers] = STATE(9109), + [590] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -117984,12 +115579,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), @@ -117999,10 +115595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1892), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), [anon_sym_this] = ACTIONS(1814), [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1814), @@ -118090,10 +115685,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1816), }, - [583] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9109), + [591] = { + [sym_primary_constructor] = STATE(3814), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(602), + [sym_type_constraints] = STATE(3058), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [592] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9246), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118103,67 +115817,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118191,30 +115905,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), + }, + [593] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), + }, + [594] = { + [sym_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), + }, + [595] = { + [sym_getter] = STATE(1084), + [sym_setter] = STATE(1084), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3392), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), + }, + [596] = { + [sym_primary_constructor] = STATE(3812), + [sym__class_parameters] = STATE(2979), + [sym_type_parameters] = STATE(599), + [sym_type_constraints] = STATE(3040), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [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(3200), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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(1810), + [sym__string_start] = ACTIONS(3206), }, - [584] = { - [sym_type_constraints] = STATE(610), - [sym_property_delegate] = STATE(648), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9389), + [597] = { + [sym_primary_constructor] = STATE(3824), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [598] = { + [sym_type_constraints] = STATE(637), + [sym_property_delegate] = STATE(740), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118224,65 +116532,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [599] = { + [sym_primary_constructor] = STATE(3815), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = 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_fun] = 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), + }, + [600] = { + [sym_primary_constructor] = STATE(3811), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2971), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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(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_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [601] = { + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3448), + [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_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -118310,28 +116971,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [585] = { - [sym_getter] = STATE(1099), - [sym_setter] = STATE(1099), - [sym_modifiers] = STATE(9448), + [602] = { + [sym_primary_constructor] = STATE(3822), + [sym_class_body] = STATE(3220), + [sym__class_parameters] = STATE(2979), + [sym_type_constraints] = STATE(2985), + [sym_modifiers] = STATE(9855), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [603] = { + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(722), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118341,67 +117122,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118429,28 +117207,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [586] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9109), + [604] = { + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118460,28 +117239,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3462), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3448), [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(3384), - [anon_sym_set] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1808), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), @@ -118498,11 +117280,6 @@ 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(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), @@ -118515,7 +117292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = 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), @@ -118566,10 +117343,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [587] = { - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), - [sym_modifiers] = STATE(9109), + [605] = { + [sym_property_delegate] = STATE(667), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118579,67 +117357,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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(3384), - [anon_sym_set] = ACTIONS(3386), - [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3448), + [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_SEMI] = ACTIONS(1982), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -118667,30 +117443,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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_type_constraints] = STATE(600), - [sym_property_delegate] = STATE(647), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9389), + [606] = { + [sym_primary_constructor] = STATE(1384), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [607] = { + [sym_property_delegate] = STATE(662), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118700,28 +117593,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_EQ] = ACTIONS(3470), [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_by] = ACTIONS(3448), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(3216), + [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(3460), - [anon_sym_set] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -118804,129 +117697,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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), - [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), - }, - [590] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9448), + [608] = { + [sym_property_delegate] = STATE(652), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -118936,67 +117711,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3448), + [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_SEMI] = ACTIONS(1962), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -119024,30 +117797,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [591] = { - [sym_type_constraints] = STATE(599), - [sym_property_delegate] = STATE(657), - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9376), + [609] = { + [sym_property_delegate] = STATE(666), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -119057,65 +117829,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3448), + [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_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -119143,149 +117915,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - [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), + [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(3238), + [sym__string_start] = ACTIONS(1816), }, - [593] = { - [sym_type_constraints] = STATE(601), - [sym_property_delegate] = STATE(654), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9376), + [610] = { + [sym_property_delegate] = STATE(655), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -119295,28 +117947,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_EQ] = ACTIONS(3454), [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_by] = ACTIONS(3448), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(3216), + [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_SEMI] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -119399,249 +118051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [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(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(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), - [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), - }, - [596] = { - [sym_type_constraints] = STATE(609), - [sym_property_delegate] = STATE(666), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), + [611] = { + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -119652,65 +118065,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119738,148 +118151,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [612] = { + [sym_primary_constructor] = STATE(1390), + [sym_class_body] = STATE(1135), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(996), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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(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), + [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), }, - [598] = { - [sym_type_constraints] = STATE(640), - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9107), + [613] = { + [sym_type_constraints] = STATE(644), + [sym_property_delegate] = STATE(712), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -119889,27 +118302,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3548), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3518), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3258), [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_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -119992,11 +118405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [599] = { - [sym_property_delegate] = STATE(654), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9376), + [614] = { + [sym_type_constraints] = STATE(645), + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120006,65 +118420,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -120092,29 +118505,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1810), }, - [600] = { - [sym_property_delegate] = STATE(666), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9389), + [615] = { + [sym_type_constraints] = STATE(643), + [sym_property_delegate] = STATE(717), + [sym_getter] = STATE(3154), + [sym_setter] = STATE(3154), + [sym_modifiers] = STATE(9262), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), + }, + [616] = { + [sym_primary_constructor] = STATE(1397), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [617] = { + [sym_type_constraints] = STATE(640), + [sym_property_delegate] = STATE(729), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120124,28 +118774,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_EQ] = ACTIONS(3558), [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_by] = ACTIONS(3518), [anon_sym_LT] = ACTIONS(1802), [anon_sym_GT] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3258), [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_SEMI] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -120228,11 +118877,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [618] = { + [sym_primary_constructor] = STATE(1400), + [sym_class_body] = STATE(1120), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(10020), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [619] = { + [sym_type_constraints] = STATE(646), + [sym_property_delegate] = STATE(751), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120242,28 +119010,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(3562), [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_by] = ACTIONS(3518), [anon_sym_LT] = ACTIONS(1802), [anon_sym_GT] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(3258), [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_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -120346,12 +119113,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [602] = { - [sym_type_constraints] = STATE(643), - [sym_property_delegate] = STATE(749), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9406), + [620] = { + [sym_property_delegate] = STATE(674), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120361,64 +119127,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -120446,29 +119213,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [603] = { - [sym_property_delegate] = STATE(657), - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9376), + [621] = { + [sym_type_constraints] = STATE(639), + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120478,65 +119246,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -120564,147 +119331,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [605] = { + [622] = { [sym_property_delegate] = STATE(659), - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -120714,301 +119363,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3534), - [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(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), - [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), - }, - [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(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), - }, - [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3448), + [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_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -121036,29 +119449,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [608] = { - [sym_property_delegate] = STATE(647), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9389), + [623] = { + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(726), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -121068,28 +119482,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_EQ] = ACTIONS(3566), [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_by] = ACTIONS(3518), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(3258), [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_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -121172,129 +119585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [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), + [624] = { + [sym_type_constraints] = STATE(638), + [sym_property_delegate] = STATE(738), + [sym_getter] = STATE(1109), + [sym_setter] = STATE(1109), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -121304,65 +119600,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121390,30 +119685,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [611] = { - [sym_type_constraints] = STATE(639), - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9406), + [625] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -121422,71 +119731,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1808), + [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(1810), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(1808), + [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(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(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), @@ -121505,505 +119813,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), - }, - [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(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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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(3546), - [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_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(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), - }, - [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(3552), - [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_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), - [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), }, - [616] = { - [sym_type_constraints] = STATE(637), - [sym_property_delegate] = STATE(741), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9406), + [626] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -122012,71 +119848,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1790), + [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(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), - [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), @@ -122095,151 +119930,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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(1786), + [anon_sym_actual] = ACTIONS(1786), [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), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [618] = { - [sym_type_constraints] = STATE(638), - [sym_property_delegate] = STATE(718), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9107), + [627] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -122248,71 +119965,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1618), [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(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_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1802), + [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(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_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_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), - [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), @@ -122331,387 +120047,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), - }, - [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(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), - [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), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), + [628] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -122720,71 +120082,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3630), + [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), - [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), @@ -122803,283 +120164,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - [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), - }, - [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(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), - [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(1786), + [anon_sym_actual] = ACTIONS(1786), [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), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [629] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123088,31 +120199,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), [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_SEMI] = ACTIONS(3632), + [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), @@ -123177,26 +120288,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [630] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123205,31 +120316,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), [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_SEMI] = ACTIONS(3634), + [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), @@ -123294,26 +120405,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [631] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123322,47 +120433,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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(3578), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3636), [anon_sym_get] = ACTIONS(3624), [anon_sym_set] = ACTIONS(3626), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1808), [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_else] = ACTIONS(1808), [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_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(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -123411,26 +120522,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [632] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123439,31 +120550,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(1792), - [anon_sym_as] = ACTIONS(3574), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(1792), [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), [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_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3586), [anon_sym_STAR] = ACTIONS(3588), [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(3590), @@ -123528,26 +120639,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [633] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123556,47 +120667,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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(3578), - [anon_sym_where] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3640), [anon_sym_get] = ACTIONS(3624), [anon_sym_set] = ACTIONS(3626), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1736), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1734), [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_else] = ACTIONS(1734), [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_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -123645,26 +120756,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [634] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123673,47 +120784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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(3578), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(3642), [anon_sym_get] = ACTIONS(3624), [anon_sym_set] = ACTIONS(3626), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1824), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -123762,26 +120873,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [635] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -123790,164 +120901,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(1810), - [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_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1734), + [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(1810), + [anon_sym_DASH_GT] = ACTIONS(1736), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1734), [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_else] = ACTIONS(1734), [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(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(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), - }, - [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(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(3578), - [anon_sym_where] = ACTIONS(1732), - [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(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_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -123996,26 +120990,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [636] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124024,47 +121018,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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(3578), - [anon_sym_where] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(3646), [anon_sym_get] = ACTIONS(3584), [anon_sym_set] = ACTIONS(3586), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1804), + [anon_sym_DASH_GT] = ACTIONS(1824), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -124113,26 +121107,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [637] = { + [sym_property_delegate] = STATE(712), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124141,304 +121120,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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(1792), - [anon_sym_as] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1586), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(1792), [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(3578), - [anon_sym_where] = ACTIONS(1790), - [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(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_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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_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), - [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), - }, - [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(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(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), - [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), - }, - [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(3572), - [anon_sym_RBRACK] = ACTIONS(1810), - [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_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), - [anon_sym_where] = ACTIONS(1808), - [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(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1808), - [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(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(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_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(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), @@ -124457,18 +121202,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(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(3602), + [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), }, - [637] = { - [sym_property_delegate] = STATE(739), - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9406), + [638] = { + [sym_property_delegate] = STATE(740), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124478,63 +121237,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124562,29 +121321,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [638] = { - [sym_property_delegate] = STATE(750), - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9107), + [639] = { + [sym_property_delegate] = STATE(735), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124594,63 +121353,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), [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_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -124678,29 +121437,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [639] = { - [sym_property_delegate] = STATE(728), - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), - [sym_modifiers] = STATE(9406), + [640] = { + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124710,63 +121469,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = 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(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(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_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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -124794,29 +121553,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [640] = { - [sym_property_delegate] = STATE(718), - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9107), + [641] = { + [sym_property_delegate] = STATE(729), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -124826,26 +121585,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3558), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3518), [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_SEMI] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -124928,127 +121687,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, [642] = { - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9107), + [sym_property_delegate] = STATE(726), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125058,26 +121701,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3566), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3518), [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_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -125161,10 +121804,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [643] = { - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9406), + [sym_property_delegate] = STATE(722), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9262), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [644] = { + [sym_property_delegate] = STATE(751), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125174,26 +121933,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_EQ] = ACTIONS(3562), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(3516), + [anon_sym_by] = ACTIONS(3518), [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_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -125276,11 +122035,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [644] = { + [645] = { [sym_property_delegate] = STATE(747), - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9107), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125290,63 +122049,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -125374,29 +122133,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [645] = { - [sym_property_delegate] = STATE(749), - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9406), + [646] = { + [sym_property_delegate] = STATE(723), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125406,63 +122165,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -125490,29 +122249,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1810), }, - [646] = { - [sym_property_delegate] = STATE(741), - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9406), + [647] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125522,63 +122280,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -125606,28 +122364,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [647] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9389), + [648] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125637,63 +122395,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -125721,143 +122479,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [sym__string_start] = ACTIONS(1816), }, [649] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125867,63 +122510,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125951,28 +122594,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [650] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -125982,63 +122625,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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(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), - [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126066,28 +122709,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [651] = { - [sym_getter] = STATE(3111), - [sym_setter] = STATE(3111), - [sym_modifiers] = STATE(9389), + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -126097,63 +122740,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126181,28 +122824,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [652] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -126212,12 +122855,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -126228,10 +122872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3474), - [anon_sym_set] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -126315,8 +122958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [653] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -126327,63 +122970,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -126411,28 +123054,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [654] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -126442,63 +123085,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -126526,27 +123169,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1810), }, [655] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -126557,12 +123200,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -126573,10 +123217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1962), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -126660,9 +123303,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1804), }, [656] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -126672,12 +123315,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -126688,10 +123332,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -126775,9 +123418,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1804), }, [657] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1084), + [sym_setter] = STATE(1084), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), + }, + [658] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -126787,12 +123545,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -126803,125 +123562,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -127005,9 +123648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [659] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127017,63 +123660,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1982), - [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), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -127101,27 +123744,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1810), + [sym__string_start] = ACTIONS(1816), }, [660] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -127132,12 +123775,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -127148,10 +123792,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3460), - [anon_sym_set] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -127235,9 +123878,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1792), }, [661] = { - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127247,63 +123890,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1802), [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(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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -127331,28 +123974,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1816), + [sym__string_start] = ACTIONS(1804), }, [662] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9389), + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127362,63 +124005,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1972), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -127446,28 +124089,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [663] = { - [sym_getter] = STATE(1099), - [sym_setter] = STATE(1099), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127477,63 +124120,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1734), [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(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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127561,28 +124204,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [664] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9389), + [sym_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127592,63 +124235,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127676,27 +124319,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, [665] = { - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -127707,63 +124350,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [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), @@ -127791,27 +124434,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [666] = { - [sym_getter] = STATE(3162), - [sym_setter] = STATE(3162), + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -127822,63 +124465,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), [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_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -127906,28 +124549,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [667] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -127937,63 +124580,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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(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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128021,28 +124664,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [668] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9376), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -128052,63 +124695,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128136,27 +124779,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, [669] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), + [sym_getter] = STATE(3090), + [sym_setter] = STATE(3090), [sym_modifiers] = STATE(9389), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), @@ -128167,12 +124810,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3452), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), + }, + [670] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9367), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -128183,10 +124942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -128269,10 +125027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [670] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9376), + [671] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -128282,63 +125040,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -128366,28 +125124,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [671] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9376), + [672] = { + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -128397,63 +125155,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1790), [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(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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -128481,28 +125239,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [672] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9389), + [673] = { + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -128512,12 +125270,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -128528,10 +125287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1974), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -128614,125 +125372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [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(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), - }, [674] = { - [sym_getter] = STATE(3116), - [sym_setter] = STATE(3116), - [sym_modifiers] = STATE(9389), + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9367), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -128742,63 +125385,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3474), + [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), @@ -128826,430 +125469,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1816), + [sym__string_start] = ACTIONS(1792), }, [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(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(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), - [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__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3655), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3669), + [anon_sym_fun] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3675), + [anon_sym_set] = ACTIONS(3675), + [anon_sym_this] = ACTIONS(3678), + [anon_sym_super] = ACTIONS(3681), + [anon_sym_STAR] = ACTIONS(3684), + [sym_label] = ACTIONS(3687), + [anon_sym_in] = ACTIONS(3690), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3699), + [anon_sym_when] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3717), + [anon_sym_BANGin] = ACTIONS(3720), + [anon_sym_is] = ACTIONS(3723), + [anon_sym_BANGis] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3687), + [anon_sym_DASH] = ACTIONS(3687), + [anon_sym_PLUS_PLUS] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3729), + [anon_sym_BANG] = ACTIONS(3687), + [anon_sym_data] = ACTIONS(3675), + [anon_sym_inner] = ACTIONS(3675), + [anon_sym_value] = ACTIONS(3675), + [anon_sym_expect] = ACTIONS(3675), + [anon_sym_actual] = ACTIONS(3675), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3732), + [anon_sym_continue_AT] = ACTIONS(3735), + [anon_sym_break_AT] = ACTIONS(3738), + [anon_sym_this_AT] = ACTIONS(3741), + [anon_sym_super_AT] = ACTIONS(3744), + [sym_real_literal] = ACTIONS(3747), + [sym_integer_literal] = ACTIONS(3750), + [sym_hex_literal] = ACTIONS(3753), + [sym_bin_literal] = ACTIONS(3753), + [anon_sym_true] = ACTIONS(3756), + [anon_sym_false] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3759), + [sym__backtick_identifier] = ACTIONS(3762), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3765), + }, + [676] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(677), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(677), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3768), + [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(3770), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3772), + [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(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), + [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(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3682), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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), }, [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_RBRACE] = ACTIONS(3780), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -129259,10 +125788,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -129270,9 +125799,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -129300,70 +125829,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [678] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(678), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3782), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -129373,10 +125902,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -129384,9 +125913,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -129414,70 +125943,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [679] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(696), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(696), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3784), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -129487,10 +126016,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -129498,9 +126027,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -129528,70 +126057,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [680] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(680), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(3784), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -129601,10 +126130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -129612,9 +126141,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -129642,184 +126171,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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(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), - [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), - }, - [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), + [681] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(678), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(685), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(678), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3786), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -129829,10 +126244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -129840,9 +126255,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -129870,184 +126285,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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(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(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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [682] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(685), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(685), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_RBRACE] = ACTIONS(3788), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130057,10 +126358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130068,9 +126369,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -130098,184 +126399,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(3658), - [anon_sym_where] = ACTIONS(1808), - [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(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), - [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), - }, - [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), + [683] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(689), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_RBRACE] = ACTIONS(3786), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130285,10 +126472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130296,9 +126483,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -130326,184 +126513,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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(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), - [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), - }, - [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), + [684] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(697), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(697), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3790), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130513,10 +126586,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130524,9 +126597,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -130554,70 +126627,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [685] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(705), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3792), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130627,10 +126700,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130638,9 +126711,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -130668,26 +126741,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [686] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -130696,60 +126769,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1822), [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(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_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130778,74 +126851,74 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [687] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(680), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(699), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(680), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_RBRACE] = ACTIONS(3844), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130855,10 +126928,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130866,9 +126939,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -130896,70 +126969,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [688] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(689), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(696), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(689), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3792), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -130969,10 +127042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -130980,9 +127053,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131010,184 +127083,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_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), + [689] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3846), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131197,10 +127156,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131208,9 +127167,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131238,70 +127197,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [690] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1736), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [691] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(693), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(693), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3850), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131311,10 +127384,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131322,9 +127395,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131352,70 +127425,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [692] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(3852), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1824), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [693] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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(698), - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3858), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131425,10 +127612,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131436,9 +127623,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131466,70 +127653,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [694] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(695), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(695), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_RBRACE] = ACTIONS(3858), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131539,10 +127726,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131550,9 +127737,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131580,70 +127767,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [695] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3860), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131653,10 +127840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131664,9 +127851,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131694,70 +127881,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [696] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3870), + [anon_sym_RBRACE] = ACTIONS(3862), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131767,10 +127954,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131778,9 +127965,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131808,70 +127995,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [697] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_RBRACE] = ACTIONS(3864), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131881,10 +128068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -131892,9 +128079,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -131922,70 +128109,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [698] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3872), + [anon_sym_RBRACE] = ACTIONS(3790), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -131995,10 +128182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -132006,9 +128193,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132036,70 +128223,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [699] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(683), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(683), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3866), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -132109,10 +128296,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -132120,9 +128307,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132150,26 +128337,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [700] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -132178,60 +128365,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1814), [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(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_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3868), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132260,74 +128447,74 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [701] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3768), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -132337,10 +128524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -132348,9 +128535,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -132378,26 +128565,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [702] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -132406,60 +128593,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1734), [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_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132488,30 +128675,30 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [703] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -132520,60 +128707,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3872), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [704] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), [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_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132603,29 +128904,29 @@ 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(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [705] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -132634,60 +128935,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1808), [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_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132716,302 +129017,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(1816), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), [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), + [706] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(273), - [anon_sym_continue_AT] = 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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [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), + [707] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(701), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(701), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3880), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), [anon_sym_fun] = ACTIONS(1990), @@ -133021,10 +129208,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(237), [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), - [anon_sym_in] = ACTIONS(3712), + [anon_sym_in] = ACTIONS(3770), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3714), + [anon_sym_else] = ACTIONS(3772), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), [anon_sym_throw] = ACTIONS(1994), @@ -133032,9 +129219,9 @@ 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_BANGin] = ACTIONS(3716), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), + [anon_sym_BANGin] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), [anon_sym_PLUS] = ACTIONS(877), [anon_sym_DASH] = ACTIONS(877), [anon_sym_PLUS_PLUS] = ACTIONS(879), @@ -133062,26 +129249,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [708] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133090,60 +129277,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133172,142 +129359,30 @@ 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(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__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [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), + [709] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133316,60 +129391,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3854), + [anon_sym_set] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133398,29 +129473,144 @@ 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(3602), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3824), [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), + [710] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_entry] = STATE(698), + [sym_when_condition] = STATE(8799), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym_when_expression_repeat1] = STATE(698), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(3770), + [anon_sym_null] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(3772), + [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(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), + [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_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133429,60 +129619,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3806), + [anon_sym_set] = ACTIONS(3808), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133511,29 +129701,14 @@ 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(3602), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3824), [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), + [712] = { + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133542,66 +129717,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(2000), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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(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), @@ -133620,33 +129797,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(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(3602), + [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), }, - [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), + [713] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133655,66 +129830,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -133733,17 +129910,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(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(3602), + [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), }, - [718] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9107), + [714] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133753,61 +129944,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133835,28 +130026,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [719] = { - [sym_getter] = STATE(1136), - [sym_setter] = STATE(1136), - [sym_modifiers] = STATE(9107), + [715] = { + [sym_getter] = STATE(1093), + [sym_setter] = STATE(1093), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133866,61 +130057,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133948,28 +130139,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, - [720] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9107), + [716] = { + [sym_getter] = STATE(1175), + [sym_setter] = STATE(1175), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -133979,12 +130170,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -133993,10 +130185,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1802), [anon_sym_super] = ACTIONS(1802), [anon_sym_STAR] = ACTIONS(1804), @@ -134079,26 +130270,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [717] = { + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134107,66 +130282,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [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), @@ -134185,17 +130362,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(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(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [722] = { - [sym_getter] = STATE(1112), - [sym_setter] = STATE(1112), - [sym_modifiers] = STATE(9107), + [718] = { + [sym_getter] = STATE(3192), + [sym_setter] = STATE(3192), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134205,61 +130396,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -134287,28 +130478,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [723] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9107), + [719] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134318,61 +130509,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -134400,28 +130591,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1816), }, - [724] = { - [sym_getter] = STATE(1160), - [sym_setter] = STATE(1160), - [sym_modifiers] = STATE(9107), + [720] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134431,12 +130622,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -134445,10 +130637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3520), - [anon_sym_set] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -134531,26 +130722,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [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), + [721] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134559,43 +130750,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3890), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3934), + [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(1814), + [anon_sym_while] = ACTIONS(1734), [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_else] = ACTIONS(1734), [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_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(3910), [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), [anon_sym_EQ_EQ] = ACTIONS(3910), @@ -134644,26 +130835,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [722] = { + [sym_getter] = STATE(3230), + [sym_setter] = STATE(3230), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134672,66 +130847,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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(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(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), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(2066), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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(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), @@ -134750,17 +130927,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(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(3602), + [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), }, - [727] = { - [sym_getter] = STATE(3116), - [sym_setter] = STATE(3116), - [sym_modifiers] = STATE(9406), + [723] = { + [sym_getter] = STATE(1102), + [sym_setter] = STATE(1102), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134770,12 +130961,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), [anon_sym_RBRACE] = ACTIONS(1816), @@ -134784,10 +130976,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(2064), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1814), [anon_sym_super] = ACTIONS(1814), [anon_sym_STAR] = ACTIONS(1816), @@ -134870,10 +131061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1816), }, - [728] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9406), + [724] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -134883,61 +131074,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -134965,44 +131156,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1810), + [sym__string_start] = ACTIONS(1804), }, - [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), + [725] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135011,43 +131202,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), [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_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(1732), + [anon_sym_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3910), [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), [anon_sym_EQ_EQ] = ACTIONS(3910), @@ -135096,10 +131287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [730] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9107), + [726] = { + [sym_getter] = STATE(3269), + [sym_setter] = STATE(3269), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135109,61 +131300,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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(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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -135191,28 +131382,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [731] = { - [sym_getter] = STATE(3126), - [sym_setter] = STATE(3126), - [sym_modifiers] = STATE(9406), + [727] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135222,12 +131413,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -135236,10 +131428,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3528), - [anon_sym_set] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -135322,365 +131513,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1810), }, - [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(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_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), - }, - [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(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(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), - [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), - }, - [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), + [728] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135689,43 +131541,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3890), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3926), [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_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [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_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3910), [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), [anon_sym_EQ_EQ] = ACTIONS(3910), @@ -135774,10 +131626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [736] = { - [sym_getter] = STATE(3111), - [sym_setter] = STATE(3111), - [sym_modifiers] = STATE(9406), + [729] = { + [sym_getter] = STATE(3184), + [sym_setter] = STATE(3184), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135787,61 +131639,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(2046), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -135869,28 +131721,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [737] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9406), + [730] = { + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -135900,61 +131752,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -135982,44 +131834,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1804), + [sym__string_start] = ACTIONS(1792), }, - [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), + [731] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136028,43 +131880,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3890), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_SEMI] = ACTIONS(3928), [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_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(1796), + [anon_sym_else] = ACTIONS(1814), [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_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), @@ -136113,10 +131965,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [739] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9406), + [732] = { + [sym_getter] = STATE(3127), + [sym_setter] = STATE(3127), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136126,61 +131978,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(2058), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [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), @@ -136208,28 +132060,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(1792), + [sym__string_start] = ACTIONS(1816), }, - [740] = { - [sym_getter] = STATE(3264), - [sym_setter] = STATE(3264), - [sym_modifiers] = STATE(9406), + [733] = { + [sym_getter] = STATE(1084), + [sym_setter] = STATE(1084), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136239,61 +132091,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136321,28 +132173,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, - [741] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9406), + [734] = { + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136352,61 +132204,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136434,28 +132286,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [742] = { - [sym_getter] = STATE(3225), - [sym_setter] = STATE(3225), - [sym_modifiers] = STATE(9406), + [735] = { + [sym_getter] = STATE(3110), + [sym_setter] = STATE(3110), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136465,61 +132317,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136547,28 +132399,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [743] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9406), + [736] = { + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136578,61 +132430,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136660,28 +132512,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, - [744] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9107), + [737] = { + [sym_getter] = STATE(3090), + [sym_setter] = STATE(3090), + [sym_modifiers] = STATE(9262), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136691,61 +132543,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136773,28 +132625,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, - [745] = { - [sym_getter] = STATE(3187), - [sym_setter] = STATE(3187), - [sym_modifiers] = STATE(9406), + [738] = { + [sym_getter] = STATE(1124), + [sym_setter] = STATE(1124), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136804,61 +132656,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136886,28 +132738,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [746] = { - [sym_getter] = STATE(1147), - [sym_setter] = STATE(1147), - [sym_modifiers] = STATE(9107), + [739] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -136917,61 +132769,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -136999,28 +132851,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [747] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9107), + [740] = { + [sym_getter] = STATE(1138), + [sym_setter] = STATE(1138), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137030,61 +132882,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(2056), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -137112,28 +132964,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [748] = { - [sym_getter] = STATE(1099), - [sym_setter] = STATE(1099), - [sym_modifiers] = STATE(9107), + [741] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137142,68 +133010,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(1734), + [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(1734), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [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(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), @@ -137222,31 +133088,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(1786), + [anon_sym_actual] = ACTIONS(1786), [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), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [749] = { - [sym_getter] = STATE(3229), - [sym_setter] = STATE(3229), - [sym_modifiers] = STATE(9406), + [742] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137255,62 +133123,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), - [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(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), + [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), + }, + [743] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3934), + [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), + }, + [744] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(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), + }, + [745] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3938), + [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), + }, + [746] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(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), + }, + [747] = { + [sym_getter] = STATE(1096), + [sym_setter] = STATE(1096), + [sym_modifiers] = STATE(9326), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137338,28 +133755,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), + }, + [748] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(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), + }, + [749] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(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), - [sym__string_start] = ACTIONS(1804), }, [750] = { - [sym_getter] = STATE(1163), - [sym_setter] = STATE(1163), - [sym_modifiers] = STATE(9107), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137369,12 +134012,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -137383,10 +134027,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1808), [anon_sym_object] = ACTIONS(1808), [anon_sym_fun] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), [anon_sym_this] = ACTIONS(1808), [anon_sym_super] = ACTIONS(1808), [anon_sym_STAR] = ACTIONS(1810), @@ -137470,9 +134113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(1810), }, [751] = { - [sym_getter] = STATE(1158), - [sym_setter] = STATE(1158), - [sym_modifiers] = STATE(9107), + [sym_getter] = STATE(1148), + [sym_setter] = STATE(1148), + [sym_modifiers] = STATE(9326), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137482,61 +134125,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(2060), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3524), + [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), @@ -137564,44 +134207,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, [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_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -137610,41 +134253,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -137652,16 +134295,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -137690,224 +134333,112 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [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__loop_statement] = STATE(3383), + [sym_for_statement] = STATE(3383), + [sym_while_statement] = STATE(3383), + [sym_do_while_statement] = STATE(3383), + [sym_assignment] = STATE(3383), + [sym__expression] = STATE(2484), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1798), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8398), + [sym_annotation] = STATE(1266), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1121), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(159), - [anon_sym_if] = ACTIONS(161), + [anon_sym_null] = ACTIONS(845), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(167), - [anon_sym_return] = ACTIONS(169), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(851), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -137918,138 +134449,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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), + [754] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138058,41 +134477,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -138100,16 +134519,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138138,30 +134557,366 @@ 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(1816), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [755] = { + [sym__loop_statement] = STATE(3136), + [sym_for_statement] = STATE(3136), + [sym_while_statement] = STATE(3136), + [sym_do_while_statement] = STATE(3136), + [sym_assignment] = STATE(3136), + [sym__expression] = STATE(2251), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_annotation] = STATE(1287), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [756] = { + [sym__loop_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_while_statement] = STATE(1106), + [sym_assignment] = STATE(1106), + [sym__expression] = STATE(369), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(2093), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8400), + [sym_annotation] = STATE(1260), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [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(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(533), + [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), }, [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_annotated_lambda] = STATE(1031), + [sym_lambda_literal] = STATE(1058), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_fun] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_this] = ACTIONS(3978), + [anon_sym_super] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3978), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_null] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3980), + [anon_sym_continue_AT] = ACTIONS(3980), + [anon_sym_break_AT] = ACTIONS(3980), + [anon_sym_this_AT] = ACTIONS(3980), + [anon_sym_super_AT] = ACTIONS(3980), + [sym_real_literal] = ACTIONS(3980), + [sym_integer_literal] = ACTIONS(3978), + [sym_hex_literal] = ACTIONS(3980), + [sym_bin_literal] = ACTIONS(3980), + [anon_sym_true] = ACTIONS(3978), + [anon_sym_false] = ACTIONS(3978), + [anon_sym_SQUOTE] = ACTIONS(3980), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3980), + }, + [758] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138170,41 +134925,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1734), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), [anon_sym_BANG_EQ] = ACTIONS(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -138212,16 +134967,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138250,30 +135005,30 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [759] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138282,41 +135037,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -138324,16 +135079,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138362,30 +135117,30 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [760] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138394,41 +135149,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), [anon_sym_BANG_EQ] = ACTIONS(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -138436,16 +135191,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138474,30 +135229,142 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [761] = { + [sym__loop_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_while_statement] = STATE(1106), + [sym_assignment] = STATE(1106), + [sym__expression] = STATE(468), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1724), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8385), + [sym_annotation] = STATE(1242), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(963), + [anon_sym_for] = ACTIONS(965), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [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(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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(533), + [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(975), + [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), + }, + [762] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138506,41 +135373,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -138548,16 +135415,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138586,30 +135453,30 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [763] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -138618,41 +135485,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -138660,16 +135527,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -138698,224 +135565,112 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - }, - [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), + [764] = { + [sym__loop_statement] = STATE(3829), + [sym_for_statement] = STATE(3829), + [sym_while_statement] = STATE(3829), + [sym_do_while_statement] = STATE(3829), + [sym_assignment] = STATE(3829), + [sym__expression] = STATE(2593), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1563), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8389), + [sym_annotation] = STATE(1238), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), + [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(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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(911), [sym_integer_literal] = ACTIONS(545), [sym_hex_literal] = ACTIONS(547), [sym_bin_literal] = ACTIONS(547), @@ -138926,306 +135681,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__loop_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_while_statement] = STATE(1106), + [sym_assignment] = STATE(1106), + [sym__expression] = STATE(532), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(770), + [sym_parenthesized_expression] = STATE(770), + [sym_collection_literal] = STATE(770), + [sym__literal_constant] = STATE(770), + [sym_string_literal] = STATE(770), + [sym_lambda_literal] = STATE(770), + [sym_anonymous_function] = STATE(770), + [sym__function_literal] = STATE(770), + [sym_object_literal] = STATE(770), + [sym_this_expression] = STATE(770), + [sym_super_expression] = STATE(770), + [sym_if_expression] = STATE(770), + [sym_when_expression] = STATE(770), + [sym_try_expression] = STATE(770), + [sym_jump_expression] = STATE(770), + [sym_callable_reference] = STATE(770), + [sym__prefix_unary_operator] = STATE(1726), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8373), + [sym_annotation] = STATE(1244), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(770), + [sym_long_literal] = STATE(770), + [sym_boolean_literal] = STATE(770), + [sym_character_literal] = STATE(770), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1025), + [anon_sym_do] = ACTIONS(593), + [anon_sym_null] = ACTIONS(969), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(975), + [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(555), + [sym__string_start] = ACTIONS(639), }, [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__loop_statement] = STATE(3136), + [sym_for_statement] = STATE(3136), + [sym_while_statement] = STATE(3136), + [sym_do_while_statement] = STATE(3136), + [sym_assignment] = STATE(3136), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1994), + [sym__postfix_unary_expression] = STATE(8458), [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_annotation] = STATE(1248), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [767] = { + [sym__loop_statement] = STATE(9167), + [sym_for_statement] = STATE(9167), + [sym_while_statement] = STATE(9167), + [sym_do_while_statement] = STATE(9167), + [sym_assignment] = STATE(9167), + [sym__expression] = STATE(4289), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1245), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_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), @@ -139240,11 +135995,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), @@ -139262,108 +136017,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [768] = { + [sym__loop_statement] = STATE(1106), + [sym_for_statement] = STATE(1106), + [sym_while_statement] = STATE(1106), + [sym_do_while_statement] = STATE(1106), + [sym_assignment] = STATE(1106), + [sym__expression] = STATE(384), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_collection_literal] = STATE(774), + [sym__literal_constant] = STATE(774), + [sym_string_literal] = STATE(774), + [sym_lambda_literal] = STATE(774), + [sym_anonymous_function] = STATE(774), + [sym__function_literal] = STATE(774), + [sym_object_literal] = STATE(774), + [sym_this_expression] = STATE(774), + [sym_super_expression] = STATE(774), + [sym_if_expression] = STATE(774), + [sym_when_expression] = STATE(774), + [sym_try_expression] = STATE(774), + [sym_jump_expression] = STATE(774), + [sym_callable_reference] = STATE(774), + [sym__prefix_unary_operator] = STATE(1881), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8376), + [sym_annotation] = STATE(1257), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1082), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(774), + [sym_long_literal] = STATE(774), + [sym_boolean_literal] = STATE(774), + [sym_character_literal] = STATE(774), + [sym__lexical_identifier] = STATE(825), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(721), + [anon_sym_for] = ACTIONS(723), + [anon_sym_while] = ACTIONS(725), [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(597), + [anon_sym_null] = ACTIONS(595), + [anon_sym_if] = ACTIONS(727), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [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), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(627), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -139374,69 +136129,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [769] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1736), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [770] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), + }, + [771] = { + [sym__loop_statement] = STATE(4783), + [sym_for_statement] = STATE(4783), + [sym_while_statement] = STATE(4783), + [sym_do_while_statement] = STATE(4783), + [sym_assignment] = STATE(4783), + [sym__expression] = STATE(4140), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1510), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8371), + [sym_annotation] = STATE(1253), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -139445,12 +136424,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(249), + [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), @@ -139459,11 +136438,11 @@ 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(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(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), @@ -139475,7 +136454,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), @@ -139486,138 +136465,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [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), + [772] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -139626,41 +136493,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(4018), [anon_sym_get] = ACTIONS(3950), [anon_sym_set] = ACTIONS(3952), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -139668,16 +136535,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139706,142 +136573,702 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - [anon_sym_expect] = ACTIONS(1910), - [anon_sym_actual] = ACTIONS(1910), + [773] = { + [sym_annotated_lambda] = STATE(1016), + [sym_lambda_literal] = STATE(1058), + [sym_annotation] = STATE(8340), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8340), + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_object] = ACTIONS(4020), + [anon_sym_fun] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_this] = ACTIONS(4020), + [anon_sym_super] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4020), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4022), + [anon_sym_continue_AT] = ACTIONS(4022), + [anon_sym_break_AT] = ACTIONS(4022), + [anon_sym_this_AT] = ACTIONS(4022), + [anon_sym_super_AT] = ACTIONS(4022), + [sym_real_literal] = ACTIONS(4022), + [sym_integer_literal] = ACTIONS(4020), + [sym_hex_literal] = ACTIONS(4022), + [sym_bin_literal] = ACTIONS(4022), + [anon_sym_true] = ACTIONS(4020), + [anon_sym_false] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4022), + }, + [774] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), + }, + [775] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4039), + [anon_sym_fun] = ACTIONS(4039), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4039), + [anon_sym_sealed] = ACTIONS(4039), + [anon_sym_annotation] = ACTIONS(4039), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4039), + [anon_sym_lateinit] = ACTIONS(4039), + [anon_sym_public] = ACTIONS(4039), + [anon_sym_private] = ACTIONS(4039), + [anon_sym_internal] = ACTIONS(4039), + [anon_sym_protected] = ACTIONS(4039), + [anon_sym_tailrec] = ACTIONS(4039), + [anon_sym_operator] = ACTIONS(4039), + [anon_sym_infix] = ACTIONS(4039), + [anon_sym_inline] = ACTIONS(4039), + [anon_sym_external] = ACTIONS(4039), + [sym_property_modifier] = ACTIONS(4039), + [anon_sym_abstract] = ACTIONS(4039), + [anon_sym_final] = ACTIONS(4039), + [anon_sym_open] = ACTIONS(4039), + [anon_sym_vararg] = ACTIONS(4039), + [anon_sym_noinline] = ACTIONS(4039), + [anon_sym_crossinline] = ACTIONS(4039), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [776] = { + [sym__loop_statement] = STATE(4783), + [sym_for_statement] = STATE(4783), + [sym_while_statement] = STATE(4783), + [sym_do_while_statement] = STATE(4783), + [sym_assignment] = STATE(4783), + [sym__expression] = STATE(3861), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1993), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8360), + [sym_annotation] = STATE(1292), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [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(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(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), + }, + [777] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4047), + [anon_sym_fun] = ACTIONS(4047), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4047), + [anon_sym_sealed] = ACTIONS(4047), + [anon_sym_annotation] = ACTIONS(4047), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4047), + [anon_sym_lateinit] = ACTIONS(4047), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_internal] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_tailrec] = ACTIONS(4047), + [anon_sym_operator] = ACTIONS(4047), + [anon_sym_infix] = ACTIONS(4047), + [anon_sym_inline] = ACTIONS(4047), + [anon_sym_external] = ACTIONS(4047), + [sym_property_modifier] = ACTIONS(4047), + [anon_sym_abstract] = ACTIONS(4047), + [anon_sym_final] = ACTIONS(4047), + [anon_sym_open] = ACTIONS(4047), + [anon_sym_vararg] = ACTIONS(4047), + [anon_sym_noinline] = ACTIONS(4047), + [anon_sym_crossinline] = ACTIONS(4047), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [778] = { + [sym__loop_statement] = STATE(5078), + [sym_for_statement] = STATE(5078), + [sym_while_statement] = STATE(5078), + [sym_do_while_statement] = STATE(5078), + [sym_assignment] = STATE(5078), + [sym__expression] = STATE(4071), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1620), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8365), + [sym_annotation] = STATE(1252), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(753), + [anon_sym_for] = ACTIONS(755), + [anon_sym_while] = ACTIONS(757), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [779] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -139850,41 +137277,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4050), [anon_sym_get] = ACTIONS(3950), [anon_sym_set] = ACTIONS(3952), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -139892,16 +137319,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -139930,254 +137357,30 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3824), [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(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), + [780] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -140186,41 +137389,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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), @@ -140228,16 +137431,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -140266,415 +137469,639 @@ 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(1816), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [781] = { + [sym__loop_statement] = STATE(5078), + [sym_for_statement] = STATE(5078), + [sym_while_statement] = STATE(5078), + [sym_do_while_statement] = STATE(5078), + [sym_assignment] = STATE(5078), + [sym__expression] = STATE(4289), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1503), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8363), + [sym_annotation] = STATE(1245), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [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_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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), }, - [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), + [782] = { + [sym__loop_statement] = STATE(4783), + [sym_for_statement] = STATE(4783), + [sym_while_statement] = STATE(4783), + [sym_do_while_statement] = STATE(4783), + [sym_assignment] = STATE(4783), + [sym__expression] = STATE(3334), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [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(1536), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8362), + [sym_annotation] = STATE(1261), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4889), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4530), + [sym_long_literal] = STATE(4530), + [sym_boolean_literal] = STATE(4530), + [sym_character_literal] = STATE(4530), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), }, - [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), + [783] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4047), + [anon_sym_fun] = ACTIONS(4047), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4045), + [anon_sym_sealed] = ACTIONS(4045), + [anon_sym_annotation] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4045), + [anon_sym_lateinit] = ACTIONS(4045), + [anon_sym_public] = ACTIONS(4045), + [anon_sym_private] = ACTIONS(4045), + [anon_sym_internal] = ACTIONS(4045), + [anon_sym_protected] = ACTIONS(4045), + [anon_sym_tailrec] = ACTIONS(4045), + [anon_sym_operator] = ACTIONS(4045), + [anon_sym_infix] = ACTIONS(4045), + [anon_sym_inline] = ACTIONS(4045), + [anon_sym_external] = ACTIONS(4045), + [sym_property_modifier] = ACTIONS(4045), + [anon_sym_abstract] = ACTIONS(4045), + [anon_sym_final] = ACTIONS(4045), + [anon_sym_open] = ACTIONS(4045), + [anon_sym_vararg] = ACTIONS(4045), + [anon_sym_noinline] = ACTIONS(4045), + [anon_sym_crossinline] = ACTIONS(4045), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [784] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4039), + [anon_sym_fun] = ACTIONS(4039), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4037), + [anon_sym_sealed] = ACTIONS(4037), + [anon_sym_annotation] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4037), + [anon_sym_lateinit] = ACTIONS(4037), + [anon_sym_public] = ACTIONS(4037), + [anon_sym_private] = ACTIONS(4037), + [anon_sym_internal] = ACTIONS(4037), + [anon_sym_protected] = ACTIONS(4037), + [anon_sym_tailrec] = ACTIONS(4037), + [anon_sym_operator] = ACTIONS(4037), + [anon_sym_infix] = ACTIONS(4037), + [anon_sym_inline] = ACTIONS(4037), + [anon_sym_external] = ACTIONS(4037), + [sym_property_modifier] = ACTIONS(4037), + [anon_sym_abstract] = ACTIONS(4037), + [anon_sym_final] = ACTIONS(4037), + [anon_sym_open] = ACTIONS(4037), + [anon_sym_vararg] = ACTIONS(4037), + [anon_sym_noinline] = ACTIONS(4037), + [anon_sym_crossinline] = ACTIONS(4037), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [785] = { + [sym__loop_statement] = STATE(5403), + [sym_for_statement] = STATE(5403), + [sym_while_statement] = STATE(5403), + [sym_do_while_statement] = STATE(5403), + [sym_assignment] = STATE(5403), + [sym__expression] = STATE(2251), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(2171), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8381), + [sym_annotation] = STATE(1287), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [786] = { + [sym__loop_statement] = STATE(3383), + [sym_for_statement] = STATE(3383), + [sym_while_statement] = STATE(3383), + [sym_do_while_statement] = STATE(3383), + [sym_assignment] = STATE(3383), + [sym__expression] = STATE(2310), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2772), + [sym_parenthesized_expression] = STATE(2772), + [sym_collection_literal] = STATE(2772), + [sym__literal_constant] = STATE(2772), + [sym_string_literal] = STATE(2772), + [sym_lambda_literal] = STATE(2772), + [sym_anonymous_function] = STATE(2772), + [sym__function_literal] = STATE(2772), + [sym_object_literal] = STATE(2772), + [sym_this_expression] = STATE(2772), + [sym_super_expression] = STATE(2772), + [sym_if_expression] = STATE(2772), + [sym_when_expression] = STATE(2772), + [sym_try_expression] = STATE(2772), + [sym_jump_expression] = STATE(2772), + [sym_callable_reference] = STATE(2772), + [sym__prefix_unary_operator] = STATE(1612), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8377), + [sym_annotation] = STATE(1270), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2772), + [sym_long_literal] = STATE(2772), + [sym_boolean_literal] = STATE(2772), + [sym_character_literal] = STATE(2772), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(837), @@ -140696,11 +138123,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), @@ -140718,549 +138145,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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(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(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), - }, - [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(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), - }, - [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), + [787] = { + [sym__loop_statement] = STATE(3383), + [sym_for_statement] = STATE(3383), + [sym_while_statement] = STATE(3383), + [sym_do_while_statement] = STATE(3383), + [sym_assignment] = STATE(3383), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1727), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8382), + [sym_annotation] = STATE(1237), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3376), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [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(779), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [anon_sym_continue_AT] = ACTIONS(185), @@ -141278,220 +138257,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), - }, - [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), + [788] = { + [sym__loop_statement] = STATE(3383), + [sym_for_statement] = STATE(3383), + [sym_while_statement] = STATE(3383), + [sym_do_while_statement] = STATE(3383), + [sym_assignment] = STATE(3383), + [sym__expression] = STATE(1755), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(2781), + [sym_parenthesized_expression] = STATE(2781), + [sym_collection_literal] = STATE(2781), + [sym__literal_constant] = STATE(2781), + [sym_string_literal] = STATE(2781), + [sym_lambda_literal] = STATE(2781), + [sym_anonymous_function] = STATE(2781), + [sym__function_literal] = STATE(2781), + [sym_object_literal] = STATE(2781), + [sym_this_expression] = STATE(2781), + [sym_super_expression] = STATE(2781), + [sym_if_expression] = STATE(2781), + [sym_when_expression] = STATE(2781), + [sym_try_expression] = STATE(2781), + [sym_jump_expression] = STATE(2781), + [sym_callable_reference] = STATE(2781), + [sym__prefix_unary_operator] = STATE(1869), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8380), + [sym_annotation] = STATE(1262), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3376), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(2781), + [sym_long_literal] = STATE(2781), + [sym_boolean_literal] = STATE(2781), + [sym_character_literal] = STATE(2781), + [sym__lexical_identifier] = STATE(2892), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(689), + [anon_sym_for] = ACTIONS(691), + [anon_sym_while] = ACTIONS(693), [anon_sym_do] = ACTIONS(157), - [anon_sym_null] = ACTIONS(845), - [anon_sym_if] = ACTIONS(779), + [anon_sym_null] = ACTIONS(159), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(193), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -141502,108 +138369,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [789] = { + [sym__loop_statement] = STATE(5078), + [sym_for_statement] = STATE(5078), + [sym_while_statement] = STATE(5078), + [sym_do_while_statement] = STATE(5078), + [sym_assignment] = STATE(5078), + [sym__expression] = STATE(4247), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4552), + [sym_parenthesized_expression] = STATE(4552), + [sym_collection_literal] = STATE(4552), + [sym__literal_constant] = STATE(4552), + [sym_string_literal] = STATE(4552), + [sym_lambda_literal] = STATE(4552), + [sym_anonymous_function] = STATE(4552), + [sym__function_literal] = STATE(4552), + [sym_object_literal] = STATE(4552), + [sym_this_expression] = STATE(4552), + [sym_super_expression] = STATE(4552), + [sym_if_expression] = STATE(4552), + [sym_when_expression] = STATE(4552), + [sym_try_expression] = STATE(4552), + [sym_jump_expression] = STATE(4552), + [sym_callable_reference] = STATE(4552), + [sym__prefix_unary_operator] = STATE(1633), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8390), + [sym_annotation] = STATE(1246), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4552), + [sym_long_literal] = STATE(4552), + [sym_boolean_literal] = STATE(4552), + [sym_character_literal] = STATE(4552), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(995), + [anon_sym_for] = ACTIONS(997), + [anon_sym_while] = ACTIONS(999), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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), + }, + [790] = { + [sym__loop_statement] = STATE(3136), + [sym_for_statement] = STATE(3136), + [sym_while_statement] = STATE(3136), + [sym_do_while_statement] = STATE(3136), + [sym_assignment] = STATE(3136), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1783), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8369), + [sym_annotation] = STATE(1254), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(657), + [anon_sym_for] = ACTIONS(659), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(423), + [anon_sym_null] = ACTIONS(425), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [791] = { + [sym__loop_statement] = STATE(3829), + [sym_for_statement] = STATE(3829), + [sym_while_statement] = STATE(3829), + [sym_do_while_statement] = STATE(3829), + [sym_assignment] = STATE(3829), + [sym__expression] = STATE(2238), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1519), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8374), + [sym_annotation] = STATE(1259), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(543), [sym_integer_literal] = ACTIONS(545), [sym_hex_literal] = ACTIONS(547), [sym_bin_literal] = ACTIONS(547), @@ -141614,293 +138705,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [792] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9158), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(3984), + [anon_sym_set] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [793] = { + [sym__loop_statement] = STATE(3136), + [sym_for_statement] = STATE(3136), + [sym_while_statement] = STATE(3136), + [sym_do_while_statement] = STATE(3136), + [sym_assignment] = STATE(3136), + [sym__expression] = STATE(2036), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_collection_literal] = STATE(2748), + [sym__literal_constant] = STATE(2748), + [sym_string_literal] = STATE(2748), + [sym_lambda_literal] = STATE(2748), + [sym_anonymous_function] = STATE(2748), + [sym__function_literal] = STATE(2748), + [sym_object_literal] = STATE(2748), + [sym_this_expression] = STATE(2748), + [sym_super_expression] = STATE(2748), + [sym_if_expression] = STATE(2748), + [sym_when_expression] = STATE(2748), + [sym_try_expression] = STATE(2748), + [sym_jump_expression] = STATE(2748), + [sym_callable_reference] = STATE(2748), + [sym__prefix_unary_operator] = STATE(1769), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8402), + [sym_annotation] = STATE(1291), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3075), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(2748), + [sym_long_literal] = STATE(2748), + [sym_boolean_literal] = STATE(2748), + [sym_character_literal] = STATE(2748), + [sym__lexical_identifier] = STATE(2803), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_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(425), - [anon_sym_if] = ACTIONS(811), + [anon_sym_null] = ACTIONS(937), + [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [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(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), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), }, - [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), + [794] = { + [sym__loop_statement] = STATE(3829), + [sym_for_statement] = STATE(3829), + [sym_while_statement] = STATE(3829), + [sym_do_while_statement] = STATE(3829), + [sym_assignment] = STATE(3829), + [sym__expression] = STATE(1411), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3046), + [sym_parenthesized_expression] = STATE(3046), + [sym_collection_literal] = STATE(3046), + [sym__literal_constant] = STATE(3046), + [sym_string_literal] = STATE(3046), + [sym_lambda_literal] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [sym__function_literal] = STATE(3046), + [sym_object_literal] = STATE(3046), + [sym_this_expression] = STATE(3046), + [sym_super_expression] = STATE(3046), + [sym_if_expression] = STATE(3046), + [sym_when_expression] = STATE(3046), + [sym_try_expression] = STATE(3046), + [sym_jump_expression] = STATE(3046), + [sym_callable_reference] = STATE(3046), + [sym__prefix_unary_operator] = STATE(1673), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8375), + [sym_annotation] = STATE(1250), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3046), + [sym_long_literal] = STATE(3046), + [sym_boolean_literal] = STATE(3046), + [sym_character_literal] = STATE(3046), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_while] = ACTIONS(505), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(509), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [795] = { + [sym__loop_statement] = STATE(4783), + [sym_for_statement] = STATE(4783), + [sym_while_statement] = STATE(4783), + [sym_do_while_statement] = STATE(4783), + [sym_assignment] = STATE(4783), + [sym__expression] = STATE(4260), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_annotation] = STATE(1251), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -141909,11 +139112,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(325), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(247), [anon_sym_null] = ACTIONS(331), [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), @@ -141950,293 +139153,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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(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_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(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), - }, - [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), + [796] = { + [sym__loop_statement] = STATE(9500), + [sym_for_statement] = STATE(9500), + [sym_while_statement] = STATE(9500), + [sym_do_while_statement] = STATE(9500), + [sym_assignment] = STATE(9500), + [sym__expression] = STATE(4260), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4529), + [sym_parenthesized_expression] = STATE(4529), + [sym_collection_literal] = STATE(4529), + [sym__literal_constant] = STATE(4529), + [sym_string_literal] = STATE(4529), + [sym_lambda_literal] = STATE(4529), + [sym_anonymous_function] = STATE(4529), + [sym__function_literal] = STATE(4529), + [sym_object_literal] = STATE(4529), + [sym_this_expression] = STATE(4529), + [sym_super_expression] = STATE(4529), + [sym_if_expression] = STATE(4529), + [sym_when_expression] = STATE(4529), + [sym_try_expression] = STATE(4529), + [sym_jump_expression] = STATE(4529), + [sym_callable_reference] = STATE(4529), + [sym__prefix_unary_operator] = STATE(1565), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8388), + [sym_annotation] = STATE(1251), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4889), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4529), + [sym_long_literal] = STATE(4529), + [sym_boolean_literal] = STATE(4529), + [sym_character_literal] = STATE(4529), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -142245,11 +139224,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(323), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1119), - [anon_sym_do] = ACTIONS(247), + [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), @@ -142286,78 +139265,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [797] = { + [sym__loop_statement] = STATE(3829), + [sym_for_statement] = STATE(3829), + [sym_while_statement] = STATE(3829), + [sym_do_while_statement] = STATE(3829), + [sym_assignment] = STATE(3829), + [sym__expression] = STATE(2454), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(3003), + [sym_parenthesized_expression] = STATE(3003), + [sym_collection_literal] = STATE(3003), + [sym__literal_constant] = STATE(3003), + [sym_string_literal] = STATE(3003), + [sym_lambda_literal] = STATE(3003), + [sym_anonymous_function] = STATE(3003), + [sym__function_literal] = STATE(3003), + [sym_object_literal] = STATE(3003), + [sym_this_expression] = STATE(3003), + [sym_super_expression] = STATE(3003), + [sym_if_expression] = STATE(3003), + [sym_when_expression] = STATE(3003), + [sym_try_expression] = STATE(3003), + [sym_jump_expression] = STATE(3003), + [sym_callable_reference] = STATE(3003), + [sym__prefix_unary_operator] = STATE(1941), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8364), + [sym_annotation] = STATE(1288), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3987), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(3003), + [sym_long_literal] = STATE(3003), + [sym_boolean_literal] = STATE(3003), + [sym_character_literal] = STATE(3003), + [sym__lexical_identifier] = STATE(3321), + [aux_sym__statement_repeat1] = STATE(5384), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(899), + [anon_sym_for] = ACTIONS(901), + [anon_sym_while] = ACTIONS(903), + [anon_sym_do] = ACTIONS(507), + [anon_sym_null] = ACTIONS(905), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [798] = { + [sym__loop_statement] = STATE(5078), + [sym_for_statement] = STATE(5078), + [sym_while_statement] = STATE(5078), + [sym_do_while_statement] = STATE(5078), + [sym_assignment] = STATE(5078), + [sym__expression] = STATE(3750), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(4560), + [sym_parenthesized_expression] = STATE(4560), + [sym_collection_literal] = STATE(4560), + [sym__literal_constant] = STATE(4560), + [sym_string_literal] = STATE(4560), + [sym_lambda_literal] = STATE(4560), + [sym_anonymous_function] = STATE(4560), + [sym__function_literal] = STATE(4560), + [sym_object_literal] = STATE(4560), + [sym_this_expression] = STATE(4560), + [sym_super_expression] = STATE(4560), + [sym_if_expression] = STATE(4560), + [sym_when_expression] = STATE(4560), + [sym_try_expression] = STATE(4560), + [sym_jump_expression] = STATE(4560), + [sym_callable_reference] = STATE(4560), + [sym__prefix_unary_operator] = STATE(1938), + [sym__postfix_unary_expression] = STATE(8458), + [sym_directly_assignable_expression] = STATE(8394), + [sym_annotation] = STATE(1282), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5233), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(4560), + [sym_long_literal] = STATE(4560), + [sym_boolean_literal] = STATE(4560), + [sym_character_literal] = STATE(4560), + [sym__lexical_identifier] = STATE(4619), + [aux_sym__statement_repeat1] = STATE(5384), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1321), [sym_label] = ACTIONS(365), [anon_sym_for] = ACTIONS(367), [anon_sym_while] = ACTIONS(369), @@ -142376,11 +139467,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), @@ -142398,474 +139489,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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(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_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), - }, - [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(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(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_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(295), - }, - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -142874,40 +139517,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1802), - [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1808), [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), + [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1802), + [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(1802), + [anon_sym_else] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -142958,25 +139601,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [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_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -142985,40 +139628,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1802), [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), + [anon_sym_DASH_GT] = ACTIONS(1804), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1732), + [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(1732), + [anon_sym_else] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143069,136 +139712,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [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_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143207,40 +139739,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4094), [anon_sym_get] = ACTIONS(4090), [anon_sym_set] = ACTIONS(4092), [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1816), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1790), + [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(1790), + [anon_sym_else] = ACTIONS(1814), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143290,26 +139822,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [802] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143318,40 +139850,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), [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_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1798), + [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1796), + [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(1796), + [anon_sym_else] = ACTIONS(1808), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143401,26 +139933,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [803] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143429,40 +139961,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(4098), [anon_sym_get] = ACTIONS(4060), [anon_sym_set] = ACTIONS(4062), [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1792), + [anon_sym_DASH_GT] = ACTIONS(1824), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143512,26 +140044,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [804] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143540,40 +140072,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4100), [anon_sym_get] = ACTIONS(4060), [anon_sym_set] = ACTIONS(4062), [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), [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_else] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143623,26 +140155,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [805] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143651,30 +140183,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(1804), - [anon_sym_as] = ACTIONS(3574), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(1804), [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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_SEMI] = ACTIONS(4102), + [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), @@ -143734,26 +140266,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [806] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143762,40 +140294,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_where] = ACTIONS(1790), + [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(1810), + [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1808), + [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(1808), + [anon_sym_else] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143845,26 +140377,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, + [807] = { + [sym_catch_block] = STATE(815), + [sym_finally_block] = STATE(1017), + [aux_sym_try_expression_repeat1] = STATE(815), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(4110), + [anon_sym_finally] = ACTIONS(4112), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), + }, [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_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143873,40 +140516,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_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_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1814), - [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(4090), + [anon_sym_set] = ACTIONS(4092), [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1816), + [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1814), + [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(1814), + [anon_sym_else] = ACTIONS(1790), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -143957,25 +140600,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [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_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -143984,30 +140627,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACE] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(1816), [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1740), [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_get] = ACTIONS(4060), + [anon_sym_set] = ACTIONS(4062), [anon_sym_STAR] = ACTIONS(4064), [anon_sym_DASH_GT] = ACTIONS(1816), [sym_label] = ACTIONS(3590), @@ -144068,25 +140711,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [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_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -144095,40 +140738,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1822), [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), + [anon_sym_DASH_GT] = ACTIONS(1824), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1822), [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_else] = ACTIONS(1822), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -144179,25 +140822,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [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_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -144206,40 +140849,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(1734), [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), + [anon_sym_DASH_GT] = ACTIONS(1736), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1734), [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_else] = ACTIONS(1734), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(4076), [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), @@ -144290,11 +140933,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [812] = { - [sym_type_arguments] = STATE(6538), + [aux_sym_user_type_repeat1] = STATE(820), [sym__alpha_identifier] = ACTIONS(4122), [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4126), [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(4126), [anon_sym_as] = ACTIONS(4122), [anon_sym_EQ] = ACTIONS(4122), [anon_sym_LBRACE] = ACTIONS(4124), @@ -144307,13 +140950,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP] = ACTIONS(4122), + [sym__quest] = ACTIONS(4122), [anon_sym_STAR] = ACTIONS(4122), [sym_label] = ACTIONS(4122), [anon_sym_in] = ACTIONS(4122), @@ -144400,360 +141043,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4124), }, [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), + [sym_type_constraints] = STATE(903), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, [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), + [aux_sym_user_type_repeat1] = STATE(812), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4139), + [sym__quest] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), }, [815] = { - [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_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(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), + [sym_catch_block] = STATE(815), + [aux_sym_try_expression_repeat1] = STATE(815), + [sym__alpha_identifier] = ACTIONS(4146), + [anon_sym_AT] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4146), + [anon_sym_object] = ACTIONS(4146), + [anon_sym_fun] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_get] = ACTIONS(4146), + [anon_sym_set] = ACTIONS(4146), + [anon_sym_this] = ACTIONS(4146), + [anon_sym_super] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [sym_label] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_QMARK_COLON] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_else] = ACTIONS(4146), + [anon_sym_when] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_catch] = ACTIONS(4150), + [anon_sym_finally] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_BANGin] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4146), + [anon_sym_BANGis] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_as_QMARK] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_BANG_BANG] = ACTIONS(4148), + [anon_sym_suspend] = ACTIONS(4146), + [anon_sym_sealed] = ACTIONS(4146), + [anon_sym_annotation] = ACTIONS(4146), + [anon_sym_data] = ACTIONS(4146), + [anon_sym_inner] = ACTIONS(4146), + [anon_sym_value] = ACTIONS(4146), + [anon_sym_override] = ACTIONS(4146), + [anon_sym_lateinit] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_internal] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_tailrec] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_infix] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym_external] = ACTIONS(4146), + [sym_property_modifier] = ACTIONS(4146), + [anon_sym_abstract] = ACTIONS(4146), + [anon_sym_final] = ACTIONS(4146), + [anon_sym_open] = ACTIONS(4146), + [anon_sym_vararg] = ACTIONS(4146), + [anon_sym_noinline] = ACTIONS(4146), + [anon_sym_crossinline] = ACTIONS(4146), + [anon_sym_expect] = ACTIONS(4146), + [anon_sym_actual] = ACTIONS(4146), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4148), + [anon_sym_continue_AT] = ACTIONS(4148), + [anon_sym_break_AT] = ACTIONS(4148), + [anon_sym_this_AT] = ACTIONS(4148), + [anon_sym_super_AT] = ACTIONS(4148), + [sym_real_literal] = ACTIONS(4148), + [sym_integer_literal] = ACTIONS(4146), + [sym_hex_literal] = ACTIONS(4148), + [sym_bin_literal] = ACTIONS(4148), + [anon_sym_true] = ACTIONS(4146), + [anon_sym_false] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4148), + [sym__backtick_identifier] = ACTIONS(4148), + [sym__automatic_semicolon] = ACTIONS(4148), + [sym_safe_nav] = ACTIONS(4148), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4148), }, [816] = { - [aux_sym_user_type_repeat1] = STATE(819), + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_when_condition] = STATE(9284), + [sym_range_test] = STATE(9240), + [sym_type_test] = STATE(9240), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__in_operator] = STATE(1875), + [sym__is_operator] = STATE(6007), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(3770), + [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(3774), + [anon_sym_is] = ACTIONS(3776), + [anon_sym_BANGis] = ACTIONS(3778), + [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), + }, + [817] = { + [sym_type_constraints] = STATE(919), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1115), [sym__alpha_identifier] = ACTIONS(4153), [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(4157), [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), [anon_sym_as] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), [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_where] = ACTIONS(3258), [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), @@ -144839,1110 +141592,1001 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_type_arguments] = STATE(852), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_as] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_by] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(4163), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_where] = ACTIONS(4159), + [anon_sym_object] = ACTIONS(4159), + [anon_sym_fun] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_this] = ACTIONS(4159), + [anon_sym_super] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [sym_label] = ACTIONS(4159), + [anon_sym_in] = ACTIONS(4159), + [anon_sym_DOT_DOT] = ACTIONS(4161), + [anon_sym_QMARK_COLON] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4159), + [anon_sym_when] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_throw] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), + [anon_sym_EQ_EQ] = ACTIONS(4159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_BANGin] = ACTIONS(4161), + [anon_sym_is] = ACTIONS(4159), + [anon_sym_BANGis] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_as_QMARK] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_BANG_BANG] = ACTIONS(4161), + [anon_sym_suspend] = ACTIONS(4159), + [anon_sym_sealed] = ACTIONS(4159), + [anon_sym_annotation] = ACTIONS(4159), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_override] = ACTIONS(4159), + [anon_sym_lateinit] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_private] = ACTIONS(4159), + [anon_sym_internal] = ACTIONS(4159), + [anon_sym_protected] = ACTIONS(4159), + [anon_sym_tailrec] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_infix] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_external] = ACTIONS(4159), + [sym_property_modifier] = ACTIONS(4159), + [anon_sym_abstract] = ACTIONS(4159), + [anon_sym_final] = ACTIONS(4159), + [anon_sym_open] = ACTIONS(4159), + [anon_sym_vararg] = ACTIONS(4159), + [anon_sym_noinline] = ACTIONS(4159), + [anon_sym_crossinline] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4161), + [anon_sym_continue_AT] = ACTIONS(4161), + [anon_sym_break_AT] = ACTIONS(4161), + [anon_sym_this_AT] = ACTIONS(4161), + [anon_sym_super_AT] = ACTIONS(4161), + [sym_real_literal] = ACTIONS(4161), + [sym_integer_literal] = ACTIONS(4159), + [sym_hex_literal] = ACTIONS(4161), + [sym_bin_literal] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [anon_sym_SQUOTE] = ACTIONS(4161), + [sym__backtick_identifier] = ACTIONS(4161), + [sym__automatic_semicolon] = ACTIONS(4161), + [sym_safe_nav] = ACTIONS(4161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4161), }, [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(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), + [sym_type_constraints] = STATE(918), + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(4169), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, [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), + [aux_sym_user_type_repeat1] = STATE(820), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4175), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), }, [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), + [sym_type_constraints] = STATE(908), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, [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(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(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), - [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), + [sym_type_arguments] = STATE(6557), + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4186), + [anon_sym_continue_AT] = ACTIONS(4186), + [anon_sym_break_AT] = ACTIONS(4186), + [anon_sym_this_AT] = ACTIONS(4186), + [anon_sym_super_AT] = ACTIONS(4186), + [sym_real_literal] = ACTIONS(4186), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4186), + [sym_bin_literal] = ACTIONS(4186), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4186), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4186), }, [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), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4190), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), }, [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), + [sym_type_constraints] = STATE(895), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, [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), + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [sym__quest] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [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(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), + [sym__alpha_identifier] = ACTIONS(4200), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_as] = ACTIONS(4200), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4200), + [anon_sym_where] = ACTIONS(4200), + [anon_sym_object] = ACTIONS(4200), + [anon_sym_fun] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4200), + [anon_sym_set] = ACTIONS(4200), + [anon_sym_this] = ACTIONS(4200), + [anon_sym_super] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4200), + [anon_sym_in] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_null] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_else] = ACTIONS(4200), + [anon_sym_when] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4200), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4200), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4200), + [anon_sym_sealed] = ACTIONS(4200), + [anon_sym_annotation] = ACTIONS(4200), + [anon_sym_data] = ACTIONS(4200), + [anon_sym_inner] = ACTIONS(4200), + [anon_sym_value] = ACTIONS(4200), + [anon_sym_override] = ACTIONS(4200), + [anon_sym_lateinit] = ACTIONS(4200), + [anon_sym_public] = ACTIONS(4200), + [anon_sym_private] = ACTIONS(4200), + [anon_sym_internal] = ACTIONS(4200), + [anon_sym_protected] = ACTIONS(4200), + [anon_sym_tailrec] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_infix] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym_external] = ACTIONS(4200), + [sym_property_modifier] = ACTIONS(4200), + [anon_sym_abstract] = ACTIONS(4200), + [anon_sym_final] = ACTIONS(4200), + [anon_sym_open] = ACTIONS(4200), + [anon_sym_vararg] = ACTIONS(4200), + [anon_sym_noinline] = ACTIONS(4200), + [anon_sym_crossinline] = ACTIONS(4200), + [anon_sym_expect] = ACTIONS(4200), + [anon_sym_actual] = ACTIONS(4200), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4200), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4200), + [anon_sym_false] = ACTIONS(4200), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), }, [827] = { - [aux_sym_nullable_type_repeat1] = STATE(839), + [aux_sym_nullable_type_repeat1] = STATE(836), [sym__alpha_identifier] = ACTIONS(4204), [anon_sym_AT] = ACTIONS(4206), [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(4204), [anon_sym_as] = ACTIONS(4204), [anon_sym_EQ] = ACTIONS(4204), [anon_sym_LBRACE] = ACTIONS(4206), @@ -145955,7 +142599,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146048,133 +142691,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4206), }, [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), + [sym_class_body] = STATE(1120), + [sym_type_constraints] = STATE(940), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3262), + [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(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), }, [829] = { - [sym_class_body] = STATE(1167), - [sym_type_constraints] = STATE(943), + [sym_type_constraints] = STATE(1182), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [830] = { + [sym_type_constraints] = STATE(1186), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(4214), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [831] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [832] = { + [sym_function_body] = STATE(1035), + [sym__block] = STATE(1115), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), [anon_sym_COLON] = ACTIONS(4220), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_EQ] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), [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_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), @@ -146265,11 +143235,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4218), }, - [830] = { - [aux_sym_nullable_type_repeat1] = STATE(830), + [833] = { [sym__alpha_identifier] = ACTIONS(4222), [anon_sym_AT] = ACTIONS(4224), [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), [anon_sym_as] = ACTIONS(4222), [anon_sym_EQ] = ACTIONS(4222), [anon_sym_LBRACE] = ACTIONS(4224), @@ -146282,13 +143252,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP] = ACTIONS(4226), + [sym__quest] = ACTIONS(4222), [anon_sym_STAR] = ACTIONS(4222), [sym_label] = ACTIONS(4222), [anon_sym_in] = ACTIONS(4222), @@ -146374,883 +143344,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4224), }, - [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(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), - }, - [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), - }, - [833] = { - [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(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(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), - }, [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), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), }, [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(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), + [sym_type_constraints] = STATE(938), + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), }, [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(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), + [aux_sym_nullable_type_repeat1] = STATE(836), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [sym__quest] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), }, [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), - }, - [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), + [sym_type_constraints] = STATE(1001), + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), [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(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), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, - [839] = { - [aux_sym_nullable_type_repeat1] = STATE(830), + [838] = { [sym__alpha_identifier] = ACTIONS(4247), [anon_sym_AT] = ACTIONS(4249), [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4247), [anon_sym_as] = ACTIONS(4247), [anon_sym_EQ] = ACTIONS(4247), [anon_sym_LBRACE] = ACTIONS(4249), @@ -147263,13 +143797,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP] = ACTIONS(4247), + [sym__quest] = ACTIONS(4247), [anon_sym_STAR] = ACTIONS(4247), [sym_label] = ACTIONS(4247), [anon_sym_in] = ACTIONS(4247), @@ -147355,295 +143889,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4249), }, + [839] = { + [sym_type_constraints] = STATE(870), + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, [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), + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, [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(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), + [sym_class_body] = STATE(1162), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, [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), + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4265), [anon_sym_RBRACE] = ACTIONS(4265), - [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4265), [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_by] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_object] = ACTIONS(4263), + [anon_sym_fun] = ACTIONS(4263), [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_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_this] = ACTIONS(4263), + [anon_sym_super] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [sym__quest] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [sym_label] = ACTIONS(4263), + [anon_sym_in] = ACTIONS(4263), [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_null] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_else] = ACTIONS(4263), + [anon_sym_when] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_throw] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [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] = ACTIONS(4263), [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), - [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4263), [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_is] = ACTIONS(4263), [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_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), [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_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4263), [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_annotation] = ACTIONS(4263), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_lateinit] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_tailrec] = ACTIONS(4263), + [anon_sym_operator] = ACTIONS(4263), + [anon_sym_infix] = ACTIONS(4263), + [anon_sym_inline] = ACTIONS(4263), + [anon_sym_external] = ACTIONS(4263), + [sym_property_modifier] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_final] = ACTIONS(4263), + [anon_sym_open] = ACTIONS(4263), + [anon_sym_vararg] = ACTIONS(4263), + [anon_sym_noinline] = ACTIONS(4263), + [anon_sym_crossinline] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [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(4263), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [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), + }, + [843] = { + [sym_type_constraints] = STATE(895), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [844] = { + [aux_sym_nullable_type_repeat1] = STATE(827), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [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_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4269), [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_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), @@ -147662,922 +144522,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_expect] = ACTIONS(4267), + [anon_sym_actual] = ACTIONS(4267), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4009), + [sym__string_start] = ACTIONS(4269), }, - [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(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), + [845] = { + [sym_type_constraints] = STATE(908), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [844] = { + [846] = { [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(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), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [845] = { - [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_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(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), - [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), + [847] = { + [sym_type_constraints] = STATE(1184), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(4273), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [846] = { - [sym_function_body] = STATE(1048), - [sym__block] = STATE(1129), + [848] = { [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_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(4285), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4281), [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_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), [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_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), [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_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), [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(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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [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(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), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), }, [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), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4299), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [851] = { - [aux_sym_nullable_type_repeat1] = STATE(839), + [sym_type_constraints] = STATE(878), + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), [sym__alpha_identifier] = ACTIONS(4303), [anon_sym_AT] = ACTIONS(4305), [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), [anon_sym_as] = ACTIONS(4303), - [anon_sym_EQ] = ACTIONS(4303), - [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), [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_where] = ACTIONS(3258), [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), @@ -148664,29 +145307,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4305), }, [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_DOT] = ACTIONS(4307), [anon_sym_as] = ACTIONS(4307), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), [anon_sym_RBRACE] = ACTIONS(4309), [anon_sym_LPAREN] = ACTIONS(4309), [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_by] = ACTIONS(4307), [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_AMP] = ACTIONS(4307), + [sym__quest] = ACTIONS(4307), [anon_sym_STAR] = ACTIONS(4307), [sym_label] = ACTIONS(4307), [anon_sym_in] = ACTIONS(4307), @@ -148773,356 +145416,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(4309), }, [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(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), + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [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_object] = ACTIONS(4311), + [anon_sym_fun] = 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), }, [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), - }, - [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), - }, - [856] = { + [sym_class_body] = STATE(1133), + [sym_type_constraints] = STATE(957), [sym__alpha_identifier] = ACTIONS(4317), [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(4321), [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), [anon_sym_as] = ACTIONS(4317), [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(3262), [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_where] = ACTIONS(3258), [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), @@ -149208,1435 +145633,789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4319), }, + [855] = { + [aux_sym_nullable_type_repeat1] = STATE(827), + [sym__alpha_identifier] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4323), + [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_COMMA] = ACTIONS(4325), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_GT] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_object] = ACTIONS(4323), + [anon_sym_fun] = ACTIONS(4323), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [anon_sym_this] = ACTIONS(4323), + [anon_sym_super] = ACTIONS(4323), + [sym__quest] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4323), + [anon_sym_DOT_DOT] = ACTIONS(4325), + [anon_sym_QMARK_COLON] = ACTIONS(4325), + [anon_sym_AMP_AMP] = ACTIONS(4325), + [anon_sym_PIPE_PIPE] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4323), + [anon_sym_if] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4323), + [anon_sym_when] = ACTIONS(4323), + [anon_sym_try] = ACTIONS(4323), + [anon_sym_throw] = ACTIONS(4323), + [anon_sym_return] = ACTIONS(4323), + [anon_sym_continue] = ACTIONS(4323), + [anon_sym_break] = ACTIONS(4323), + [anon_sym_COLON_COLON] = ACTIONS(4325), + [anon_sym_PLUS_EQ] = ACTIONS(4325), + [anon_sym_DASH_EQ] = ACTIONS(4325), + [anon_sym_STAR_EQ] = ACTIONS(4325), + [anon_sym_SLASH_EQ] = ACTIONS(4325), + [anon_sym_PERCENT_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), + [anon_sym_LT_EQ] = ACTIONS(4325), + [anon_sym_GT_EQ] = ACTIONS(4325), + [anon_sym_BANGin] = ACTIONS(4325), + [anon_sym_is] = ACTIONS(4323), + [anon_sym_BANGis] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4325), + [anon_sym_suspend] = ACTIONS(4323), + [anon_sym_sealed] = ACTIONS(4323), + [anon_sym_annotation] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4323), + [anon_sym_inner] = ACTIONS(4323), + [anon_sym_value] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_lateinit] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_internal] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_tailrec] = ACTIONS(4323), + [anon_sym_operator] = ACTIONS(4323), + [anon_sym_infix] = ACTIONS(4323), + [anon_sym_inline] = ACTIONS(4323), + [anon_sym_external] = ACTIONS(4323), + [sym_property_modifier] = ACTIONS(4323), + [anon_sym_abstract] = ACTIONS(4323), + [anon_sym_final] = ACTIONS(4323), + [anon_sym_open] = ACTIONS(4323), + [anon_sym_vararg] = ACTIONS(4323), + [anon_sym_noinline] = ACTIONS(4323), + [anon_sym_crossinline] = ACTIONS(4323), + [anon_sym_expect] = ACTIONS(4323), + [anon_sym_actual] = ACTIONS(4323), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4325), + [anon_sym_continue_AT] = ACTIONS(4325), + [anon_sym_break_AT] = ACTIONS(4325), + [anon_sym_this_AT] = ACTIONS(4325), + [anon_sym_super_AT] = ACTIONS(4325), + [sym_real_literal] = ACTIONS(4325), + [sym_integer_literal] = ACTIONS(4323), + [sym_hex_literal] = ACTIONS(4325), + [sym_bin_literal] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4325), + [sym__backtick_identifier] = ACTIONS(4325), + [sym__automatic_semicolon] = ACTIONS(4325), + [sym_safe_nav] = ACTIONS(4325), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4325), + }, + [856] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(4327), + [sym__quest] = ACTIONS(4222), + [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), + }, [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(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(4323), + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3254), + [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(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, [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), + [sym_function_body] = STATE(1043), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), }, [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_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), + [sym_class_body] = STATE(1135), + [sym_type_constraints] = STATE(996), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3262), + [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(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, [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), - }, - [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_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_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_safe_nav] = ACTIONS(4337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4337), - }, - [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_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(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), - [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), - }, - [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), - }, - [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_type_constraints] = STATE(1177), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_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(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), + [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(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_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(3216), - [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(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), + [sym__string_start] = ACTIONS(4155), }, - [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(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), + [861] = { + [sym_type_constraints] = STATE(1179), + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [862] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -150645,54 +146424,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -150721,354 +146500,1542 @@ 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(1816), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [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(3652), - [anon_sym_as] = ACTIONS(3654), - [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(4363), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4367), - [anon_sym_set] = ACTIONS(4369), + [863] = { + [sym__alpha_identifier] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_as] = ACTIONS(4371), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_constructor] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4371), + [anon_sym_where] = ACTIONS(4371), + [anon_sym_object] = ACTIONS(4371), + [anon_sym_fun] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_get] = ACTIONS(4371), + [anon_sym_set] = ACTIONS(4371), + [anon_sym_this] = ACTIONS(4371), + [anon_sym_super] = ACTIONS(4371), [anon_sym_STAR] = ACTIONS(4371), - [sym_label] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4375), + [sym_label] = ACTIONS(4371), + [anon_sym_in] = ACTIONS(4371), + [anon_sym_DOT_DOT] = ACTIONS(4373), + [anon_sym_QMARK_COLON] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_PIPE_PIPE] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_else] = ACTIONS(4371), + [anon_sym_when] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_PLUS_EQ] = ACTIONS(4373), + [anon_sym_DASH_EQ] = ACTIONS(4373), + [anon_sym_STAR_EQ] = ACTIONS(4373), + [anon_sym_SLASH_EQ] = ACTIONS(4373), + [anon_sym_PERCENT_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), + [anon_sym_LT_EQ] = ACTIONS(4373), + [anon_sym_GT_EQ] = ACTIONS(4373), + [anon_sym_BANGin] = ACTIONS(4373), + [anon_sym_is] = ACTIONS(4371), + [anon_sym_BANGis] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4371), + [anon_sym_BANG_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4371), + [anon_sym_sealed] = ACTIONS(4371), + [anon_sym_annotation] = ACTIONS(4371), + [anon_sym_data] = ACTIONS(4371), + [anon_sym_inner] = ACTIONS(4371), + [anon_sym_value] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_lateinit] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_internal] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_tailrec] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_infix] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym_external] = ACTIONS(4371), + [sym_property_modifier] = ACTIONS(4371), + [anon_sym_abstract] = ACTIONS(4371), + [anon_sym_final] = ACTIONS(4371), + [anon_sym_open] = ACTIONS(4371), + [anon_sym_vararg] = ACTIONS(4371), + [anon_sym_noinline] = ACTIONS(4371), + [anon_sym_crossinline] = ACTIONS(4371), + [anon_sym_expect] = ACTIONS(4371), + [anon_sym_actual] = ACTIONS(4371), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4373), + [anon_sym_continue_AT] = ACTIONS(4373), + [anon_sym_break_AT] = ACTIONS(4373), + [anon_sym_this_AT] = ACTIONS(4373), + [anon_sym_super_AT] = ACTIONS(4373), + [sym_real_literal] = ACTIONS(4373), + [sym_integer_literal] = ACTIONS(4371), + [sym_hex_literal] = ACTIONS(4373), + [sym_bin_literal] = ACTIONS(4373), + [anon_sym_true] = ACTIONS(4371), + [anon_sym_false] = ACTIONS(4371), + [anon_sym_SQUOTE] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4373), + [sym__automatic_semicolon] = ACTIONS(4373), + [sym_safe_nav] = ACTIONS(4373), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4373), + }, + [864] = { + [sym_type_constraints] = STATE(1001), + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [865] = { + [sym_type_constraints] = STATE(932), + [sym_enum_class_body] = STATE(1117), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), [anon_sym_QMARK_COLON] = ACTIONS(4377), - [anon_sym_AMP_AMP] = ACTIONS(4379), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [866] = { + [sym_class_body] = STATE(1135), + [sym_type_constraints] = STATE(996), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [867] = { + [sym_class_body] = STATE(1110), + [sym_type_constraints] = STATE(1000), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), [anon_sym_PIPE_PIPE] = ACTIONS(4381), - [anon_sym_else] = ACTIONS(1808), - [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), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), + }, + [868] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4186), + [anon_sym_continue_AT] = ACTIONS(4186), + [anon_sym_break_AT] = ACTIONS(4186), + [anon_sym_this_AT] = ACTIONS(4186), + [anon_sym_super_AT] = ACTIONS(4186), + [sym_real_literal] = ACTIONS(4186), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4186), + [sym_bin_literal] = ACTIONS(4186), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4186), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4186), + }, + [869] = { + [sym_class_body] = STATE(1133), + [sym_type_constraints] = STATE(957), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_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_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(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3682), + [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), }, - [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(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(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), + [870] = { + [sym_function_body] = STATE(1075), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [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_fun] = 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(4389), - [anon_sym_is] = ACTIONS(3692), - [anon_sym_BANGis] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), + [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), + }, + [871] = { + [sym_function_body] = STATE(1045), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), + }, + [872] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_catch] = ACTIONS(4393), + [anon_sym_finally] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), [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(1798), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), + }, + [873] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_constructor] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), }, [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_class_body] = STATE(1120), + [sym_type_constraints] = STATE(940), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [875] = { + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [876] = { + [sym_function_body] = STATE(1051), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [877] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151077,54 +148044,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4363), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), [anon_sym_where] = ACTIONS(1790), - [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_SEMI] = ACTIONS(4401), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [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_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151154,29 +148121,1433 @@ 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(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [878] = { + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [879] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_catch] = ACTIONS(4403), + [anon_sym_finally] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), + }, + [880] = { + [sym_class_body] = STATE(1117), + [sym_type_constraints] = STATE(935), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [881] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_constructor] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [882] = { + [sym_type_constraints] = STATE(938), + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [883] = { + [sym_type_constraints] = STATE(929), + [sym_enum_class_body] = STATE(1099), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), + }, + [884] = { + [sym_class_body] = STATE(1151), + [sym_type_constraints] = STATE(942), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), + }, + [885] = { + [sym_class_body] = STATE(1133), + [sym_type_constraints] = STATE(957), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_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_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_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [886] = { + [sym_type_constraints] = STATE(1001), + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [887] = { + [sym_type_constraints] = STATE(1176), + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [888] = { + [sym_type_constraints] = STATE(1183), + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3258), + [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), + [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), + }, + [889] = { + [sym__alpha_identifier] = ACTIONS(4417), + [anon_sym_AT] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4417), + [anon_sym_as] = ACTIONS(4417), + [anon_sym_EQ] = ACTIONS(4417), + [anon_sym_constructor] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_RBRACE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4417), + [anon_sym_GT] = ACTIONS(4417), + [anon_sym_where] = ACTIONS(4417), + [anon_sym_object] = ACTIONS(4417), + [anon_sym_fun] = ACTIONS(4417), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4417), + [anon_sym_set] = ACTIONS(4417), + [anon_sym_this] = ACTIONS(4417), + [anon_sym_super] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4417), + [sym_label] = ACTIONS(4417), + [anon_sym_in] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_QMARK_COLON] = ACTIONS(4419), + [anon_sym_AMP_AMP] = ACTIONS(4419), + [anon_sym_PIPE_PIPE] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(4417), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_else] = ACTIONS(4417), + [anon_sym_when] = ACTIONS(4417), + [anon_sym_try] = ACTIONS(4417), + [anon_sym_throw] = ACTIONS(4417), + [anon_sym_return] = ACTIONS(4417), + [anon_sym_continue] = ACTIONS(4417), + [anon_sym_break] = ACTIONS(4417), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_PLUS_EQ] = ACTIONS(4419), + [anon_sym_DASH_EQ] = ACTIONS(4419), + [anon_sym_STAR_EQ] = ACTIONS(4419), + [anon_sym_SLASH_EQ] = ACTIONS(4419), + [anon_sym_PERCENT_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ] = ACTIONS(4417), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ] = ACTIONS(4417), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4419), + [anon_sym_LT_EQ] = ACTIONS(4419), + [anon_sym_GT_EQ] = ACTIONS(4419), + [anon_sym_BANGin] = ACTIONS(4419), + [anon_sym_is] = ACTIONS(4417), + [anon_sym_BANGis] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_SLASH] = ACTIONS(4417), + [anon_sym_PERCENT] = ACTIONS(4417), + [anon_sym_as_QMARK] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_BANG_BANG] = ACTIONS(4419), + [anon_sym_suspend] = ACTIONS(4417), + [anon_sym_sealed] = ACTIONS(4417), + [anon_sym_annotation] = ACTIONS(4417), + [anon_sym_data] = ACTIONS(4417), + [anon_sym_inner] = ACTIONS(4417), + [anon_sym_value] = ACTIONS(4417), + [anon_sym_override] = ACTIONS(4417), + [anon_sym_lateinit] = ACTIONS(4417), + [anon_sym_public] = ACTIONS(4417), + [anon_sym_private] = ACTIONS(4417), + [anon_sym_internal] = ACTIONS(4417), + [anon_sym_protected] = ACTIONS(4417), + [anon_sym_tailrec] = ACTIONS(4417), + [anon_sym_operator] = ACTIONS(4417), + [anon_sym_infix] = ACTIONS(4417), + [anon_sym_inline] = ACTIONS(4417), + [anon_sym_external] = ACTIONS(4417), + [sym_property_modifier] = ACTIONS(4417), + [anon_sym_abstract] = ACTIONS(4417), + [anon_sym_final] = ACTIONS(4417), + [anon_sym_open] = ACTIONS(4417), + [anon_sym_vararg] = ACTIONS(4417), + [anon_sym_noinline] = ACTIONS(4417), + [anon_sym_crossinline] = ACTIONS(4417), + [anon_sym_expect] = ACTIONS(4417), + [anon_sym_actual] = ACTIONS(4417), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4419), + [anon_sym_continue_AT] = ACTIONS(4419), + [anon_sym_break_AT] = ACTIONS(4419), + [anon_sym_this_AT] = ACTIONS(4419), + [anon_sym_super_AT] = ACTIONS(4419), + [sym_real_literal] = ACTIONS(4419), + [sym_integer_literal] = ACTIONS(4417), + [sym_hex_literal] = ACTIONS(4419), + [sym_bin_literal] = ACTIONS(4419), + [anon_sym_true] = ACTIONS(4417), + [anon_sym_false] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4419), + [sym__automatic_semicolon] = ACTIONS(4419), + [sym_safe_nav] = ACTIONS(4419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4419), + }, + [890] = { + [sym_class_body] = STATE(1114), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(4425), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), + }, + [891] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151185,54 +149556,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151261,86 +149632,734 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [892] = { + [sym_type_constraints] = STATE(1186), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [893] = { + [sym_type_constraints] = STATE(1184), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [894] = { + [sym_class_body] = STATE(1131), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [895] = { + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [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), + }, + [896] = { + [aux_sym_type_constraints_repeat1] = STATE(902), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [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(4443), + [anon_sym_by] = ACTIONS(4439), + [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_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), + }, + [897] = { + [sym_class_body] = STATE(1162), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [898] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151370,137 +150389,137 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [899] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, - [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), + [900] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151509,54 +150528,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151585,30 +150604,354 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [901] = { + [sym_type_constraints] = STATE(938), + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [902] = { + [aux_sym_type_constraints_repeat1] = STATE(902), + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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(4457), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = ACTIONS(4453), + [anon_sym_object] = ACTIONS(4453), + [anon_sym_fun] = 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), + }, + [903] = { + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [904] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151617,54 +150960,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(4363), - [anon_sym_where] = ACTIONS(1808), - [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(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_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4460), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151693,30 +151036,786 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [905] = { + [sym_value_arguments] = STATE(1046), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [906] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_where] = ACTIONS(4468), + [anon_sym_object] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_get] = ACTIONS(4468), + [anon_sym_set] = ACTIONS(4468), + [anon_sym_this] = ACTIONS(4468), + [anon_sym_super] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [sym_label] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_QMARK_COLON] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_finally] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_BANGin] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4468), + [anon_sym_BANGis] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_PERCENT] = ACTIONS(4468), + [anon_sym_as_QMARK] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_BANG_BANG] = ACTIONS(4470), + [anon_sym_suspend] = ACTIONS(4468), + [anon_sym_sealed] = ACTIONS(4468), + [anon_sym_annotation] = ACTIONS(4468), + [anon_sym_data] = ACTIONS(4468), + [anon_sym_inner] = ACTIONS(4468), + [anon_sym_value] = ACTIONS(4468), + [anon_sym_override] = ACTIONS(4468), + [anon_sym_lateinit] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_internal] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_tailrec] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_infix] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym_external] = ACTIONS(4468), + [sym_property_modifier] = ACTIONS(4468), + [anon_sym_abstract] = ACTIONS(4468), + [anon_sym_final] = ACTIONS(4468), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_vararg] = ACTIONS(4468), + [anon_sym_noinline] = ACTIONS(4468), + [anon_sym_crossinline] = ACTIONS(4468), + [anon_sym_expect] = ACTIONS(4468), + [anon_sym_actual] = ACTIONS(4468), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4470), + [anon_sym_continue_AT] = ACTIONS(4470), + [anon_sym_break_AT] = ACTIONS(4470), + [anon_sym_this_AT] = ACTIONS(4470), + [anon_sym_super_AT] = ACTIONS(4470), + [sym_real_literal] = ACTIONS(4470), + [sym_integer_literal] = ACTIONS(4468), + [sym_hex_literal] = ACTIONS(4470), + [sym_bin_literal] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4470), + [sym__backtick_identifier] = ACTIONS(4470), + [sym__automatic_semicolon] = ACTIONS(4470), + [sym_safe_nav] = ACTIONS(4470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4470), + }, + [907] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_as] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_where] = ACTIONS(4472), + [anon_sym_object] = ACTIONS(4472), + [anon_sym_fun] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_get] = ACTIONS(4472), + [anon_sym_set] = ACTIONS(4472), + [anon_sym_this] = ACTIONS(4472), + [anon_sym_super] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [sym_label] = ACTIONS(4472), + [anon_sym_in] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4474), + [anon_sym_QMARK_COLON] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_when] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_finally] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_PERCENT_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4474), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4474), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_BANGin] = ACTIONS(4474), + [anon_sym_is] = ACTIONS(4472), + [anon_sym_BANGis] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_as_QMARK] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_BANG_BANG] = ACTIONS(4474), + [anon_sym_suspend] = ACTIONS(4472), + [anon_sym_sealed] = ACTIONS(4472), + [anon_sym_annotation] = ACTIONS(4472), + [anon_sym_data] = ACTIONS(4472), + [anon_sym_inner] = ACTIONS(4472), + [anon_sym_value] = ACTIONS(4472), + [anon_sym_override] = ACTIONS(4472), + [anon_sym_lateinit] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_internal] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_tailrec] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_infix] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym_external] = ACTIONS(4472), + [sym_property_modifier] = ACTIONS(4472), + [anon_sym_abstract] = ACTIONS(4472), + [anon_sym_final] = ACTIONS(4472), + [anon_sym_open] = ACTIONS(4472), + [anon_sym_vararg] = ACTIONS(4472), + [anon_sym_noinline] = ACTIONS(4472), + [anon_sym_crossinline] = ACTIONS(4472), + [anon_sym_expect] = ACTIONS(4472), + [anon_sym_actual] = ACTIONS(4472), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4474), + [anon_sym_continue_AT] = ACTIONS(4474), + [anon_sym_break_AT] = ACTIONS(4474), + [anon_sym_this_AT] = ACTIONS(4474), + [anon_sym_super_AT] = ACTIONS(4474), + [sym_real_literal] = ACTIONS(4474), + [sym_integer_literal] = ACTIONS(4472), + [sym_hex_literal] = ACTIONS(4474), + [sym_bin_literal] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4474), + [sym__backtick_identifier] = ACTIONS(4474), + [sym__automatic_semicolon] = ACTIONS(4474), + [sym_safe_nav] = ACTIONS(4474), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4474), + }, + [908] = { + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [909] = { + [sym_class_body] = STATE(1162), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [910] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [911] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1736), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [912] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151725,54 +151824,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4363), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), [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_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [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_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151802,29 +151901,29 @@ 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(1816), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [913] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151833,54 +151932,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4363), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), [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_SEMI] = ACTIONS(4480), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [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_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -151910,29 +152009,29 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [914] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -151941,54 +152040,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4363), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), [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_SEMI] = ACTIONS(4482), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), [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_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -152018,29 +152117,29 @@ 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(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [915] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -152049,54 +152148,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -152125,6156 +152224,2273 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), + [916] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9429), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4431), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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), - }, - [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), + [anon_sym_LT_EQ] = ACTIONS(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), }, - [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(4428), - [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_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(4323), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [917] = { + [aux_sym_user_type_repeat1] = STATE(812), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(4488), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), }, - [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(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), + [918] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [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), + [919] = { + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), - [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), + [920] = { + [sym_class_body] = STATE(1152), + [sym_type_constraints] = STATE(964), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), }, - [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), + [921] = { + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [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_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_object] = ACTIONS(4495), + [anon_sym_fun] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(4499), + [anon_sym_L] = ACTIONS(4501), + [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), + [922] = { + [sym_type_constraints] = STATE(952), + [sym_enum_class_body] = STATE(1151), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, - [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), + [923] = { + [aux_sym_type_constraints_repeat1] = STATE(896), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(4443), + [anon_sym_by] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_object] = ACTIONS(4503), + [anon_sym_fun] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_this] = ACTIONS(4503), + [anon_sym_super] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4503), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_null] = ACTIONS(4503), + [anon_sym_if] = ACTIONS(4503), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_try] = ACTIONS(4503), + [anon_sym_throw] = ACTIONS(4503), + [anon_sym_return] = ACTIONS(4503), + [anon_sym_continue] = ACTIONS(4503), + [anon_sym_break] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4505), + [anon_sym_continue_AT] = ACTIONS(4505), + [anon_sym_break_AT] = ACTIONS(4505), + [anon_sym_this_AT] = ACTIONS(4505), + [anon_sym_super_AT] = ACTIONS(4505), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4503), + [anon_sym_false] = ACTIONS(4503), + [anon_sym_SQUOTE] = ACTIONS(4505), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4505), }, - [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), + [924] = { + [sym_type_constraints] = STATE(951), + [sym_enum_class_body] = STATE(1094), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), }, - [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), - [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), + [925] = { + [sym_type_constraints] = STATE(1182), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [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), + [926] = { + [sym__alpha_identifier] = ACTIONS(4511), + [anon_sym_AT] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_as] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_object] = ACTIONS(4511), + [anon_sym_fun] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4511), + [anon_sym_set] = ACTIONS(4511), + [anon_sym_this] = ACTIONS(4511), + [anon_sym_super] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4511), + [sym_label] = ACTIONS(4511), + [anon_sym_in] = ACTIONS(4511), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_QMARK_COLON] = ACTIONS(4513), + [anon_sym_AMP_AMP] = ACTIONS(4513), + [anon_sym_PIPE_PIPE] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(4511), + [anon_sym_if] = ACTIONS(4511), + [anon_sym_else] = ACTIONS(4511), + [anon_sym_when] = ACTIONS(4511), + [anon_sym_try] = ACTIONS(4511), + [anon_sym_throw] = ACTIONS(4511), + [anon_sym_return] = ACTIONS(4511), + [anon_sym_continue] = ACTIONS(4511), + [anon_sym_break] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(4513), + [anon_sym_PLUS_EQ] = ACTIONS(4513), + [anon_sym_DASH_EQ] = ACTIONS(4513), + [anon_sym_STAR_EQ] = ACTIONS(4513), + [anon_sym_SLASH_EQ] = ACTIONS(4513), + [anon_sym_PERCENT_EQ] = ACTIONS(4513), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4513), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4513), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4513), + [anon_sym_is] = ACTIONS(4511), + [anon_sym_BANGis] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4511), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_as_QMARK] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_BANG_BANG] = ACTIONS(4513), + [anon_sym_suspend] = ACTIONS(4511), + [anon_sym_sealed] = ACTIONS(4511), + [anon_sym_annotation] = ACTIONS(4511), + [anon_sym_data] = ACTIONS(4511), + [anon_sym_inner] = ACTIONS(4511), + [anon_sym_value] = ACTIONS(4511), + [anon_sym_override] = ACTIONS(4511), + [anon_sym_lateinit] = ACTIONS(4511), + [anon_sym_public] = ACTIONS(4511), + [anon_sym_private] = ACTIONS(4511), + [anon_sym_internal] = ACTIONS(4511), + [anon_sym_protected] = ACTIONS(4511), + [anon_sym_tailrec] = ACTIONS(4511), + [anon_sym_operator] = ACTIONS(4511), + [anon_sym_infix] = ACTIONS(4511), + [anon_sym_inline] = ACTIONS(4511), + [anon_sym_external] = ACTIONS(4511), + [sym_property_modifier] = ACTIONS(4511), + [anon_sym_abstract] = ACTIONS(4511), + [anon_sym_final] = ACTIONS(4511), + [anon_sym_open] = ACTIONS(4511), + [anon_sym_vararg] = ACTIONS(4511), + [anon_sym_noinline] = ACTIONS(4511), + [anon_sym_crossinline] = ACTIONS(4511), + [anon_sym_expect] = ACTIONS(4511), + [anon_sym_actual] = ACTIONS(4511), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4513), + [anon_sym_continue_AT] = ACTIONS(4513), + [anon_sym_break_AT] = ACTIONS(4513), + [anon_sym_this_AT] = ACTIONS(4513), + [anon_sym_super_AT] = ACTIONS(4513), + [sym_real_literal] = ACTIONS(4513), + [sym_integer_literal] = ACTIONS(4511), + [sym_hex_literal] = ACTIONS(4513), + [sym_bin_literal] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4511), + [anon_sym_false] = ACTIONS(4511), + [anon_sym_SQUOTE] = ACTIONS(4513), + [sym__backtick_identifier] = ACTIONS(4513), + [sym__automatic_semicolon] = ACTIONS(4513), + [sym_safe_nav] = ACTIONS(4513), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4513), }, - [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), + [927] = { + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_object] = ACTIONS(4515), + [anon_sym_fun] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_this] = ACTIONS(4515), + [anon_sym_super] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4515), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_null] = ACTIONS(4515), + [anon_sym_if] = ACTIONS(4515), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_when] = ACTIONS(4515), + [anon_sym_try] = ACTIONS(4515), + [anon_sym_throw] = ACTIONS(4515), + [anon_sym_return] = ACTIONS(4515), + [anon_sym_continue] = ACTIONS(4515), + [anon_sym_break] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4517), + [anon_sym_continue_AT] = ACTIONS(4517), + [anon_sym_break_AT] = ACTIONS(4517), + [anon_sym_this_AT] = ACTIONS(4517), + [anon_sym_super_AT] = ACTIONS(4517), + [sym_real_literal] = ACTIONS(4517), + [sym_integer_literal] = ACTIONS(4515), + [sym_hex_literal] = ACTIONS(4517), + [sym_bin_literal] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4517), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4517), }, - [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), + [928] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_object] = ACTIONS(4519), + [anon_sym_fun] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_this] = ACTIONS(4519), + [anon_sym_super] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4519), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4519), + [anon_sym_if] = ACTIONS(4519), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_when] = ACTIONS(4519), + [anon_sym_try] = ACTIONS(4519), + [anon_sym_throw] = ACTIONS(4519), + [anon_sym_return] = ACTIONS(4519), + [anon_sym_continue] = ACTIONS(4519), + [anon_sym_break] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4521), + [anon_sym_continue_AT] = ACTIONS(4521), + [anon_sym_break_AT] = ACTIONS(4521), + [anon_sym_this_AT] = ACTIONS(4521), + [anon_sym_super_AT] = ACTIONS(4521), + [sym_real_literal] = ACTIONS(4521), + [sym_integer_literal] = ACTIONS(4519), + [sym_hex_literal] = ACTIONS(4521), + [sym_bin_literal] = ACTIONS(4521), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [anon_sym_SQUOTE] = ACTIONS(4521), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4521), }, - [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), + [929] = { + [sym_enum_class_body] = STATE(1094), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), }, - [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), + [930] = { + [sym_function_body] = STATE(1043), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), }, - [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), + [931] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_object] = ACTIONS(4525), + [anon_sym_fun] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_this] = ACTIONS(4525), + [anon_sym_super] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_null] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_when] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4525), + [anon_sym_throw] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_AT] = ACTIONS(4527), + [anon_sym_this_AT] = ACTIONS(4527), + [anon_sym_super_AT] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4527), + [sym_integer_literal] = ACTIONS(4525), + [sym_hex_literal] = ACTIONS(4527), + [sym_bin_literal] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4525), + [anon_sym_false] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4527), }, - [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(4323), + [932] = { + [sym_enum_class_body] = STATE(1097), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [908] = { + [933] = { [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), - }, - [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), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3262), + [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_fun] = 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), }, - [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), + [934] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [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(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, - [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), + [935] = { + [sym_class_body] = STATE(1097), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [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(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(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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(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), - }, - [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(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), - }, - [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), - }, - [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(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), + [936] = { + [sym__alpha_identifier] = ACTIONS(4573), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4573), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4573), + [anon_sym_where] = ACTIONS(4573), + [anon_sym_object] = ACTIONS(4573), + [anon_sym_fun] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4573), + [anon_sym_set] = ACTIONS(4573), + [anon_sym_this] = ACTIONS(4573), + [anon_sym_super] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4573), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4573), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_null] = ACTIONS(4573), + [anon_sym_if] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4573), + [anon_sym_when] = ACTIONS(4573), + [anon_sym_try] = ACTIONS(4573), + [anon_sym_throw] = ACTIONS(4573), + [anon_sym_return] = ACTIONS(4573), + [anon_sym_continue] = ACTIONS(4573), + [anon_sym_break] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4573), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_SLASH] = ACTIONS(4573), + [anon_sym_PERCENT] = ACTIONS(4573), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4573), + [anon_sym_sealed] = ACTIONS(4573), + [anon_sym_annotation] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4573), + [anon_sym_inner] = ACTIONS(4573), + [anon_sym_value] = ACTIONS(4573), + [anon_sym_override] = ACTIONS(4573), + [anon_sym_lateinit] = ACTIONS(4573), + [anon_sym_public] = ACTIONS(4573), + [anon_sym_private] = ACTIONS(4573), + [anon_sym_internal] = ACTIONS(4573), + [anon_sym_protected] = ACTIONS(4573), + [anon_sym_tailrec] = ACTIONS(4573), + [anon_sym_operator] = ACTIONS(4573), + [anon_sym_infix] = ACTIONS(4573), + [anon_sym_inline] = ACTIONS(4573), + [anon_sym_external] = ACTIONS(4573), + [sym_property_modifier] = ACTIONS(4573), + [anon_sym_abstract] = ACTIONS(4573), + [anon_sym_final] = ACTIONS(4573), + [anon_sym_open] = ACTIONS(4573), + [anon_sym_vararg] = ACTIONS(4573), + [anon_sym_noinline] = ACTIONS(4573), + [anon_sym_crossinline] = ACTIONS(4573), + [anon_sym_expect] = ACTIONS(4573), + [anon_sym_actual] = ACTIONS(4573), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4573), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4573), + [anon_sym_false] = ACTIONS(4573), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), }, [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(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_DOT] = ACTIONS(4577), [anon_sym_as] = ACTIONS(4577), [anon_sym_EQ] = ACTIONS(4577), [anon_sym_LBRACE] = ACTIONS(4579), @@ -158286,7 +154502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -158377,11 +154592,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4579), }, - [942] = { + [938] = { + [sym_enum_class_body] = STATE(1099), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), + }, + [939] = { [sym__alpha_identifier] = ACTIONS(4581), [anon_sym_AT] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4581), [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4581), [anon_sym_as] = ACTIONS(4581), [anon_sym_EQ] = ACTIONS(4581), [anon_sym_LBRACE] = ACTIONS(4583), @@ -158393,7 +154715,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -158475,6 +154796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(4581), [sym_hex_literal] = ACTIONS(4583), [sym_bin_literal] = ACTIONS(4583), + [anon_sym_L] = ACTIONS(4585), [anon_sym_true] = ACTIONS(4581), [anon_sym_false] = ACTIONS(4581), [anon_sym_SQUOTE] = ACTIONS(4583), @@ -158484,1096 +154806,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4583), }, - [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), - }, - [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), - }, - [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_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(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), - }, - [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(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), - }, - [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), - }, - [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), - }, - [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), + [940] = { + [sym_class_body] = STATE(1133), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [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_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_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_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(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), + [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(3134), + [sym__string_start] = ACTIONS(4319), }, - [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), + [941] = { + [sym_enum_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3254), + [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_fun] = 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), }, - [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), + [942] = { + [sym_class_body] = STATE(1117), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), }, - [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), + [943] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -159582,50 +155155,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(1822), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -159661,561 +155234,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [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(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), - }, - [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(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(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(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), + [944] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -160224,50 +155262,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(1734), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -160303,240 +155341,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [945] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3193), [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), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4539), + [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_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(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [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(4553), + [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(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3184), + [sym__string_start] = ACTIONS(3195), }, - [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), + [946] = { + [sym_class_body] = STATE(1142), + [sym__alpha_identifier] = ACTIONS(4621), + [anon_sym_AT] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_where] = ACTIONS(4621), + [anon_sym_object] = ACTIONS(4621), + [anon_sym_fun] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_get] = ACTIONS(4621), + [anon_sym_set] = ACTIONS(4621), + [anon_sym_this] = ACTIONS(4621), + [anon_sym_super] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4621), + [sym_label] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4621), + [anon_sym_DOT_DOT] = ACTIONS(4623), + [anon_sym_QMARK_COLON] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_null] = ACTIONS(4621), + [anon_sym_if] = ACTIONS(4621), + [anon_sym_else] = ACTIONS(4621), + [anon_sym_when] = ACTIONS(4621), + [anon_sym_try] = ACTIONS(4621), + [anon_sym_throw] = ACTIONS(4621), + [anon_sym_return] = ACTIONS(4621), + [anon_sym_continue] = ACTIONS(4621), + [anon_sym_break] = ACTIONS(4621), + [anon_sym_COLON_COLON] = ACTIONS(4623), + [anon_sym_PLUS_EQ] = ACTIONS(4623), + [anon_sym_DASH_EQ] = ACTIONS(4623), + [anon_sym_STAR_EQ] = ACTIONS(4623), + [anon_sym_SLASH_EQ] = ACTIONS(4623), + [anon_sym_PERCENT_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_BANGin] = ACTIONS(4623), + [anon_sym_is] = ACTIONS(4621), + [anon_sym_BANGis] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_as_QMARK] = ACTIONS(4623), + [anon_sym_PLUS_PLUS] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4621), + [anon_sym_BANG_BANG] = ACTIONS(4623), + [anon_sym_suspend] = ACTIONS(4621), + [anon_sym_sealed] = ACTIONS(4621), + [anon_sym_annotation] = ACTIONS(4621), + [anon_sym_data] = ACTIONS(4621), + [anon_sym_inner] = ACTIONS(4621), + [anon_sym_value] = ACTIONS(4621), + [anon_sym_override] = ACTIONS(4621), + [anon_sym_lateinit] = ACTIONS(4621), + [anon_sym_public] = ACTIONS(4621), + [anon_sym_private] = ACTIONS(4621), + [anon_sym_internal] = ACTIONS(4621), + [anon_sym_protected] = ACTIONS(4621), + [anon_sym_tailrec] = ACTIONS(4621), + [anon_sym_operator] = ACTIONS(4621), + [anon_sym_infix] = ACTIONS(4621), + [anon_sym_inline] = ACTIONS(4621), + [anon_sym_external] = ACTIONS(4621), + [sym_property_modifier] = ACTIONS(4621), + [anon_sym_abstract] = ACTIONS(4621), + [anon_sym_final] = ACTIONS(4621), + [anon_sym_open] = ACTIONS(4621), + [anon_sym_vararg] = ACTIONS(4621), + [anon_sym_noinline] = ACTIONS(4621), + [anon_sym_crossinline] = ACTIONS(4621), + [anon_sym_expect] = ACTIONS(4621), + [anon_sym_actual] = ACTIONS(4621), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4623), + [anon_sym_continue_AT] = ACTIONS(4623), + [anon_sym_break_AT] = ACTIONS(4623), + [anon_sym_this_AT] = ACTIONS(4623), + [anon_sym_super_AT] = ACTIONS(4623), + [sym_real_literal] = ACTIONS(4623), + [sym_integer_literal] = ACTIONS(4621), + [sym_hex_literal] = ACTIONS(4623), + [sym_bin_literal] = ACTIONS(4623), + [anon_sym_true] = ACTIONS(4621), + [anon_sym_false] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4623), + [sym__backtick_identifier] = ACTIONS(4623), + [sym__automatic_semicolon] = ACTIONS(4623), + [sym_safe_nav] = ACTIONS(4623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4623), + }, + [947] = { + [sym__alpha_identifier] = ACTIONS(4625), + [anon_sym_AT] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_where] = ACTIONS(4625), + [anon_sym_object] = ACTIONS(4625), + [anon_sym_fun] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_get] = ACTIONS(4625), + [anon_sym_set] = ACTIONS(4625), + [anon_sym_this] = ACTIONS(4625), + [anon_sym_super] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4625), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4625), + [anon_sym_DOT_DOT] = ACTIONS(4627), + [anon_sym_QMARK_COLON] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_null] = ACTIONS(4625), + [anon_sym_if] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4625), + [anon_sym_when] = ACTIONS(4625), + [anon_sym_try] = ACTIONS(4625), + [anon_sym_throw] = ACTIONS(4625), + [anon_sym_return] = ACTIONS(4625), + [anon_sym_continue] = ACTIONS(4625), + [anon_sym_break] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_BANGin] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4625), + [anon_sym_BANGis] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4625), + [anon_sym_PERCENT] = ACTIONS(4625), + [anon_sym_as_QMARK] = ACTIONS(4627), + [anon_sym_PLUS_PLUS] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4627), + [anon_sym_suspend] = ACTIONS(4625), + [anon_sym_sealed] = ACTIONS(4625), + [anon_sym_annotation] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4625), + [anon_sym_inner] = ACTIONS(4625), + [anon_sym_value] = ACTIONS(4625), + [anon_sym_override] = ACTIONS(4625), + [anon_sym_lateinit] = ACTIONS(4625), + [anon_sym_public] = ACTIONS(4625), + [anon_sym_private] = ACTIONS(4625), + [anon_sym_internal] = ACTIONS(4625), + [anon_sym_protected] = ACTIONS(4625), + [anon_sym_tailrec] = ACTIONS(4625), + [anon_sym_operator] = ACTIONS(4625), + [anon_sym_infix] = ACTIONS(4625), + [anon_sym_inline] = ACTIONS(4625), + [anon_sym_external] = ACTIONS(4625), + [sym_property_modifier] = ACTIONS(4625), + [anon_sym_abstract] = ACTIONS(4625), + [anon_sym_final] = ACTIONS(4625), + [anon_sym_open] = ACTIONS(4625), + [anon_sym_vararg] = ACTIONS(4625), + [anon_sym_noinline] = ACTIONS(4625), + [anon_sym_crossinline] = ACTIONS(4625), + [anon_sym_expect] = ACTIONS(4625), + [anon_sym_actual] = ACTIONS(4625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4627), + [anon_sym_continue_AT] = ACTIONS(4627), + [anon_sym_break_AT] = ACTIONS(4627), + [anon_sym_this_AT] = ACTIONS(4627), + [anon_sym_super_AT] = ACTIONS(4627), + [sym_real_literal] = ACTIONS(4627), + [sym_integer_literal] = ACTIONS(4625), + [sym_hex_literal] = ACTIONS(4627), + [sym_bin_literal] = ACTIONS(4627), + [anon_sym_true] = ACTIONS(4625), + [anon_sym_false] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4627), + [sym__backtick_identifier] = ACTIONS(4627), + [sym__automatic_semicolon] = ACTIONS(4627), + [sym_safe_nav] = ACTIONS(4627), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4627), + }, + [948] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -160545,50 +155690,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -160624,133 +155769,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [949] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -160759,50 +155797,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1738), - [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), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4597), [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_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -160838,26 +155876,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [950] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -160866,50 +155904,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4633), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -160945,454 +155983,989 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [951] = { + [sym_enum_class_body] = STATE(1088), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_object] = ACTIONS(4635), + [anon_sym_fun] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_this] = ACTIONS(4635), + [anon_sym_super] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_null] = ACTIONS(4635), + [anon_sym_if] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_when] = ACTIONS(4635), + [anon_sym_try] = ACTIONS(4635), + [anon_sym_throw] = ACTIONS(4635), + [anon_sym_return] = ACTIONS(4635), + [anon_sym_continue] = ACTIONS(4635), + [anon_sym_break] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4637), + [anon_sym_continue_AT] = ACTIONS(4637), + [anon_sym_break_AT] = ACTIONS(4637), + [anon_sym_this_AT] = ACTIONS(4637), + [anon_sym_super_AT] = ACTIONS(4637), + [sym_real_literal] = ACTIONS(4637), + [sym_integer_literal] = ACTIONS(4635), + [sym_hex_literal] = ACTIONS(4637), + [sym_bin_literal] = ACTIONS(4637), + [anon_sym_true] = ACTIONS(4635), + [anon_sym_false] = ACTIONS(4635), + [anon_sym_SQUOTE] = ACTIONS(4637), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4637), }, - [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), + [952] = { + [sym_enum_class_body] = STATE(1117), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), }, - [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), + [953] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, - [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(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), + [954] = { + [sym_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3262), + [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_fun] = 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), + }, + [955] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4539), + [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_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(4545), + [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(4553), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4218), + [sym__string_start] = ACTIONS(3188), }, - [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), + [956] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4539), + [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_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(4543), + [sym_label] = ACTIONS(4545), + [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(4553), + [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(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [957] = { + [sym_class_body] = STATE(1110), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), + }, + [958] = { + [sym__alpha_identifier] = ACTIONS(4643), + [anon_sym_AT] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(4645), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_LT] = ACTIONS(4643), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_where] = ACTIONS(4643), + [anon_sym_object] = ACTIONS(4643), + [anon_sym_fun] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_get] = ACTIONS(4643), + [anon_sym_set] = ACTIONS(4643), + [anon_sym_this] = ACTIONS(4643), + [anon_sym_super] = ACTIONS(4643), + [anon_sym_STAR] = ACTIONS(4643), + [sym_label] = ACTIONS(4643), + [anon_sym_in] = ACTIONS(4643), + [anon_sym_DOT_DOT] = ACTIONS(4645), + [anon_sym_QMARK_COLON] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4643), + [anon_sym_if] = ACTIONS(4643), + [anon_sym_else] = ACTIONS(4643), + [anon_sym_when] = ACTIONS(4643), + [anon_sym_try] = ACTIONS(4643), + [anon_sym_throw] = ACTIONS(4643), + [anon_sym_return] = ACTIONS(4643), + [anon_sym_continue] = ACTIONS(4643), + [anon_sym_break] = ACTIONS(4643), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PLUS_EQ] = ACTIONS(4645), + [anon_sym_DASH_EQ] = ACTIONS(4645), + [anon_sym_STAR_EQ] = ACTIONS(4645), + [anon_sym_SLASH_EQ] = ACTIONS(4645), + [anon_sym_PERCENT_EQ] = ACTIONS(4645), + [anon_sym_BANG_EQ] = ACTIONS(4643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4645), + [anon_sym_EQ_EQ] = ACTIONS(4643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4645), + [anon_sym_LT_EQ] = ACTIONS(4645), + [anon_sym_GT_EQ] = ACTIONS(4645), + [anon_sym_BANGin] = ACTIONS(4645), + [anon_sym_is] = ACTIONS(4643), + [anon_sym_BANGis] = ACTIONS(4645), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_as_QMARK] = ACTIONS(4645), + [anon_sym_PLUS_PLUS] = ACTIONS(4645), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_BANG] = ACTIONS(4643), + [anon_sym_BANG_BANG] = ACTIONS(4645), + [anon_sym_suspend] = ACTIONS(4643), + [anon_sym_sealed] = ACTIONS(4643), + [anon_sym_annotation] = ACTIONS(4643), + [anon_sym_data] = ACTIONS(4643), + [anon_sym_inner] = ACTIONS(4643), + [anon_sym_value] = ACTIONS(4643), + [anon_sym_override] = ACTIONS(4643), + [anon_sym_lateinit] = ACTIONS(4643), + [anon_sym_public] = ACTIONS(4643), + [anon_sym_private] = ACTIONS(4643), + [anon_sym_internal] = ACTIONS(4643), + [anon_sym_protected] = ACTIONS(4643), + [anon_sym_tailrec] = ACTIONS(4643), + [anon_sym_operator] = ACTIONS(4643), + [anon_sym_infix] = ACTIONS(4643), + [anon_sym_inline] = ACTIONS(4643), + [anon_sym_external] = ACTIONS(4643), + [sym_property_modifier] = ACTIONS(4643), + [anon_sym_abstract] = ACTIONS(4643), + [anon_sym_final] = ACTIONS(4643), + [anon_sym_open] = ACTIONS(4643), + [anon_sym_vararg] = ACTIONS(4643), + [anon_sym_noinline] = ACTIONS(4643), + [anon_sym_crossinline] = ACTIONS(4643), + [anon_sym_expect] = ACTIONS(4643), + [anon_sym_actual] = ACTIONS(4643), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4645), + [anon_sym_continue_AT] = ACTIONS(4645), + [anon_sym_break_AT] = ACTIONS(4645), + [anon_sym_this_AT] = ACTIONS(4645), + [anon_sym_super_AT] = ACTIONS(4645), + [sym_real_literal] = ACTIONS(4645), + [sym_integer_literal] = ACTIONS(4643), + [sym_hex_literal] = ACTIONS(4645), + [sym_bin_literal] = ACTIONS(4645), + [anon_sym_true] = ACTIONS(4643), + [anon_sym_false] = ACTIONS(4643), + [anon_sym_SQUOTE] = ACTIONS(4645), + [sym__backtick_identifier] = ACTIONS(4645), + [sym__automatic_semicolon] = ACTIONS(4645), + [sym_safe_nav] = ACTIONS(4645), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4645), + }, + [959] = { + [sym__alpha_identifier] = ACTIONS(4647), + [anon_sym_AT] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [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_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_where] = ACTIONS(4647), + [anon_sym_object] = ACTIONS(4647), + [anon_sym_fun] = 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), + }, + [960] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -161401,50 +156974,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -161480,439 +157053,1617 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, + [961] = { + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [962] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [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(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [963] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [964] = { + [sym_class_body] = STATE(1126), + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_as] = ACTIONS(4653), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_LBRACE] = ACTIONS(3262), + [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_fun] = 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_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), + }, + [965] = { + [sym__alpha_identifier] = ACTIONS(4657), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_as] = ACTIONS(4657), + [anon_sym_EQ] = ACTIONS(4657), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_object] = ACTIONS(4657), + [anon_sym_fun] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4657), + [anon_sym_set] = ACTIONS(4657), + [anon_sym_this] = ACTIONS(4657), + [anon_sym_super] = ACTIONS(4657), + [anon_sym_STAR] = ACTIONS(4657), + [sym_label] = ACTIONS(4657), + [anon_sym_in] = ACTIONS(4657), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_null] = ACTIONS(4657), + [anon_sym_if] = ACTIONS(4657), + [anon_sym_else] = ACTIONS(4657), + [anon_sym_when] = ACTIONS(4657), + [anon_sym_try] = ACTIONS(4657), + [anon_sym_throw] = ACTIONS(4657), + [anon_sym_return] = ACTIONS(4657), + [anon_sym_continue] = ACTIONS(4657), + [anon_sym_break] = ACTIONS(4657), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4657), + [anon_sym_BANGis] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_as_QMARK] = ACTIONS(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4657), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [anon_sym_suspend] = ACTIONS(4657), + [anon_sym_sealed] = ACTIONS(4657), + [anon_sym_annotation] = ACTIONS(4657), + [anon_sym_data] = ACTIONS(4657), + [anon_sym_inner] = ACTIONS(4657), + [anon_sym_value] = ACTIONS(4657), + [anon_sym_override] = ACTIONS(4657), + [anon_sym_lateinit] = ACTIONS(4657), + [anon_sym_public] = ACTIONS(4657), + [anon_sym_private] = ACTIONS(4657), + [anon_sym_internal] = ACTIONS(4657), + [anon_sym_protected] = ACTIONS(4657), + [anon_sym_tailrec] = ACTIONS(4657), + [anon_sym_operator] = ACTIONS(4657), + [anon_sym_infix] = ACTIONS(4657), + [anon_sym_inline] = ACTIONS(4657), + [anon_sym_external] = ACTIONS(4657), + [sym_property_modifier] = ACTIONS(4657), + [anon_sym_abstract] = ACTIONS(4657), + [anon_sym_final] = ACTIONS(4657), + [anon_sym_open] = ACTIONS(4657), + [anon_sym_vararg] = ACTIONS(4657), + [anon_sym_noinline] = ACTIONS(4657), + [anon_sym_crossinline] = ACTIONS(4657), + [anon_sym_expect] = ACTIONS(4657), + [anon_sym_actual] = ACTIONS(4657), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4659), + [anon_sym_continue_AT] = ACTIONS(4659), + [anon_sym_break_AT] = ACTIONS(4659), + [anon_sym_this_AT] = ACTIONS(4659), + [anon_sym_super_AT] = ACTIONS(4659), + [sym_real_literal] = ACTIONS(4659), + [sym_integer_literal] = ACTIONS(4657), + [sym_hex_literal] = ACTIONS(4659), + [sym_bin_literal] = ACTIONS(4659), + [anon_sym_true] = ACTIONS(4657), + [anon_sym_false] = ACTIONS(4657), + [anon_sym_SQUOTE] = ACTIONS(4659), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4659), + }, + [966] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_null] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [967] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3104), + }, + [968] = { + [sym__alpha_identifier] = ACTIONS(4661), + [anon_sym_AT] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_as] = ACTIONS(4661), + [anon_sym_EQ] = ACTIONS(4661), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_object] = ACTIONS(4661), + [anon_sym_fun] = ACTIONS(4661), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_get] = ACTIONS(4661), + [anon_sym_set] = ACTIONS(4661), + [anon_sym_this] = ACTIONS(4661), + [anon_sym_super] = ACTIONS(4661), + [anon_sym_STAR] = ACTIONS(4661), + [sym_label] = ACTIONS(4661), + [anon_sym_in] = ACTIONS(4661), + [anon_sym_DOT_DOT] = ACTIONS(4663), + [anon_sym_QMARK_COLON] = ACTIONS(4663), + [anon_sym_AMP_AMP] = ACTIONS(4663), + [anon_sym_PIPE_PIPE] = ACTIONS(4663), + [anon_sym_null] = ACTIONS(4661), + [anon_sym_if] = ACTIONS(4661), + [anon_sym_else] = ACTIONS(4661), + [anon_sym_when] = ACTIONS(4661), + [anon_sym_try] = ACTIONS(4661), + [anon_sym_throw] = ACTIONS(4661), + [anon_sym_return] = ACTIONS(4661), + [anon_sym_continue] = ACTIONS(4661), + [anon_sym_break] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4663), + [anon_sym_PLUS_EQ] = ACTIONS(4663), + [anon_sym_DASH_EQ] = ACTIONS(4663), + [anon_sym_STAR_EQ] = ACTIONS(4663), + [anon_sym_SLASH_EQ] = ACTIONS(4663), + [anon_sym_PERCENT_EQ] = ACTIONS(4663), + [anon_sym_BANG_EQ] = ACTIONS(4661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), + [anon_sym_EQ_EQ] = ACTIONS(4661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), + [anon_sym_LT_EQ] = ACTIONS(4663), + [anon_sym_GT_EQ] = ACTIONS(4663), + [anon_sym_BANGin] = ACTIONS(4663), + [anon_sym_is] = ACTIONS(4661), + [anon_sym_BANGis] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4661), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4661), + [anon_sym_PERCENT] = ACTIONS(4661), + [anon_sym_as_QMARK] = ACTIONS(4663), + [anon_sym_PLUS_PLUS] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4663), + [anon_sym_BANG] = ACTIONS(4661), + [anon_sym_BANG_BANG] = ACTIONS(4663), + [anon_sym_suspend] = ACTIONS(4661), + [anon_sym_sealed] = ACTIONS(4661), + [anon_sym_annotation] = ACTIONS(4661), + [anon_sym_data] = ACTIONS(4661), + [anon_sym_inner] = ACTIONS(4661), + [anon_sym_value] = ACTIONS(4661), + [anon_sym_override] = ACTIONS(4661), + [anon_sym_lateinit] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4661), + [anon_sym_private] = ACTIONS(4661), + [anon_sym_internal] = ACTIONS(4661), + [anon_sym_protected] = ACTIONS(4661), + [anon_sym_tailrec] = ACTIONS(4661), + [anon_sym_operator] = ACTIONS(4661), + [anon_sym_infix] = ACTIONS(4661), + [anon_sym_inline] = ACTIONS(4661), + [anon_sym_external] = ACTIONS(4661), + [sym_property_modifier] = ACTIONS(4661), + [anon_sym_abstract] = ACTIONS(4661), + [anon_sym_final] = ACTIONS(4661), + [anon_sym_open] = ACTIONS(4661), + [anon_sym_vararg] = ACTIONS(4661), + [anon_sym_noinline] = ACTIONS(4661), + [anon_sym_crossinline] = ACTIONS(4661), + [anon_sym_expect] = ACTIONS(4661), + [anon_sym_actual] = ACTIONS(4661), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4663), + [anon_sym_continue_AT] = ACTIONS(4663), + [anon_sym_break_AT] = ACTIONS(4663), + [anon_sym_this_AT] = ACTIONS(4663), + [anon_sym_super_AT] = ACTIONS(4663), + [sym_real_literal] = ACTIONS(4663), + [sym_integer_literal] = ACTIONS(4661), + [sym_hex_literal] = ACTIONS(4663), + [sym_bin_literal] = ACTIONS(4663), + [anon_sym_true] = ACTIONS(4661), + [anon_sym_false] = ACTIONS(4661), + [anon_sym_SQUOTE] = ACTIONS(4663), + [sym__backtick_identifier] = ACTIONS(4663), + [sym__automatic_semicolon] = ACTIONS(4663), + [sym_safe_nav] = ACTIONS(4663), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4663), + }, + [969] = { + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [970] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(970), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4669), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), + }, [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), + [sym_class_body] = STATE(1151), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, [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), + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_fun] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_super] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_null] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_when] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), + [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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3131), + [anon_sym_continue_AT] = ACTIONS(3131), + [anon_sym_break_AT] = ACTIONS(3131), + [anon_sym_this_AT] = ACTIONS(3131), + [anon_sym_super_AT] = ACTIONS(3131), + [sym_real_literal] = ACTIONS(3131), + [sym_integer_literal] = ACTIONS(3129), + [sym_hex_literal] = ACTIONS(3131), + [sym_bin_literal] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3131), }, [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), + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_by] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_object] = ACTIONS(4672), + [anon_sym_fun] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_this] = ACTIONS(4672), + [anon_sym_super] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_when] = ACTIONS(4672), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_throw] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4674), + [anon_sym_continue_AT] = ACTIONS(4674), + [anon_sym_break_AT] = ACTIONS(4674), + [anon_sym_this_AT] = ACTIONS(4674), + [anon_sym_super_AT] = ACTIONS(4674), + [sym_real_literal] = ACTIONS(4674), + [sym_integer_literal] = ACTIONS(4672), + [sym_hex_literal] = ACTIONS(4674), + [sym_bin_literal] = ACTIONS(4674), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4674), }, [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), + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), }, [975] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(994), + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_object] = ACTIONS(4680), + [anon_sym_fun] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_this] = ACTIONS(4680), + [anon_sym_super] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_when] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4680), + [anon_sym_throw] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_continue] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4682), + [anon_sym_continue_AT] = ACTIONS(4682), + [anon_sym_break_AT] = ACTIONS(4682), + [anon_sym_this_AT] = ACTIONS(4682), + [anon_sym_super_AT] = ACTIONS(4682), + [sym_real_literal] = ACTIONS(4682), + [sym_integer_literal] = ACTIONS(4680), + [sym_hex_literal] = ACTIONS(4682), + [sym_bin_literal] = ACTIONS(4682), + [anon_sym_true] = ACTIONS(4680), + [anon_sym_false] = ACTIONS(4680), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4682), + }, + [976] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(977), [sym__alpha_identifier] = ACTIONS(4684), [anon_sym_AT] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), [anon_sym_as] = ACTIONS(4684), [anon_sym_EQ] = ACTIONS(4684), [anon_sym_LBRACE] = ACTIONS(4686), @@ -161924,7 +158675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -162015,26 +158765,882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [977] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(970), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [978] = { + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = ACTIONS(4453), + [anon_sym_object] = ACTIONS(4453), + [anon_sym_fun] = 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), + }, + [979] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [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(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [980] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [981] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [982] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [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(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [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(4553), + [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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [983] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3100), + }, + [984] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(970), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [985] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -162043,50 +159649,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(4690), - [anon_sym_get] = ACTIONS(4666), - [anon_sym_set] = ACTIONS(4668), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(1822), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -162122,26 +159728,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [986] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -162150,50 +159756,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(1734), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -162229,240 +159835,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [987] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -162471,50 +159863,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -162550,561 +159942,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [988] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3112), }, - [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), + [989] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -163113,50 +160077,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [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), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4597), [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_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -163192,240 +160156,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [990] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(4553), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), [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), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4553), [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), + [sym__string_start] = ACTIONS(3169), }, - [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), + [991] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -163434,50 +160291,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -163513,130 +160370,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [992] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [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(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4700), + [anon_sym_set] = ACTIONS(4702), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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), }, - [991] = { + [993] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3108), + }, + [994] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [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_by] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_object] = ACTIONS(4714), + [anon_sym_fun] = 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), + }, + [995] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [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_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4721), + [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(4721), + [anon_sym_QMARK_COLON] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4721), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_BANGin] = ACTIONS(4721), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4721), + [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(4721), + [anon_sym_continue_AT] = ACTIONS(4721), + [anon_sym_break_AT] = ACTIONS(4721), + [anon_sym_this_AT] = ACTIONS(4721), + [anon_sym_super_AT] = ACTIONS(4721), + [sym_real_literal] = ACTIONS(4721), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4721), + [sym_bin_literal] = ACTIONS(4721), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4721), + [sym__backtick_identifier] = ACTIONS(4721), + [sym__automatic_semicolon] = ACTIONS(4721), + [sym_safe_nav] = ACTIONS(4721), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4721), + }, + [996] = { + [sym_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [997] = { + [sym_enum_class_body] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [998] = { + [sym_class_body] = STATE(1155), + [sym__alpha_identifier] = ACTIONS(4724), + [anon_sym_AT] = ACTIONS(4726), + [anon_sym_LBRACK] = ACTIONS(4726), + [anon_sym_DOT] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_where] = ACTIONS(4724), + [anon_sym_object] = ACTIONS(4724), + [anon_sym_fun] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4724), + [anon_sym_set] = ACTIONS(4724), + [anon_sym_this] = ACTIONS(4724), + [anon_sym_super] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4724), + [anon_sym_DOT_DOT] = ACTIONS(4726), + [anon_sym_QMARK_COLON] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_null] = ACTIONS(4724), + [anon_sym_if] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4724), + [anon_sym_when] = ACTIONS(4724), + [anon_sym_try] = ACTIONS(4724), + [anon_sym_throw] = ACTIONS(4724), + [anon_sym_return] = ACTIONS(4724), + [anon_sym_continue] = ACTIONS(4724), + [anon_sym_break] = ACTIONS(4724), + [anon_sym_COLON_COLON] = ACTIONS(4726), + [anon_sym_PLUS_EQ] = ACTIONS(4726), + [anon_sym_DASH_EQ] = ACTIONS(4726), + [anon_sym_STAR_EQ] = ACTIONS(4726), + [anon_sym_SLASH_EQ] = ACTIONS(4726), + [anon_sym_PERCENT_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), + [anon_sym_LT_EQ] = ACTIONS(4726), + [anon_sym_GT_EQ] = ACTIONS(4726), + [anon_sym_BANGin] = ACTIONS(4726), + [anon_sym_is] = ACTIONS(4724), + [anon_sym_BANGis] = ACTIONS(4726), + [anon_sym_PLUS] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4724), + [anon_sym_SLASH] = ACTIONS(4724), + [anon_sym_PERCENT] = ACTIONS(4724), + [anon_sym_as_QMARK] = ACTIONS(4726), + [anon_sym_PLUS_PLUS] = ACTIONS(4726), + [anon_sym_DASH_DASH] = ACTIONS(4726), + [anon_sym_BANG] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4726), + [anon_sym_suspend] = ACTIONS(4724), + [anon_sym_sealed] = ACTIONS(4724), + [anon_sym_annotation] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4724), + [anon_sym_inner] = ACTIONS(4724), + [anon_sym_value] = ACTIONS(4724), + [anon_sym_override] = ACTIONS(4724), + [anon_sym_lateinit] = ACTIONS(4724), + [anon_sym_public] = ACTIONS(4724), + [anon_sym_private] = ACTIONS(4724), + [anon_sym_internal] = ACTIONS(4724), + [anon_sym_protected] = ACTIONS(4724), + [anon_sym_tailrec] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4724), + [anon_sym_infix] = ACTIONS(4724), + [anon_sym_inline] = ACTIONS(4724), + [anon_sym_external] = ACTIONS(4724), + [sym_property_modifier] = ACTIONS(4724), + [anon_sym_abstract] = ACTIONS(4724), + [anon_sym_final] = ACTIONS(4724), + [anon_sym_open] = ACTIONS(4724), + [anon_sym_vararg] = ACTIONS(4724), + [anon_sym_noinline] = ACTIONS(4724), + [anon_sym_crossinline] = ACTIONS(4724), + [anon_sym_expect] = ACTIONS(4724), + [anon_sym_actual] = ACTIONS(4724), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4726), + [anon_sym_continue_AT] = ACTIONS(4726), + [anon_sym_break_AT] = ACTIONS(4726), + [anon_sym_this_AT] = ACTIONS(4726), + [anon_sym_super_AT] = ACTIONS(4726), + [sym_real_literal] = ACTIONS(4726), + [sym_integer_literal] = ACTIONS(4724), + [sym_hex_literal] = ACTIONS(4726), + [sym_bin_literal] = ACTIONS(4726), + [anon_sym_true] = ACTIONS(4724), + [anon_sym_false] = ACTIONS(4724), + [anon_sym_SQUOTE] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4726), + [sym__automatic_semicolon] = ACTIONS(4726), + [sym_safe_nav] = ACTIONS(4726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4726), + }, + [999] = { [sym__alpha_identifier] = ACTIONS(4728), [anon_sym_AT] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4728), [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), @@ -163727,10 +161226,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4730), }, - [992] = { + [1000] = { + [sym_class_body] = STATE(1152), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), + }, + [1001] = { + [sym_enum_class_body] = STATE(1151), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), + }, + [1002] = { [sym__alpha_identifier] = ACTIONS(4732), [anon_sym_AT] = ACTIONS(4734), [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), [anon_sym_as] = ACTIONS(4732), [anon_sym_EQ] = ACTIONS(4732), [anon_sym_LBRACE] = ACTIONS(4734), @@ -163743,7 +161457,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -163834,130 +161547,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1003] = { [sym__alpha_identifier] = ACTIONS(4736), [anon_sym_AT] = ACTIONS(4738), [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = 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(4688), + [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_fun] = ACTIONS(4736), - [anon_sym_DOT] = ACTIONS(4736), [anon_sym_SEMI] = ACTIONS(4738), [anon_sym_get] = ACTIONS(4736), [anon_sym_set] = ACTIONS(4736), @@ -164048,22 +161654,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4738), }, - [995] = { + [1004] = { [sym__alpha_identifier] = ACTIONS(4740), [anon_sym_AT] = ACTIONS(4742), [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_DOT] = ACTIONS(4740), [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_by] = ACTIONS(4740), [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), @@ -164145,7 +161752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -164155,451 +161761,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1005] = { + [sym__alpha_identifier] = ACTIONS(4744), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4744), + [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_by] = ACTIONS(4744), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_where] = ACTIONS(4744), + [anon_sym_object] = ACTIONS(4744), + [anon_sym_fun] = 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), }, - [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), + [1006] = { + [sym__alpha_identifier] = ACTIONS(4748), + [anon_sym_AT] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [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_fun] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(4751), + [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(4751), + [anon_sym_QMARK_COLON] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_BANGin] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4748), + [anon_sym_BANGis] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4751), + [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(4751), + [anon_sym_continue_AT] = ACTIONS(4751), + [anon_sym_break_AT] = ACTIONS(4751), + [anon_sym_this_AT] = ACTIONS(4751), + [anon_sym_super_AT] = ACTIONS(4751), + [sym_real_literal] = ACTIONS(4751), + [sym_integer_literal] = ACTIONS(4748), + [sym_hex_literal] = ACTIONS(4751), + [sym_bin_literal] = ACTIONS(4751), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_SQUOTE] = ACTIONS(4751), + [sym__backtick_identifier] = ACTIONS(4751), + [sym__automatic_semicolon] = ACTIONS(4751), + [sym_safe_nav] = ACTIONS(4751), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4751), }, - [1000] = { + [1007] = { [sym__alpha_identifier] = ACTIONS(4754), [anon_sym_AT] = ACTIONS(4756), - [anon_sym_COLON] = ACTIONS(4754), [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), [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_by] = ACTIONS(4754), [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), @@ -164690,345 +162082,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4756), }, - [1001] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), + [1008] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), [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), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, - [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), + [1009] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), [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_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4571), [anon_sym_data] = ACTIONS(3092), [anon_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), + [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(3162), - [sym_safe_nav] = ACTIONS(4613), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3162), + [sym__string_start] = ACTIONS(3184), }, - [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), + [1010] = { + [sym_function_body] = STATE(1035), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(4760), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = 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), + }, + [1011] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2050), + [sym__in_operator] = STATE(2060), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2023), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2073), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4541), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), [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_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(4543), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(4547), + [anon_sym_DOT_DOT] = ACTIONS(4549), + [anon_sym_QMARK_COLON] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4639), + [anon_sym_PIPE_PIPE] = ACTIONS(4641), + [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(4553), + [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(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(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_BANGin] = ACTIONS(4561), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4571), [anon_sym_data] = ACTIONS(3092), [anon_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), + [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(3146), - [sym_safe_nav] = ACTIONS(4613), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3146), + [sym__string_start] = ACTIONS(3142), }, - [1004] = { + [1012] = { [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4765), - [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), [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_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), [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_SEMI] = ACTIONS(4764), [anon_sym_get] = ACTIONS(4762), [anon_sym_set] = ACTIONS(4762), [anon_sym_this] = ACTIONS(4762), @@ -165036,10 +162534,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), [anon_sym_null] = ACTIONS(4762), [anon_sym_if] = ACTIONS(4762), [anon_sym_else] = ACTIONS(4762), @@ -165049,30 +162547,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), [anon_sym_BANG_EQ] = ACTIONS(4762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), [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_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), [anon_sym_is] = ACTIONS(4762), - [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_BANGis] = ACTIONS(4764), [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_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), [anon_sym_BANG] = ACTIONS(4762), - [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4764), [anon_sym_suspend] = ACTIONS(4762), [anon_sym_sealed] = ACTIONS(4762), [anon_sym_annotation] = ACTIONS(4762), @@ -165100,1309 +162598,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(4764), + [anon_sym_continue_AT] = ACTIONS(4764), + [anon_sym_break_AT] = ACTIONS(4764), + [anon_sym_this_AT] = ACTIONS(4764), + [anon_sym_super_AT] = ACTIONS(4764), + [anon_sym_AT2] = ACTIONS(4766), + [sym_real_literal] = ACTIONS(4764), [sym_integer_literal] = ACTIONS(4762), - [sym_hex_literal] = ACTIONS(4765), - [sym_bin_literal] = ACTIONS(4765), + [sym_hex_literal] = ACTIONS(4764), + [sym_bin_literal] = ACTIONS(4764), [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), + [anon_sym_SQUOTE] = ACTIONS(4764), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4206), + [sym__string_start] = ACTIONS(4764), }, [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__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [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_SEMI] = ACTIONS(4269), + [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(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(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), + [anon_sym_return_AT] = ACTIONS(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [sym__string_start] = ACTIONS(4269), }, [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), + [sym__alpha_identifier] = ACTIONS(4768), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_where] = ACTIONS(4768), + [anon_sym_object] = ACTIONS(4768), + [anon_sym_fun] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_get] = ACTIONS(4768), + [anon_sym_set] = ACTIONS(4768), + [anon_sym_this] = ACTIONS(4768), + [anon_sym_super] = ACTIONS(4768), + [anon_sym_STAR] = ACTIONS(4768), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_QMARK_COLON] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_when] = ACTIONS(4768), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_throw] = ACTIONS(4768), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_COLON_COLON] = ACTIONS(4770), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_PERCENT_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4770), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_BANGin] = ACTIONS(4770), + [anon_sym_is] = ACTIONS(4768), + [anon_sym_BANGis] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4768), + [anon_sym_as_QMARK] = ACTIONS(4770), + [anon_sym_PLUS_PLUS] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4770), + [anon_sym_suspend] = ACTIONS(4768), + [anon_sym_sealed] = ACTIONS(4768), + [anon_sym_annotation] = ACTIONS(4768), + [anon_sym_data] = ACTIONS(4768), + [anon_sym_inner] = ACTIONS(4768), + [anon_sym_value] = ACTIONS(4768), + [anon_sym_override] = ACTIONS(4768), + [anon_sym_lateinit] = ACTIONS(4768), + [anon_sym_public] = ACTIONS(4768), + [anon_sym_private] = ACTIONS(4768), + [anon_sym_internal] = ACTIONS(4768), + [anon_sym_protected] = ACTIONS(4768), + [anon_sym_tailrec] = ACTIONS(4768), + [anon_sym_operator] = ACTIONS(4768), + [anon_sym_infix] = ACTIONS(4768), + [anon_sym_inline] = ACTIONS(4768), + [anon_sym_external] = ACTIONS(4768), + [sym_property_modifier] = ACTIONS(4768), + [anon_sym_abstract] = ACTIONS(4768), + [anon_sym_final] = ACTIONS(4768), + [anon_sym_open] = ACTIONS(4768), + [anon_sym_vararg] = ACTIONS(4768), + [anon_sym_noinline] = ACTIONS(4768), + [anon_sym_crossinline] = ACTIONS(4768), + [anon_sym_expect] = ACTIONS(4768), + [anon_sym_actual] = ACTIONS(4768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4770), + [anon_sym_continue_AT] = ACTIONS(4770), + [anon_sym_break_AT] = ACTIONS(4770), + [anon_sym_this_AT] = ACTIONS(4770), + [anon_sym_super_AT] = ACTIONS(4770), + [sym_real_literal] = ACTIONS(4770), + [sym_integer_literal] = ACTIONS(4768), + [sym_hex_literal] = ACTIONS(4770), + [sym_bin_literal] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_SQUOTE] = ACTIONS(4770), + [sym__backtick_identifier] = ACTIONS(4770), + [sym__automatic_semicolon] = ACTIONS(4770), + [sym_safe_nav] = ACTIONS(4770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4770), }, [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), + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), }, [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_DOT] = ACTIONS(4774), [anon_sym_as] = ACTIONS(4774), [anon_sym_EQ] = ACTIONS(4774), [anon_sym_LBRACE] = ACTIONS(4776), @@ -166414,7 +162952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166505,10 +163042,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4776), }, - [1018] = { + [1017] = { [sym__alpha_identifier] = ACTIONS(4778), [anon_sym_AT] = ACTIONS(4780), [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), [anon_sym_as] = ACTIONS(4778), [anon_sym_EQ] = ACTIONS(4778), [anon_sym_LBRACE] = ACTIONS(4780), @@ -166520,7 +163058,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166611,10 +163148,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4780), }, - [1019] = { + [1018] = { [sym__alpha_identifier] = ACTIONS(4782), [anon_sym_AT] = ACTIONS(4784), [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4782), [anon_sym_as] = ACTIONS(4782), [anon_sym_EQ] = ACTIONS(4782), [anon_sym_LBRACE] = ACTIONS(4784), @@ -166626,7 +163164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166717,10 +163254,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4784), }, - [1020] = { + [1019] = { [sym__alpha_identifier] = ACTIONS(4786), [anon_sym_AT] = ACTIONS(4788), [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4786), [anon_sym_as] = ACTIONS(4786), [anon_sym_EQ] = ACTIONS(4786), [anon_sym_LBRACE] = ACTIONS(4788), @@ -166732,7 +163270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -166823,328 +163360,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4788), }, - [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] = { + [1020] = { [sym__alpha_identifier] = ACTIONS(4790), [anon_sym_AT] = ACTIONS(4792), [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4790), [anon_sym_as] = ACTIONS(4790), [anon_sym_EQ] = ACTIONS(4790), [anon_sym_LBRACE] = ACTIONS(4792), @@ -167156,7 +163376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -167247,10 +163466,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4792), }, - [1025] = { + [1021] = { [sym__alpha_identifier] = ACTIONS(4794), [anon_sym_AT] = ACTIONS(4796), [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4794), [anon_sym_as] = ACTIONS(4794), [anon_sym_EQ] = ACTIONS(4794), [anon_sym_LBRACE] = ACTIONS(4796), @@ -167262,7 +163482,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -167353,116 +163572,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4796), }, - [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), - }, - [1027] = { + [1022] = { [sym__alpha_identifier] = ACTIONS(4798), [anon_sym_AT] = ACTIONS(4800), [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4798), [anon_sym_as] = ACTIONS(4798), [anon_sym_EQ] = ACTIONS(4798), [anon_sym_LBRACE] = ACTIONS(4800), @@ -167474,7 +163588,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -167565,752 +163678,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4800), }, - [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), + [1023] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_object] = ACTIONS(4802), + [anon_sym_fun] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_this] = ACTIONS(4802), + [anon_sym_super] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4802), + [anon_sym_if] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4802), + [anon_sym_throw] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_continue] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4802), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4804), + [anon_sym_continue_AT] = ACTIONS(4804), + [anon_sym_break_AT] = ACTIONS(4804), + [anon_sym_this_AT] = ACTIONS(4804), + [anon_sym_super_AT] = ACTIONS(4804), + [sym_real_literal] = ACTIONS(4804), + [sym_integer_literal] = ACTIONS(4802), + [sym_hex_literal] = ACTIONS(4804), + [sym_bin_literal] = ACTIONS(4804), + [anon_sym_true] = ACTIONS(4802), + [anon_sym_false] = ACTIONS(4802), + [anon_sym_SQUOTE] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4804), }, - [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), - [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), + [1024] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4806), + [anon_sym_where] = ACTIONS(4806), + [anon_sym_object] = ACTIONS(4806), + [anon_sym_fun] = ACTIONS(4806), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_get] = ACTIONS(4806), + [anon_sym_set] = ACTIONS(4806), + [anon_sym_this] = ACTIONS(4806), + [anon_sym_super] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4806), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_QMARK_COLON] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4806), + [anon_sym_if] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4806), + [anon_sym_when] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4806), + [anon_sym_throw] = ACTIONS(4806), + [anon_sym_return] = ACTIONS(4806), + [anon_sym_continue] = ACTIONS(4806), + [anon_sym_break] = ACTIONS(4806), + [anon_sym_COLON_COLON] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4808), + [anon_sym_DASH_EQ] = ACTIONS(4808), + [anon_sym_STAR_EQ] = ACTIONS(4808), + [anon_sym_SLASH_EQ] = ACTIONS(4808), + [anon_sym_PERCENT_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4808), + [anon_sym_BANGin] = ACTIONS(4808), + [anon_sym_is] = ACTIONS(4806), + [anon_sym_BANGis] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_as_QMARK] = ACTIONS(4808), + [anon_sym_PLUS_PLUS] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4808), + [anon_sym_suspend] = ACTIONS(4806), + [anon_sym_sealed] = ACTIONS(4806), + [anon_sym_annotation] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4806), + [anon_sym_inner] = ACTIONS(4806), + [anon_sym_value] = ACTIONS(4806), + [anon_sym_override] = ACTIONS(4806), + [anon_sym_lateinit] = ACTIONS(4806), + [anon_sym_public] = ACTIONS(4806), + [anon_sym_private] = ACTIONS(4806), + [anon_sym_internal] = ACTIONS(4806), + [anon_sym_protected] = ACTIONS(4806), + [anon_sym_tailrec] = ACTIONS(4806), + [anon_sym_operator] = ACTIONS(4806), + [anon_sym_infix] = ACTIONS(4806), + [anon_sym_inline] = ACTIONS(4806), + [anon_sym_external] = ACTIONS(4806), + [sym_property_modifier] = ACTIONS(4806), + [anon_sym_abstract] = ACTIONS(4806), + [anon_sym_final] = ACTIONS(4806), + [anon_sym_open] = ACTIONS(4806), + [anon_sym_vararg] = ACTIONS(4806), + [anon_sym_noinline] = ACTIONS(4806), + [anon_sym_crossinline] = ACTIONS(4806), + [anon_sym_expect] = ACTIONS(4806), + [anon_sym_actual] = ACTIONS(4806), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4808), + [anon_sym_continue_AT] = ACTIONS(4808), + [anon_sym_break_AT] = ACTIONS(4808), + [anon_sym_this_AT] = ACTIONS(4808), + [anon_sym_super_AT] = ACTIONS(4808), + [sym_real_literal] = ACTIONS(4808), + [sym_integer_literal] = ACTIONS(4806), + [sym_hex_literal] = ACTIONS(4808), + [sym_bin_literal] = ACTIONS(4808), + [anon_sym_true] = ACTIONS(4806), + [anon_sym_false] = ACTIONS(4806), + [anon_sym_SQUOTE] = ACTIONS(4808), + [sym__backtick_identifier] = ACTIONS(4808), + [sym__automatic_semicolon] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4808), }, - [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), + [1025] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_object] = ACTIONS(4810), + [anon_sym_fun] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_this] = ACTIONS(4810), + [anon_sym_super] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_when] = ACTIONS(4810), + [anon_sym_try] = ACTIONS(4810), + [anon_sym_throw] = ACTIONS(4810), + [anon_sym_return] = ACTIONS(4810), + [anon_sym_continue] = ACTIONS(4810), + [anon_sym_break] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4812), + [anon_sym_continue_AT] = ACTIONS(4812), + [anon_sym_break_AT] = ACTIONS(4812), + [anon_sym_this_AT] = ACTIONS(4812), + [anon_sym_super_AT] = ACTIONS(4812), + [sym_real_literal] = ACTIONS(4812), + [sym_integer_literal] = ACTIONS(4810), + [sym_hex_literal] = ACTIONS(4812), + [sym_bin_literal] = ACTIONS(4812), + [anon_sym_true] = ACTIONS(4810), + [anon_sym_false] = ACTIONS(4810), + [anon_sym_SQUOTE] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4812), }, - [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_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_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), + [1026] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_object] = ACTIONS(4814), + [anon_sym_fun] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_this] = ACTIONS(4814), + [anon_sym_super] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_when] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4814), + [anon_sym_throw] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4814), + [anon_sym_continue] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4816), + [anon_sym_continue_AT] = ACTIONS(4816), + [anon_sym_break_AT] = ACTIONS(4816), + [anon_sym_this_AT] = ACTIONS(4816), + [anon_sym_super_AT] = ACTIONS(4816), + [sym_real_literal] = ACTIONS(4816), + [sym_integer_literal] = ACTIONS(4814), + [sym_hex_literal] = ACTIONS(4816), + [sym_bin_literal] = ACTIONS(4816), + [anon_sym_true] = ACTIONS(4814), + [anon_sym_false] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4816), }, - [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), - }, - [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(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_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), - }, - [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), + [1027] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), }, - [1035] = { + [1028] = { [sym__alpha_identifier] = ACTIONS(4818), [anon_sym_AT] = ACTIONS(4820), [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_DOT] = ACTIONS(4818), [anon_sym_as] = ACTIONS(4818), [anon_sym_EQ] = ACTIONS(4818), [anon_sym_LBRACE] = ACTIONS(4820), @@ -168322,8 +164224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4820), [anon_sym_get] = ACTIONS(4818), [anon_sym_set] = ACTIONS(4818), [anon_sym_this] = ACTIONS(4818), @@ -168337,7 +164238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4820), [anon_sym_null] = ACTIONS(4818), [anon_sym_if] = ACTIONS(4818), - [anon_sym_else] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4818), [anon_sym_when] = ACTIONS(4818), [anon_sym_try] = ACTIONS(4818), [anon_sym_throw] = ACTIONS(4818), @@ -168413,1388 +164314,753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [1029] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_object] = ACTIONS(4822), + [anon_sym_fun] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_this] = ACTIONS(4822), + [anon_sym_super] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_when] = ACTIONS(4822), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_throw] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4824), + [anon_sym_continue_AT] = ACTIONS(4824), + [anon_sym_break_AT] = ACTIONS(4824), + [anon_sym_this_AT] = ACTIONS(4824), + [anon_sym_super_AT] = ACTIONS(4824), + [sym_real_literal] = ACTIONS(4824), + [sym_integer_literal] = ACTIONS(4822), + [sym_hex_literal] = ACTIONS(4824), + [sym_bin_literal] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4824), }, - [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), + [1030] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [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_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(4262), + [sym__string_start] = ACTIONS(4218), }, - [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(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), + [1031] = { + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_object] = ACTIONS(4020), + [anon_sym_fun] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_this] = ACTIONS(4020), + [anon_sym_super] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4020), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4022), + [anon_sym_continue_AT] = ACTIONS(4022), + [anon_sym_break_AT] = ACTIONS(4022), + [anon_sym_this_AT] = ACTIONS(4022), + [anon_sym_super_AT] = ACTIONS(4022), + [sym_real_literal] = ACTIONS(4022), + [sym_integer_literal] = ACTIONS(4020), + [sym_hex_literal] = ACTIONS(4022), + [sym_bin_literal] = ACTIONS(4022), + [anon_sym_true] = ACTIONS(4020), + [anon_sym_false] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4022), }, - [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), + [1032] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), [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), - }, - [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), - }, - [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_AMP_AMP] = ACTIONS(4842), [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), - }, - [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_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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), - }, - [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_LT_EQ] = ACTIONS(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), [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), - }, - [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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), - }, - [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), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [1046] = { - [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(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(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), + [1033] = { + [sym__alpha_identifier] = ACTIONS(4858), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_as] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_where] = ACTIONS(4858), + [anon_sym_object] = ACTIONS(4858), + [anon_sym_fun] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_this] = ACTIONS(4858), + [anon_sym_super] = ACTIONS(4858), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_QMARK_COLON] = ACTIONS(4860), + [anon_sym_AMP_AMP] = ACTIONS(4860), + [anon_sym_PIPE_PIPE] = ACTIONS(4860), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_when] = ACTIONS(4858), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_throw] = ACTIONS(4858), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_PERCENT_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4860), + [anon_sym_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4860), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_BANGin] = ACTIONS(4860), + [anon_sym_is] = ACTIONS(4858), + [anon_sym_BANGis] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4860), + [anon_sym_PLUS_PLUS] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4860), + [anon_sym_suspend] = ACTIONS(4858), + [anon_sym_sealed] = ACTIONS(4858), + [anon_sym_annotation] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4858), + [anon_sym_inner] = ACTIONS(4858), + [anon_sym_value] = ACTIONS(4858), + [anon_sym_override] = ACTIONS(4858), + [anon_sym_lateinit] = ACTIONS(4858), + [anon_sym_public] = ACTIONS(4858), + [anon_sym_private] = ACTIONS(4858), + [anon_sym_internal] = ACTIONS(4858), + [anon_sym_protected] = ACTIONS(4858), + [anon_sym_tailrec] = ACTIONS(4858), + [anon_sym_operator] = ACTIONS(4858), + [anon_sym_infix] = ACTIONS(4858), + [anon_sym_inline] = ACTIONS(4858), + [anon_sym_external] = ACTIONS(4858), + [sym_property_modifier] = ACTIONS(4858), + [anon_sym_abstract] = ACTIONS(4858), + [anon_sym_final] = ACTIONS(4858), + [anon_sym_open] = ACTIONS(4858), + [anon_sym_vararg] = ACTIONS(4858), + [anon_sym_noinline] = ACTIONS(4858), + [anon_sym_crossinline] = ACTIONS(4858), + [anon_sym_expect] = ACTIONS(4858), + [anon_sym_actual] = ACTIONS(4858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4860), + [anon_sym_continue_AT] = ACTIONS(4860), + [anon_sym_break_AT] = ACTIONS(4860), + [anon_sym_this_AT] = ACTIONS(4860), + [anon_sym_super_AT] = ACTIONS(4860), + [sym_real_literal] = ACTIONS(4860), + [sym_integer_literal] = ACTIONS(4858), + [sym_hex_literal] = ACTIONS(4860), + [sym_bin_literal] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4860), + [sym__backtick_identifier] = ACTIONS(4860), + [sym__automatic_semicolon] = ACTIONS(4860), + [sym_safe_nav] = ACTIONS(4860), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4860), }, - [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), + [1034] = { + [sym__alpha_identifier] = ACTIONS(4862), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_as] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_where] = ACTIONS(4862), + [anon_sym_object] = ACTIONS(4862), + [anon_sym_fun] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_get] = ACTIONS(4862), + [anon_sym_set] = ACTIONS(4862), + [anon_sym_this] = ACTIONS(4862), + [anon_sym_super] = ACTIONS(4862), + [anon_sym_STAR] = ACTIONS(4862), + [sym_label] = ACTIONS(4862), + [anon_sym_in] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_QMARK_COLON] = ACTIONS(4864), + [anon_sym_AMP_AMP] = ACTIONS(4864), + [anon_sym_PIPE_PIPE] = ACTIONS(4864), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_when] = ACTIONS(4862), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_throw] = ACTIONS(4862), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4862), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ] = ACTIONS(4862), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4864), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_BANGin] = ACTIONS(4864), + [anon_sym_is] = ACTIONS(4862), + [anon_sym_BANGis] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_PERCENT] = ACTIONS(4862), + [anon_sym_as_QMARK] = ACTIONS(4864), + [anon_sym_PLUS_PLUS] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_BANG_BANG] = ACTIONS(4864), + [anon_sym_suspend] = ACTIONS(4862), + [anon_sym_sealed] = ACTIONS(4862), + [anon_sym_annotation] = ACTIONS(4862), + [anon_sym_data] = ACTIONS(4862), + [anon_sym_inner] = ACTIONS(4862), + [anon_sym_value] = ACTIONS(4862), + [anon_sym_override] = ACTIONS(4862), + [anon_sym_lateinit] = ACTIONS(4862), + [anon_sym_public] = ACTIONS(4862), + [anon_sym_private] = ACTIONS(4862), + [anon_sym_internal] = ACTIONS(4862), + [anon_sym_protected] = ACTIONS(4862), + [anon_sym_tailrec] = ACTIONS(4862), + [anon_sym_operator] = ACTIONS(4862), + [anon_sym_infix] = ACTIONS(4862), + [anon_sym_inline] = ACTIONS(4862), + [anon_sym_external] = ACTIONS(4862), + [sym_property_modifier] = ACTIONS(4862), + [anon_sym_abstract] = ACTIONS(4862), + [anon_sym_final] = ACTIONS(4862), + [anon_sym_open] = ACTIONS(4862), + [anon_sym_vararg] = ACTIONS(4862), + [anon_sym_noinline] = ACTIONS(4862), + [anon_sym_crossinline] = ACTIONS(4862), + [anon_sym_expect] = ACTIONS(4862), + [anon_sym_actual] = ACTIONS(4862), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4864), + [anon_sym_continue_AT] = ACTIONS(4864), + [anon_sym_break_AT] = ACTIONS(4864), + [anon_sym_this_AT] = ACTIONS(4864), + [anon_sym_super_AT] = ACTIONS(4864), + [sym_real_literal] = ACTIONS(4864), + [sym_integer_literal] = ACTIONS(4862), + [sym_hex_literal] = ACTIONS(4864), + [sym_bin_literal] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4864), + [sym__backtick_identifier] = ACTIONS(4864), + [sym__automatic_semicolon] = ACTIONS(4864), + [sym_safe_nav] = ACTIONS(4864), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4864), }, - [1048] = { - [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_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), + [1035] = { + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), }, - [1049] = { + [1036] = { [sym__alpha_identifier] = ACTIONS(4866), [anon_sym_AT] = ACTIONS(4868), [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_DOT] = ACTIONS(4866), [anon_sym_as] = ACTIONS(4866), [anon_sym_EQ] = ACTIONS(4866), [anon_sym_LBRACE] = ACTIONS(4868), @@ -169806,7 +165072,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -169897,10 +165162,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4868), }, - [1050] = { + [1037] = { [sym__alpha_identifier] = ACTIONS(4870), [anon_sym_AT] = ACTIONS(4872), [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_DOT] = ACTIONS(4870), [anon_sym_as] = ACTIONS(4870), [anon_sym_EQ] = ACTIONS(4870), [anon_sym_LBRACE] = ACTIONS(4872), @@ -169912,7 +165178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -170003,22 +165268,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4872), }, - [1051] = { + [1038] = { [sym__alpha_identifier] = ACTIONS(4874), [anon_sym_AT] = ACTIONS(4876), [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_DOT] = ACTIONS(4874), [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_LPAREN] = ACTIONS(4876), [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), @@ -170109,752 +165374,859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1039] = { + [sym__alpha_identifier] = ACTIONS(4878), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_as] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_where] = ACTIONS(4878), + [anon_sym_object] = ACTIONS(4878), + [anon_sym_fun] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_get] = ACTIONS(4878), + [anon_sym_set] = ACTIONS(4878), + [anon_sym_this] = ACTIONS(4878), + [anon_sym_super] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [sym_label] = ACTIONS(4878), + [anon_sym_in] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_QMARK_COLON] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_when] = ACTIONS(4878), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_throw] = ACTIONS(4878), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(4880), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PERCENT_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_BANGin] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4878), + [anon_sym_BANGis] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(4878), + [anon_sym_as_QMARK] = ACTIONS(4880), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_BANG_BANG] = ACTIONS(4880), + [anon_sym_suspend] = ACTIONS(4878), + [anon_sym_sealed] = ACTIONS(4878), + [anon_sym_annotation] = ACTIONS(4878), + [anon_sym_data] = ACTIONS(4878), + [anon_sym_inner] = ACTIONS(4878), + [anon_sym_value] = ACTIONS(4878), + [anon_sym_override] = ACTIONS(4878), + [anon_sym_lateinit] = ACTIONS(4878), + [anon_sym_public] = ACTIONS(4878), + [anon_sym_private] = ACTIONS(4878), + [anon_sym_internal] = ACTIONS(4878), + [anon_sym_protected] = ACTIONS(4878), + [anon_sym_tailrec] = ACTIONS(4878), + [anon_sym_operator] = ACTIONS(4878), + [anon_sym_infix] = ACTIONS(4878), + [anon_sym_inline] = ACTIONS(4878), + [anon_sym_external] = ACTIONS(4878), + [sym_property_modifier] = ACTIONS(4878), + [anon_sym_abstract] = ACTIONS(4878), + [anon_sym_final] = ACTIONS(4878), + [anon_sym_open] = ACTIONS(4878), + [anon_sym_vararg] = ACTIONS(4878), + [anon_sym_noinline] = ACTIONS(4878), + [anon_sym_crossinline] = ACTIONS(4878), + [anon_sym_expect] = ACTIONS(4878), + [anon_sym_actual] = ACTIONS(4878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4880), + [anon_sym_continue_AT] = ACTIONS(4880), + [anon_sym_break_AT] = ACTIONS(4880), + [anon_sym_this_AT] = ACTIONS(4880), + [anon_sym_super_AT] = ACTIONS(4880), + [sym_real_literal] = ACTIONS(4880), + [sym_integer_literal] = ACTIONS(4878), + [sym_hex_literal] = ACTIONS(4880), + [sym_bin_literal] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4880), + [sym__backtick_identifier] = ACTIONS(4880), + [sym__automatic_semicolon] = ACTIONS(4880), + [sym_safe_nav] = ACTIONS(4880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4880), }, - [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), + [1040] = { + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), }, - [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), + [1041] = { + [sym__alpha_identifier] = ACTIONS(4882), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4882), + [anon_sym_object] = ACTIONS(4882), + [anon_sym_fun] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_get] = ACTIONS(4882), + [anon_sym_set] = ACTIONS(4882), + [anon_sym_this] = ACTIONS(4882), + [anon_sym_super] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_QMARK_COLON] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_PIPE_PIPE] = ACTIONS(4884), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_when] = ACTIONS(4882), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_throw] = ACTIONS(4882), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_COLON_COLON] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_PERCENT_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4884), + [anon_sym_is] = ACTIONS(4882), + [anon_sym_BANGis] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4882), + [anon_sym_as_QMARK] = ACTIONS(4884), + [anon_sym_PLUS_PLUS] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4884), + [anon_sym_suspend] = ACTIONS(4882), + [anon_sym_sealed] = ACTIONS(4882), + [anon_sym_annotation] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4882), + [anon_sym_inner] = ACTIONS(4882), + [anon_sym_value] = ACTIONS(4882), + [anon_sym_override] = ACTIONS(4882), + [anon_sym_lateinit] = ACTIONS(4882), + [anon_sym_public] = ACTIONS(4882), + [anon_sym_private] = ACTIONS(4882), + [anon_sym_internal] = ACTIONS(4882), + [anon_sym_protected] = ACTIONS(4882), + [anon_sym_tailrec] = ACTIONS(4882), + [anon_sym_operator] = ACTIONS(4882), + [anon_sym_infix] = ACTIONS(4882), + [anon_sym_inline] = ACTIONS(4882), + [anon_sym_external] = ACTIONS(4882), + [sym_property_modifier] = ACTIONS(4882), + [anon_sym_abstract] = ACTIONS(4882), + [anon_sym_final] = ACTIONS(4882), + [anon_sym_open] = ACTIONS(4882), + [anon_sym_vararg] = ACTIONS(4882), + [anon_sym_noinline] = ACTIONS(4882), + [anon_sym_crossinline] = ACTIONS(4882), + [anon_sym_expect] = ACTIONS(4882), + [anon_sym_actual] = ACTIONS(4882), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4884), + [anon_sym_continue_AT] = ACTIONS(4884), + [anon_sym_break_AT] = ACTIONS(4884), + [anon_sym_this_AT] = ACTIONS(4884), + [anon_sym_super_AT] = ACTIONS(4884), + [sym_real_literal] = ACTIONS(4884), + [sym_integer_literal] = ACTIONS(4882), + [sym_hex_literal] = ACTIONS(4884), + [sym_bin_literal] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4884), + [sym__backtick_identifier] = ACTIONS(4884), + [sym__automatic_semicolon] = ACTIONS(4884), + [sym_safe_nav] = ACTIONS(4884), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4884), }, - [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), + [1042] = { + [sym__alpha_identifier] = ACTIONS(4886), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_where] = ACTIONS(4886), + [anon_sym_object] = ACTIONS(4886), + [anon_sym_fun] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_get] = ACTIONS(4886), + [anon_sym_set] = ACTIONS(4886), + [anon_sym_this] = ACTIONS(4886), + [anon_sym_super] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4888), + [anon_sym_QMARK_COLON] = ACTIONS(4888), + [anon_sym_AMP_AMP] = ACTIONS(4888), + [anon_sym_PIPE_PIPE] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_when] = ACTIONS(4886), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_throw] = ACTIONS(4886), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4888), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_PERCENT_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_BANGin] = ACTIONS(4888), + [anon_sym_is] = ACTIONS(4886), + [anon_sym_BANGis] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_as_QMARK] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4888), + [anon_sym_suspend] = ACTIONS(4886), + [anon_sym_sealed] = ACTIONS(4886), + [anon_sym_annotation] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4886), + [anon_sym_inner] = ACTIONS(4886), + [anon_sym_value] = ACTIONS(4886), + [anon_sym_override] = ACTIONS(4886), + [anon_sym_lateinit] = ACTIONS(4886), + [anon_sym_public] = ACTIONS(4886), + [anon_sym_private] = ACTIONS(4886), + [anon_sym_internal] = ACTIONS(4886), + [anon_sym_protected] = ACTIONS(4886), + [anon_sym_tailrec] = ACTIONS(4886), + [anon_sym_operator] = ACTIONS(4886), + [anon_sym_infix] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym_external] = ACTIONS(4886), + [sym_property_modifier] = ACTIONS(4886), + [anon_sym_abstract] = ACTIONS(4886), + [anon_sym_final] = ACTIONS(4886), + [anon_sym_open] = ACTIONS(4886), + [anon_sym_vararg] = ACTIONS(4886), + [anon_sym_noinline] = ACTIONS(4886), + [anon_sym_crossinline] = ACTIONS(4886), + [anon_sym_expect] = ACTIONS(4886), + [anon_sym_actual] = ACTIONS(4886), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4888), + [anon_sym_continue_AT] = ACTIONS(4888), + [anon_sym_break_AT] = ACTIONS(4888), + [anon_sym_this_AT] = ACTIONS(4888), + [anon_sym_super_AT] = ACTIONS(4888), + [sym_real_literal] = ACTIONS(4888), + [sym_integer_literal] = ACTIONS(4886), + [sym_hex_literal] = ACTIONS(4888), + [sym_bin_literal] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4888), + [sym__backtick_identifier] = ACTIONS(4888), + [sym__automatic_semicolon] = ACTIONS(4888), + [sym_safe_nav] = ACTIONS(4888), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4888), }, - [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_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_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), - [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), + [1043] = { + [sym__alpha_identifier] = ACTIONS(4890), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_where] = ACTIONS(4890), + [anon_sym_object] = ACTIONS(4890), + [anon_sym_fun] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_get] = ACTIONS(4890), + [anon_sym_set] = ACTIONS(4890), + [anon_sym_this] = ACTIONS(4890), + [anon_sym_super] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4892), + [anon_sym_QMARK_COLON] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_when] = ACTIONS(4890), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_throw] = ACTIONS(4890), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_PERCENT_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_BANGin] = ACTIONS(4892), + [anon_sym_is] = ACTIONS(4890), + [anon_sym_BANGis] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4890), + [anon_sym_as_QMARK] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4892), + [anon_sym_suspend] = ACTIONS(4890), + [anon_sym_sealed] = ACTIONS(4890), + [anon_sym_annotation] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4890), + [anon_sym_inner] = ACTIONS(4890), + [anon_sym_value] = ACTIONS(4890), + [anon_sym_override] = ACTIONS(4890), + [anon_sym_lateinit] = ACTIONS(4890), + [anon_sym_public] = ACTIONS(4890), + [anon_sym_private] = ACTIONS(4890), + [anon_sym_internal] = ACTIONS(4890), + [anon_sym_protected] = ACTIONS(4890), + [anon_sym_tailrec] = ACTIONS(4890), + [anon_sym_operator] = ACTIONS(4890), + [anon_sym_infix] = ACTIONS(4890), + [anon_sym_inline] = ACTIONS(4890), + [anon_sym_external] = ACTIONS(4890), + [sym_property_modifier] = ACTIONS(4890), + [anon_sym_abstract] = ACTIONS(4890), + [anon_sym_final] = ACTIONS(4890), + [anon_sym_open] = ACTIONS(4890), + [anon_sym_vararg] = ACTIONS(4890), + [anon_sym_noinline] = ACTIONS(4890), + [anon_sym_crossinline] = ACTIONS(4890), + [anon_sym_expect] = ACTIONS(4890), + [anon_sym_actual] = ACTIONS(4890), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4892), + [anon_sym_continue_AT] = ACTIONS(4892), + [anon_sym_break_AT] = ACTIONS(4892), + [anon_sym_this_AT] = ACTIONS(4892), + [anon_sym_super_AT] = ACTIONS(4892), + [sym_real_literal] = ACTIONS(4892), + [sym_integer_literal] = ACTIONS(4890), + [sym_hex_literal] = ACTIONS(4892), + [sym_bin_literal] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4892), + [sym__backtick_identifier] = ACTIONS(4892), + [sym__automatic_semicolon] = ACTIONS(4892), + [sym_safe_nav] = ACTIONS(4892), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4892), }, - [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), + [1044] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), }, - [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), + [1045] = { + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [1046] = { + [sym__alpha_identifier] = ACTIONS(4894), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [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(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), + [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_fun] = 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), }, - [1059] = { + [1047] = { [sym__alpha_identifier] = ACTIONS(4898), [anon_sym_AT] = ACTIONS(4900), [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), [anon_sym_as] = ACTIONS(4898), [anon_sym_EQ] = ACTIONS(4898), [anon_sym_LBRACE] = ACTIONS(4900), @@ -170866,7 +166238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -170957,222 +166328,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4900), }, - [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] = { + [1048] = { [sym__alpha_identifier] = ACTIONS(4902), [anon_sym_AT] = ACTIONS(4904), [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), [anon_sym_as] = ACTIONS(4902), [anon_sym_EQ] = ACTIONS(4902), [anon_sym_LBRACE] = ACTIONS(4904), @@ -171184,7 +166344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171275,10 +166434,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4904), }, - [1063] = { + [1049] = { [sym__alpha_identifier] = ACTIONS(4906), [anon_sym_AT] = ACTIONS(4908), [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), [anon_sym_as] = ACTIONS(4906), [anon_sym_EQ] = ACTIONS(4906), [anon_sym_LBRACE] = ACTIONS(4908), @@ -171290,7 +166450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171381,10 +166540,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4908), }, - [1064] = { + [1050] = { [sym__alpha_identifier] = ACTIONS(4910), [anon_sym_AT] = ACTIONS(4912), [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), [anon_sym_as] = ACTIONS(4910), [anon_sym_EQ] = ACTIONS(4910), [anon_sym_LBRACE] = ACTIONS(4912), @@ -171396,7 +166556,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171487,10 +166646,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4912), }, - [1065] = { + [1051] = { [sym__alpha_identifier] = ACTIONS(4914), [anon_sym_AT] = ACTIONS(4916), [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), [anon_sym_as] = ACTIONS(4914), [anon_sym_EQ] = ACTIONS(4914), [anon_sym_LBRACE] = ACTIONS(4916), @@ -171502,7 +166662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171593,10 +166752,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4916), }, - [1066] = { + [1052] = { [sym__alpha_identifier] = ACTIONS(4918), [anon_sym_AT] = ACTIONS(4920), [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), [anon_sym_as] = ACTIONS(4918), [anon_sym_EQ] = ACTIONS(4918), [anon_sym_LBRACE] = ACTIONS(4920), @@ -171608,7 +166768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171699,10 +166858,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4920), }, - [1067] = { + [1053] = { [sym__alpha_identifier] = ACTIONS(4922), [anon_sym_AT] = ACTIONS(4924), [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), [anon_sym_as] = ACTIONS(4922), [anon_sym_EQ] = ACTIONS(4922), [anon_sym_LBRACE] = ACTIONS(4924), @@ -171714,7 +166874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -171805,116 +166964,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4924), }, - [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), + [1054] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), }, - [1069] = { + [1055] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), + }, + [1056] = { [sym__alpha_identifier] = ACTIONS(4926), [anon_sym_AT] = ACTIONS(4928), [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), [anon_sym_as] = ACTIONS(4926), [anon_sym_EQ] = ACTIONS(4926), [anon_sym_LBRACE] = ACTIONS(4928), @@ -171926,7 +167192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -172017,10 +167282,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4928), }, - [1070] = { + [1057] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [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(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), + }, + [1058] = { [sym__alpha_identifier] = ACTIONS(4930), [anon_sym_AT] = ACTIONS(4932), [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), [anon_sym_as] = ACTIONS(4930), [anon_sym_EQ] = ACTIONS(4930), [anon_sym_LBRACE] = ACTIONS(4932), @@ -172032,7 +167404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -172123,752 +167494,859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4932), }, - [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_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_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4936), + [1059] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1060] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), }, - [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), + [1061] = { + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_fun] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_this] = ACTIONS(3978), + [anon_sym_super] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3978), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_null] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3980), + [anon_sym_continue_AT] = ACTIONS(3980), + [anon_sym_break_AT] = ACTIONS(3980), + [anon_sym_this_AT] = ACTIONS(3980), + [anon_sym_super_AT] = ACTIONS(3980), + [sym_real_literal] = ACTIONS(3980), + [sym_integer_literal] = ACTIONS(3978), + [sym_hex_literal] = ACTIONS(3980), + [sym_bin_literal] = ACTIONS(3980), + [anon_sym_true] = ACTIONS(3978), + [anon_sym_false] = ACTIONS(3978), + [anon_sym_SQUOTE] = ACTIONS(3980), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3980), }, - [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), + [1062] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [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_object] = ACTIONS(4940), + [anon_sym_fun] = 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), }, - [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), + [1063] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [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_object] = ACTIONS(4944), + [anon_sym_fun] = 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), }, - [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), + [1064] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [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_object] = ACTIONS(4948), + [anon_sym_fun] = 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), }, - [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), + [1065] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [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_object] = ACTIONS(4952), + [anon_sym_fun] = 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), + }, + [1066] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), [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), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [1078] = { + [1067] = { [sym__alpha_identifier] = ACTIONS(4958), [anon_sym_AT] = ACTIONS(4960), [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), [anon_sym_as] = ACTIONS(4958), [anon_sym_EQ] = ACTIONS(4958), [anon_sym_LBRACE] = ACTIONS(4960), @@ -172880,7 +168358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -172971,10 +168448,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4960), }, - [1079] = { + [1068] = { [sym__alpha_identifier] = ACTIONS(4962), [anon_sym_AT] = ACTIONS(4964), [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), [anon_sym_as] = ACTIONS(4962), [anon_sym_EQ] = ACTIONS(4962), [anon_sym_LBRACE] = ACTIONS(4964), @@ -172986,7 +168464,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -173077,222 +168554,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4964), }, - [1080] = { - [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(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_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), - }, - [1082] = { + [1069] = { [sym__alpha_identifier] = ACTIONS(4966), [anon_sym_AT] = ACTIONS(4968), [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), [anon_sym_as] = ACTIONS(4966), [anon_sym_EQ] = ACTIONS(4966), [anon_sym_LBRACE] = ACTIONS(4968), @@ -173304,7 +168570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -173395,10 +168660,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4968), }, - [1083] = { + [1070] = { + [sym__alpha_identifier] = ACTIONS(4200), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_as] = ACTIONS(4200), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4200), + [anon_sym_where] = ACTIONS(4200), + [anon_sym_object] = ACTIONS(4200), + [anon_sym_fun] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4200), + [anon_sym_set] = ACTIONS(4200), + [anon_sym_this] = ACTIONS(4200), + [anon_sym_super] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4200), + [sym_label] = ACTIONS(4200), + [anon_sym_in] = ACTIONS(4200), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_null] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_else] = ACTIONS(4200), + [anon_sym_when] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4200), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4200), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_suspend] = ACTIONS(4200), + [anon_sym_sealed] = ACTIONS(4200), + [anon_sym_annotation] = ACTIONS(4200), + [anon_sym_data] = ACTIONS(4200), + [anon_sym_inner] = ACTIONS(4200), + [anon_sym_value] = ACTIONS(4200), + [anon_sym_override] = ACTIONS(4200), + [anon_sym_lateinit] = ACTIONS(4200), + [anon_sym_public] = ACTIONS(4200), + [anon_sym_private] = ACTIONS(4200), + [anon_sym_internal] = ACTIONS(4200), + [anon_sym_protected] = ACTIONS(4200), + [anon_sym_tailrec] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_infix] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym_external] = ACTIONS(4200), + [sym_property_modifier] = ACTIONS(4200), + [anon_sym_abstract] = ACTIONS(4200), + [anon_sym_final] = ACTIONS(4200), + [anon_sym_open] = ACTIONS(4200), + [anon_sym_vararg] = ACTIONS(4200), + [anon_sym_noinline] = ACTIONS(4200), + [anon_sym_crossinline] = ACTIONS(4200), + [anon_sym_expect] = ACTIONS(4200), + [anon_sym_actual] = ACTIONS(4200), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4200), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4200), + [anon_sym_false] = ACTIONS(4200), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), + }, + [1071] = { [sym__alpha_identifier] = ACTIONS(4970), [anon_sym_AT] = ACTIONS(4972), [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), [anon_sym_as] = ACTIONS(4970), [anon_sym_EQ] = ACTIONS(4970), [anon_sym_LBRACE] = ACTIONS(4972), @@ -173410,7 +168782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -173501,116 +168872,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4972), }, - [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), - }, - [1085] = { + [1072] = { [sym__alpha_identifier] = ACTIONS(4974), [anon_sym_AT] = ACTIONS(4976), [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), [anon_sym_as] = ACTIONS(4974), [anon_sym_EQ] = ACTIONS(4974), [anon_sym_LBRACE] = ACTIONS(4976), @@ -173622,7 +168888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -173637,7 +168902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4976), [anon_sym_null] = ACTIONS(4974), [anon_sym_if] = ACTIONS(4974), - [anon_sym_else] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4978), [anon_sym_when] = ACTIONS(4974), [anon_sym_try] = ACTIONS(4974), [anon_sym_throw] = ACTIONS(4974), @@ -173713,132 +168978,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4976), }, - [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), + [1073] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_SEMI] = ACTIONS(4980), - [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(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), + [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(4978), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(3682), + [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), }, - [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), + [1074] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -173847,52 +169112,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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(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_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -173921,136 +169186,242 @@ 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(3682), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1075] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [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_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), [anon_sym_set] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4986), - [sym_label] = ACTIONS(3670), + [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), + }, + [1076] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [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_object] = ACTIONS(4988), + [anon_sym_fun] = 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(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), + [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), }, - [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), + [1077] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -174059,52 +169430,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -174133,862 +169504,2029 @@ 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(1804), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1078] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), + }, + [1079] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_object] = ACTIONS(4994), + [anon_sym_fun] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_this] = ACTIONS(4994), + [anon_sym_super] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), [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), + [anon_sym_null] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_when] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4994), + [anon_sym_throw] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4994), + [anon_sym_continue] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(4996), + [anon_sym_DASH_EQ] = ACTIONS(4996), + [anon_sym_STAR_EQ] = ACTIONS(4996), + [anon_sym_SLASH_EQ] = ACTIONS(4996), + [anon_sym_PERCENT_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4996), + [anon_sym_continue_AT] = ACTIONS(4996), + [anon_sym_break_AT] = ACTIONS(4996), + [anon_sym_this_AT] = ACTIONS(4996), + [anon_sym_super_AT] = ACTIONS(4996), + [sym_real_literal] = ACTIONS(4996), + [sym_integer_literal] = ACTIONS(4994), + [sym_hex_literal] = ACTIONS(4996), + [sym_bin_literal] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4994), + [anon_sym_false] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4996), }, - [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(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), + [1080] = { + [sym__alpha_identifier] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_object] = ACTIONS(5001), + [anon_sym_fun] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_get] = ACTIONS(5001), + [anon_sym_set] = ACTIONS(5001), + [anon_sym_this] = ACTIONS(5001), + [anon_sym_super] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(5001), + [sym_label] = ACTIONS(5001), + [anon_sym_in] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_QMARK_COLON] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_null] = ACTIONS(5001), + [anon_sym_if] = ACTIONS(5001), + [anon_sym_else] = ACTIONS(5001), + [anon_sym_when] = ACTIONS(5001), + [anon_sym_try] = ACTIONS(5001), + [anon_sym_throw] = ACTIONS(5001), + [anon_sym_return] = ACTIONS(5001), + [anon_sym_continue] = ACTIONS(5001), + [anon_sym_break] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5003), + [anon_sym_PLUS_EQ] = ACTIONS(5003), + [anon_sym_DASH_EQ] = ACTIONS(5003), + [anon_sym_STAR_EQ] = ACTIONS(5003), + [anon_sym_SLASH_EQ] = ACTIONS(5003), + [anon_sym_PERCENT_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_BANGin] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_BANGis] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_as_QMARK] = ACTIONS(5003), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5001), + [anon_sym_BANG_BANG] = ACTIONS(5003), + [anon_sym_suspend] = ACTIONS(5001), + [anon_sym_sealed] = ACTIONS(5001), + [anon_sym_annotation] = ACTIONS(5001), + [anon_sym_data] = ACTIONS(5001), + [anon_sym_inner] = ACTIONS(5001), + [anon_sym_value] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_lateinit] = ACTIONS(5001), + [anon_sym_public] = ACTIONS(5001), + [anon_sym_private] = ACTIONS(5001), + [anon_sym_internal] = ACTIONS(5001), + [anon_sym_protected] = ACTIONS(5001), + [anon_sym_tailrec] = ACTIONS(5001), + [anon_sym_operator] = ACTIONS(5001), + [anon_sym_infix] = ACTIONS(5001), + [anon_sym_inline] = ACTIONS(5001), + [anon_sym_external] = ACTIONS(5001), + [sym_property_modifier] = ACTIONS(5001), + [anon_sym_abstract] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_open] = ACTIONS(5001), + [anon_sym_vararg] = ACTIONS(5001), + [anon_sym_noinline] = ACTIONS(5001), + [anon_sym_crossinline] = ACTIONS(5001), + [anon_sym_expect] = ACTIONS(5001), + [anon_sym_actual] = ACTIONS(5001), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5003), + [anon_sym_continue_AT] = ACTIONS(5003), + [anon_sym_break_AT] = ACTIONS(5003), + [anon_sym_this_AT] = ACTIONS(5003), + [anon_sym_super_AT] = ACTIONS(5003), + [sym_real_literal] = ACTIONS(5003), + [sym_integer_literal] = ACTIONS(5001), + [sym_hex_literal] = ACTIONS(5003), + [sym_bin_literal] = ACTIONS(5003), + [anon_sym_true] = ACTIONS(5001), + [anon_sym_false] = ACTIONS(5001), + [anon_sym_SQUOTE] = ACTIONS(5003), + [sym__backtick_identifier] = ACTIONS(5003), + [sym__automatic_semicolon] = ACTIONS(5003), + [sym_safe_nav] = ACTIONS(5003), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5003), + }, + [1081] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_object] = ACTIONS(5005), + [anon_sym_fun] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_this] = ACTIONS(5005), + [anon_sym_super] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_when] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_throw] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5007), + [anon_sym_continue_AT] = ACTIONS(5007), + [anon_sym_break_AT] = ACTIONS(5007), + [anon_sym_this_AT] = ACTIONS(5007), + [anon_sym_super_AT] = ACTIONS(5007), + [sym_real_literal] = ACTIONS(5007), + [sym_integer_literal] = ACTIONS(5005), + [sym_hex_literal] = ACTIONS(5007), + [sym_bin_literal] = ACTIONS(5007), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [anon_sym_SQUOTE] = ACTIONS(5007), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5007), + }, + [1082] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_object] = ACTIONS(4994), + [anon_sym_fun] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_this] = ACTIONS(4994), + [anon_sym_super] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), [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), + [anon_sym_null] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_when] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4994), + [anon_sym_throw] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4994), + [anon_sym_continue] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_PLUS_EQ] = ACTIONS(5011), + [anon_sym_DASH_EQ] = ACTIONS(5011), + [anon_sym_STAR_EQ] = ACTIONS(5011), + [anon_sym_SLASH_EQ] = ACTIONS(5011), + [anon_sym_PERCENT_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4996), + [anon_sym_continue_AT] = ACTIONS(4996), + [anon_sym_break_AT] = ACTIONS(4996), + [anon_sym_this_AT] = ACTIONS(4996), + [anon_sym_super_AT] = ACTIONS(4996), + [sym_real_literal] = ACTIONS(4996), + [sym_integer_literal] = ACTIONS(4994), + [sym_hex_literal] = ACTIONS(4996), + [sym_bin_literal] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4994), + [anon_sym_false] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4996), + }, + [1083] = { + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(4000), + [anon_sym_STAR_EQ] = ACTIONS(4000), + [anon_sym_SLASH_EQ] = ACTIONS(4000), + [anon_sym_PERCENT_EQ] = ACTIONS(4000), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4000), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4000), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), + }, + [1084] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_as] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_where] = ACTIONS(5013), + [anon_sym_object] = ACTIONS(5013), + [anon_sym_fun] = ACTIONS(5013), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_get] = ACTIONS(5013), + [anon_sym_set] = ACTIONS(5013), + [anon_sym_this] = ACTIONS(5013), + [anon_sym_super] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [sym_label] = ACTIONS(5013), + [anon_sym_in] = ACTIONS(5013), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_QMARK_COLON] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(5013), + [anon_sym_if] = ACTIONS(5013), + [anon_sym_else] = ACTIONS(5013), + [anon_sym_when] = ACTIONS(5013), + [anon_sym_try] = ACTIONS(5013), + [anon_sym_throw] = ACTIONS(5013), + [anon_sym_return] = ACTIONS(5013), + [anon_sym_continue] = ACTIONS(5013), + [anon_sym_break] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(5015), + [anon_sym_PLUS_EQ] = ACTIONS(5015), + [anon_sym_DASH_EQ] = ACTIONS(5015), + [anon_sym_STAR_EQ] = ACTIONS(5015), + [anon_sym_SLASH_EQ] = ACTIONS(5015), + [anon_sym_PERCENT_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_BANGin] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5013), + [anon_sym_BANGis] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5013), + [anon_sym_as_QMARK] = ACTIONS(5015), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_BANG_BANG] = ACTIONS(5015), + [anon_sym_suspend] = ACTIONS(5013), + [anon_sym_sealed] = ACTIONS(5013), + [anon_sym_annotation] = ACTIONS(5013), + [anon_sym_data] = ACTIONS(5013), + [anon_sym_inner] = ACTIONS(5013), + [anon_sym_value] = ACTIONS(5013), + [anon_sym_override] = ACTIONS(5013), + [anon_sym_lateinit] = ACTIONS(5013), + [anon_sym_public] = ACTIONS(5013), + [anon_sym_private] = ACTIONS(5013), + [anon_sym_internal] = ACTIONS(5013), + [anon_sym_protected] = ACTIONS(5013), + [anon_sym_tailrec] = ACTIONS(5013), + [anon_sym_operator] = ACTIONS(5013), + [anon_sym_infix] = ACTIONS(5013), + [anon_sym_inline] = ACTIONS(5013), + [anon_sym_external] = ACTIONS(5013), + [sym_property_modifier] = ACTIONS(5013), + [anon_sym_abstract] = ACTIONS(5013), + [anon_sym_final] = ACTIONS(5013), + [anon_sym_open] = ACTIONS(5013), + [anon_sym_vararg] = ACTIONS(5013), + [anon_sym_noinline] = ACTIONS(5013), + [anon_sym_crossinline] = ACTIONS(5013), + [anon_sym_expect] = ACTIONS(5013), + [anon_sym_actual] = ACTIONS(5013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5015), + [anon_sym_continue_AT] = ACTIONS(5015), + [anon_sym_break_AT] = ACTIONS(5015), + [anon_sym_this_AT] = ACTIONS(5015), + [anon_sym_super_AT] = ACTIONS(5015), + [sym_real_literal] = ACTIONS(5015), + [sym_integer_literal] = ACTIONS(5013), + [sym_hex_literal] = ACTIONS(5015), + [sym_bin_literal] = ACTIONS(5015), + [anon_sym_true] = ACTIONS(5013), + [anon_sym_false] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5015), + [sym__backtick_identifier] = ACTIONS(5015), + [sym__automatic_semicolon] = ACTIONS(5015), + [sym_safe_nav] = ACTIONS(5015), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5015), + }, + [1085] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_as] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5017), + [anon_sym_object] = ACTIONS(5017), + [anon_sym_fun] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_get] = ACTIONS(5017), + [anon_sym_set] = ACTIONS(5017), + [anon_sym_this] = ACTIONS(5017), + [anon_sym_super] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [sym_label] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_QMARK_COLON] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_null] = ACTIONS(5017), + [anon_sym_if] = ACTIONS(5017), + [anon_sym_else] = ACTIONS(5017), + [anon_sym_when] = ACTIONS(5017), + [anon_sym_try] = ACTIONS(5017), + [anon_sym_throw] = ACTIONS(5017), + [anon_sym_return] = ACTIONS(5017), + [anon_sym_continue] = ACTIONS(5017), + [anon_sym_break] = ACTIONS(5017), + [anon_sym_COLON_COLON] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_BANGin] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5017), + [anon_sym_BANGis] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5017), + [anon_sym_as_QMARK] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_BANG_BANG] = ACTIONS(5019), + [anon_sym_suspend] = ACTIONS(5017), + [anon_sym_sealed] = ACTIONS(5017), + [anon_sym_annotation] = ACTIONS(5017), + [anon_sym_data] = ACTIONS(5017), + [anon_sym_inner] = ACTIONS(5017), + [anon_sym_value] = ACTIONS(5017), + [anon_sym_override] = ACTIONS(5017), + [anon_sym_lateinit] = ACTIONS(5017), + [anon_sym_public] = ACTIONS(5017), + [anon_sym_private] = ACTIONS(5017), + [anon_sym_internal] = ACTIONS(5017), + [anon_sym_protected] = ACTIONS(5017), + [anon_sym_tailrec] = ACTIONS(5017), + [anon_sym_operator] = ACTIONS(5017), + [anon_sym_infix] = ACTIONS(5017), + [anon_sym_inline] = ACTIONS(5017), + [anon_sym_external] = ACTIONS(5017), + [sym_property_modifier] = ACTIONS(5017), + [anon_sym_abstract] = ACTIONS(5017), + [anon_sym_final] = ACTIONS(5017), + [anon_sym_open] = ACTIONS(5017), + [anon_sym_vararg] = ACTIONS(5017), + [anon_sym_noinline] = ACTIONS(5017), + [anon_sym_crossinline] = ACTIONS(5017), + [anon_sym_expect] = ACTIONS(5017), + [anon_sym_actual] = ACTIONS(5017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5019), + [anon_sym_continue_AT] = ACTIONS(5019), + [anon_sym_break_AT] = ACTIONS(5019), + [anon_sym_this_AT] = ACTIONS(5019), + [anon_sym_super_AT] = ACTIONS(5019), + [sym_real_literal] = ACTIONS(5019), + [sym_integer_literal] = ACTIONS(5017), + [sym_hex_literal] = ACTIONS(5019), + [sym_bin_literal] = ACTIONS(5019), + [anon_sym_true] = ACTIONS(5017), + [anon_sym_false] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5019), + [sym__backtick_identifier] = ACTIONS(5019), + [sym__automatic_semicolon] = ACTIONS(5019), + [sym_safe_nav] = ACTIONS(5019), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5019), + }, + [1086] = { + [sym_class_body] = STATE(1131), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [1087] = { + [sym__alpha_identifier] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1616), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1616), + [anon_sym_set] = ACTIONS(1616), + [anon_sym_this] = ACTIONS(1616), + [anon_sym_super] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [sym_label] = ACTIONS(1616), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(1616), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_throw] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1616), + [anon_sym_inner] = ACTIONS(1616), + [anon_sym_value] = ACTIONS(1616), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1616), + [anon_sym_actual] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1614), + [anon_sym_continue_AT] = ACTIONS(1614), + [anon_sym_break_AT] = ACTIONS(1614), + [anon_sym_this_AT] = ACTIONS(1614), + [anon_sym_super_AT] = ACTIONS(1614), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1616), + [sym_hex_literal] = ACTIONS(1614), + [sym_bin_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1614), + [sym__backtick_identifier] = ACTIONS(1614), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1614), + }, + [1088] = { + [sym__alpha_identifier] = ACTIONS(5023), + [anon_sym_AT] = ACTIONS(5025), + [anon_sym_LBRACK] = ACTIONS(5025), + [anon_sym_DOT] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5025), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5023), + [anon_sym_GT] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_object] = ACTIONS(5023), + [anon_sym_fun] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(5023), + [anon_sym_set] = ACTIONS(5023), + [anon_sym_this] = ACTIONS(5023), + [anon_sym_super] = ACTIONS(5023), + [anon_sym_STAR] = ACTIONS(5023), + [sym_label] = ACTIONS(5023), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_QMARK_COLON] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_if] = ACTIONS(5023), + [anon_sym_else] = ACTIONS(5023), + [anon_sym_when] = ACTIONS(5023), + [anon_sym_try] = ACTIONS(5023), + [anon_sym_throw] = ACTIONS(5023), + [anon_sym_return] = ACTIONS(5023), + [anon_sym_continue] = ACTIONS(5023), + [anon_sym_break] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(5025), + [anon_sym_PLUS_EQ] = ACTIONS(5025), + [anon_sym_DASH_EQ] = ACTIONS(5025), + [anon_sym_STAR_EQ] = ACTIONS(5025), + [anon_sym_SLASH_EQ] = ACTIONS(5025), + [anon_sym_PERCENT_EQ] = ACTIONS(5025), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), + [anon_sym_LT_EQ] = ACTIONS(5025), + [anon_sym_GT_EQ] = ACTIONS(5025), + [anon_sym_BANGin] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_BANGis] = ACTIONS(5025), + [anon_sym_PLUS] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_as_QMARK] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5023), + [anon_sym_BANG_BANG] = ACTIONS(5025), + [anon_sym_suspend] = ACTIONS(5023), + [anon_sym_sealed] = ACTIONS(5023), + [anon_sym_annotation] = ACTIONS(5023), + [anon_sym_data] = ACTIONS(5023), + [anon_sym_inner] = ACTIONS(5023), + [anon_sym_value] = ACTIONS(5023), + [anon_sym_override] = ACTIONS(5023), + [anon_sym_lateinit] = ACTIONS(5023), + [anon_sym_public] = ACTIONS(5023), + [anon_sym_private] = ACTIONS(5023), + [anon_sym_internal] = ACTIONS(5023), + [anon_sym_protected] = ACTIONS(5023), + [anon_sym_tailrec] = ACTIONS(5023), + [anon_sym_operator] = ACTIONS(5023), + [anon_sym_infix] = ACTIONS(5023), + [anon_sym_inline] = ACTIONS(5023), + [anon_sym_external] = ACTIONS(5023), + [sym_property_modifier] = ACTIONS(5023), + [anon_sym_abstract] = ACTIONS(5023), + [anon_sym_final] = ACTIONS(5023), + [anon_sym_open] = ACTIONS(5023), + [anon_sym_vararg] = ACTIONS(5023), + [anon_sym_noinline] = ACTIONS(5023), + [anon_sym_crossinline] = ACTIONS(5023), + [anon_sym_expect] = ACTIONS(5023), + [anon_sym_actual] = ACTIONS(5023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5025), + [anon_sym_continue_AT] = ACTIONS(5025), + [anon_sym_break_AT] = ACTIONS(5025), + [anon_sym_this_AT] = ACTIONS(5025), + [anon_sym_super_AT] = ACTIONS(5025), + [sym_real_literal] = ACTIONS(5025), + [sym_integer_literal] = ACTIONS(5023), + [sym_hex_literal] = ACTIONS(5025), + [sym_bin_literal] = ACTIONS(5025), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [anon_sym_SQUOTE] = ACTIONS(5025), + [sym__backtick_identifier] = ACTIONS(5025), + [sym__automatic_semicolon] = ACTIONS(5025), + [sym_safe_nav] = ACTIONS(5025), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5025), + }, + [1089] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_object] = ACTIONS(5005), + [anon_sym_fun] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_this] = ACTIONS(5005), + [anon_sym_super] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_when] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_throw] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5007), + [anon_sym_continue_AT] = ACTIONS(5007), + [anon_sym_break_AT] = ACTIONS(5007), + [anon_sym_this_AT] = ACTIONS(5007), + [anon_sym_super_AT] = ACTIONS(5007), + [sym_real_literal] = ACTIONS(5007), + [sym_integer_literal] = ACTIONS(5005), + [sym_hex_literal] = ACTIONS(5007), + [sym_bin_literal] = ACTIONS(5007), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [anon_sym_SQUOTE] = ACTIONS(5007), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5007), + }, + [1090] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_object] = ACTIONS(5029), + [anon_sym_fun] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_this] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_if] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_when] = ACTIONS(5029), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_throw] = ACTIONS(5029), + [anon_sym_return] = ACTIONS(5029), + [anon_sym_continue] = ACTIONS(5029), + [anon_sym_break] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5031), + [anon_sym_continue_AT] = ACTIONS(5031), + [anon_sym_break_AT] = ACTIONS(5031), + [anon_sym_this_AT] = ACTIONS(5031), + [anon_sym_super_AT] = ACTIONS(5031), + [sym_real_literal] = ACTIONS(5031), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5031), + [sym_bin_literal] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5031), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5031), + }, + [1091] = { + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [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_object] = ACTIONS(4385), + [anon_sym_fun] = 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), }, [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_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_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), - [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), + [sym_class_body] = STATE(1114), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), }, [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), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(3422), + [anon_sym_sealed] = ACTIONS(3422), + [anon_sym_annotation] = ACTIONS(3422), + [anon_sym_data] = ACTIONS(3422), + [anon_sym_inner] = ACTIONS(3422), + [anon_sym_value] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_lateinit] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_internal] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_tailrec] = ACTIONS(3422), + [anon_sym_operator] = ACTIONS(3422), + [anon_sym_infix] = ACTIONS(3422), + [anon_sym_inline] = ACTIONS(3422), + [anon_sym_external] = ACTIONS(3422), + [sym_property_modifier] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_final] = ACTIONS(3422), + [anon_sym_open] = ACTIONS(3422), + [anon_sym_vararg] = ACTIONS(3422), + [anon_sym_noinline] = ACTIONS(3422), + [anon_sym_crossinline] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3422), + [anon_sym_actual] = ACTIONS(3422), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, [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_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(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_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(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), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_object] = ACTIONS(4635), + [anon_sym_fun] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_this] = ACTIONS(4635), + [anon_sym_super] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_null] = ACTIONS(4635), + [anon_sym_if] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_when] = ACTIONS(4635), + [anon_sym_try] = ACTIONS(4635), + [anon_sym_throw] = ACTIONS(4635), + [anon_sym_return] = ACTIONS(4635), + [anon_sym_continue] = ACTIONS(4635), + [anon_sym_break] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4637), + [anon_sym_continue_AT] = ACTIONS(4637), + [anon_sym_break_AT] = ACTIONS(4637), + [anon_sym_this_AT] = ACTIONS(4637), + [anon_sym_super_AT] = ACTIONS(4637), + [sym_real_literal] = ACTIONS(4637), + [sym_integer_literal] = ACTIONS(4635), + [sym_hex_literal] = ACTIONS(4637), + [sym_bin_literal] = ACTIONS(4637), + [anon_sym_true] = ACTIONS(4635), + [anon_sym_false] = ACTIONS(4635), + [anon_sym_SQUOTE] = ACTIONS(4637), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4637), }, [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), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), }, [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), + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_suspend] = ACTIONS(1822), + [anon_sym_sealed] = ACTIONS(1822), + [anon_sym_annotation] = ACTIONS(1822), + [anon_sym_data] = ACTIONS(1822), + [anon_sym_inner] = ACTIONS(1822), + [anon_sym_value] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_lateinit] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_internal] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_tailrec] = ACTIONS(1822), + [anon_sym_operator] = ACTIONS(1822), + [anon_sym_infix] = ACTIONS(1822), + [anon_sym_inline] = ACTIONS(1822), + [anon_sym_external] = ACTIONS(1822), + [sym_property_modifier] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_final] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1822), + [anon_sym_vararg] = ACTIONS(1822), + [anon_sym_noinline] = ACTIONS(1822), + [anon_sym_crossinline] = ACTIONS(1822), + [anon_sym_expect] = ACTIONS(1822), + [anon_sym_actual] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, [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_DOT] = ACTIONS(5035), [anon_sym_as] = ACTIONS(5035), [anon_sym_EQ] = ACTIONS(5035), [anon_sym_LBRACE] = ACTIONS(5037), @@ -175000,7 +171538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -175091,10 +171628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5037), }, - [1099] = { + [1098] = { [sym__alpha_identifier] = ACTIONS(5039), [anon_sym_AT] = ACTIONS(5041), [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5039), [anon_sym_as] = ACTIONS(5039), [anon_sym_EQ] = ACTIONS(5039), [anon_sym_LBRACE] = ACTIONS(5041), @@ -175106,7 +171644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -175197,116 +171734,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1099] = { + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), }, - [1101] = { + [1100] = { [sym__alpha_identifier] = ACTIONS(5043), [anon_sym_AT] = ACTIONS(5045), [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_DOT] = ACTIONS(5043), [anon_sym_as] = ACTIONS(5043), [anon_sym_EQ] = ACTIONS(5043), [anon_sym_LBRACE] = ACTIONS(5045), @@ -175318,7 +171856,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -175409,128 +171946,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5045), }, + [1101] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [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_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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [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), + }, [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), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(1734), + [anon_sym_sealed] = ACTIONS(1734), + [anon_sym_annotation] = ACTIONS(1734), + [anon_sym_data] = ACTIONS(1734), + [anon_sym_inner] = ACTIONS(1734), + [anon_sym_value] = ACTIONS(1734), + [anon_sym_override] = ACTIONS(1734), + [anon_sym_lateinit] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_internal] = ACTIONS(1734), + [anon_sym_protected] = ACTIONS(1734), + [anon_sym_tailrec] = ACTIONS(1734), + [anon_sym_operator] = ACTIONS(1734), + [anon_sym_infix] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_external] = ACTIONS(1734), + [sym_property_modifier] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_final] = ACTIONS(1734), + [anon_sym_open] = ACTIONS(1734), + [anon_sym_vararg] = ACTIONS(1734), + [anon_sym_noinline] = ACTIONS(1734), + [anon_sym_crossinline] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, [1103] = { [sym__alpha_identifier] = ACTIONS(5047), [anon_sym_AT] = ACTIONS(5049), [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), [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_LPAREN] = ACTIONS(5051), [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), @@ -175622,1069 +172265,858 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), [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), + [anon_sym_get] = ACTIONS(4830), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, [1105] = { - [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(5024), - [anon_sym_AT] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_as] = ACTIONS(5024), + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_as] = ACTIONS(5055), [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_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_object] = ACTIONS(5055), + [anon_sym_fun] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_get] = ACTIONS(5055), + [anon_sym_set] = ACTIONS(5055), + [anon_sym_this] = ACTIONS(5055), + [anon_sym_super] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [sym_label] = ACTIONS(5055), + [anon_sym_in] = ACTIONS(5055), + [anon_sym_DOT_DOT] = ACTIONS(5057), + [anon_sym_QMARK_COLON] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_null] = ACTIONS(5055), + [anon_sym_if] = ACTIONS(5055), + [anon_sym_else] = ACTIONS(5055), + [anon_sym_when] = ACTIONS(5055), + [anon_sym_try] = ACTIONS(5055), + [anon_sym_throw] = ACTIONS(5055), + [anon_sym_return] = ACTIONS(5055), + [anon_sym_continue] = ACTIONS(5055), + [anon_sym_break] = ACTIONS(5055), + [anon_sym_COLON_COLON] = ACTIONS(5057), [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), - [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), + [anon_sym_BANG_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_BANGin] = ACTIONS(5057), + [anon_sym_is] = ACTIONS(5055), + [anon_sym_BANGis] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_as_QMARK] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5055), + [anon_sym_BANG_BANG] = ACTIONS(5057), + [anon_sym_suspend] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_annotation] = ACTIONS(5055), + [anon_sym_data] = ACTIONS(5055), + [anon_sym_inner] = ACTIONS(5055), + [anon_sym_value] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_lateinit] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_tailrec] = ACTIONS(5055), + [anon_sym_operator] = ACTIONS(5055), + [anon_sym_infix] = ACTIONS(5055), + [anon_sym_inline] = ACTIONS(5055), + [anon_sym_external] = ACTIONS(5055), + [sym_property_modifier] = ACTIONS(5055), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_open] = ACTIONS(5055), + [anon_sym_vararg] = ACTIONS(5055), + [anon_sym_noinline] = ACTIONS(5055), + [anon_sym_crossinline] = ACTIONS(5055), + [anon_sym_expect] = ACTIONS(5055), + [anon_sym_actual] = ACTIONS(5055), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5057), + [anon_sym_continue_AT] = ACTIONS(5057), + [anon_sym_break_AT] = ACTIONS(5057), + [anon_sym_this_AT] = ACTIONS(5057), + [anon_sym_super_AT] = ACTIONS(5057), + [sym_real_literal] = ACTIONS(5057), + [sym_integer_literal] = ACTIONS(5055), + [sym_hex_literal] = ACTIONS(5057), + [sym_bin_literal] = ACTIONS(5057), + [anon_sym_true] = ACTIONS(5055), + [anon_sym_false] = ACTIONS(5055), + [anon_sym_SQUOTE] = ACTIONS(5057), + [sym__backtick_identifier] = ACTIONS(5057), + [sym__automatic_semicolon] = ACTIONS(5057), + [sym_safe_nav] = ACTIONS(5057), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5057), + }, + [1106] = { + [sym__alpha_identifier] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [sym_label] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_QMARK_COLON] = ACTIONS(3142), + [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(3142), + [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(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_as_QMARK] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(3142), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3140), + [anon_sym_inner] = ACTIONS(3140), + [anon_sym_value] = ACTIONS(3140), + [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(3140), + [anon_sym_actual] = ACTIONS(3140), + [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(3142), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3142), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), }, [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), + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [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(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, [1108] = { - [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), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [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_object] = ACTIONS(3276), + [anon_sym_fun] = 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), }, [1109] = { - [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), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(3338), + [anon_sym_sealed] = ACTIONS(3338), + [anon_sym_annotation] = ACTIONS(3338), + [anon_sym_data] = ACTIONS(3338), + [anon_sym_inner] = ACTIONS(3338), + [anon_sym_value] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_lateinit] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_internal] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_tailrec] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_infix] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym_external] = ACTIONS(3338), + [sym_property_modifier] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_final] = ACTIONS(3338), + [anon_sym_open] = ACTIONS(3338), + [anon_sym_vararg] = ACTIONS(3338), + [anon_sym_noinline] = ACTIONS(3338), + [anon_sym_crossinline] = ACTIONS(3338), + [anon_sym_expect] = ACTIONS(3338), + [anon_sym_actual] = ACTIONS(3338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, [1110] = { - [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), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), }, [1111] = { - [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), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [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(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, [1112] = { - [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_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(5067), [anon_sym_AT] = ACTIONS(5069), [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), [anon_sym_as] = ACTIONS(5067), [anon_sym_EQ] = ACTIONS(5067), [anon_sym_LBRACE] = ACTIONS(5069), @@ -176696,7 +173128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -176787,328 +173218,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5069), }, - [1115] = { - [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(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(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), + [1113] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), [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), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), }, - [1118] = { + [1114] = { [sym__alpha_identifier] = ACTIONS(5077), [anon_sym_AT] = ACTIONS(5079), [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), [anon_sym_as] = ACTIONS(5077), [anon_sym_EQ] = ACTIONS(5077), [anon_sym_LBRACE] = ACTIONS(5079), @@ -177120,7 +173340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -177211,328 +173430,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5079), }, - [1119] = { - [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(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(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), + [1115] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_object] = ACTIONS(5081), + [anon_sym_fun] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_this] = ACTIONS(5081), + [anon_sym_super] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [sym_label] = ACTIONS(5081), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_null] = ACTIONS(5081), + [anon_sym_if] = ACTIONS(5081), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_when] = ACTIONS(5081), + [anon_sym_try] = ACTIONS(5081), + [anon_sym_throw] = ACTIONS(5081), + [anon_sym_return] = ACTIONS(5081), + [anon_sym_continue] = ACTIONS(5081), + [anon_sym_break] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_suspend] = ACTIONS(5081), + [anon_sym_sealed] = ACTIONS(5081), + [anon_sym_annotation] = ACTIONS(5081), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_override] = ACTIONS(5081), + [anon_sym_lateinit] = ACTIONS(5081), + [anon_sym_public] = ACTIONS(5081), + [anon_sym_private] = ACTIONS(5081), + [anon_sym_internal] = ACTIONS(5081), + [anon_sym_protected] = ACTIONS(5081), + [anon_sym_tailrec] = ACTIONS(5081), + [anon_sym_operator] = ACTIONS(5081), + [anon_sym_infix] = ACTIONS(5081), + [anon_sym_inline] = ACTIONS(5081), + [anon_sym_external] = ACTIONS(5081), + [sym_property_modifier] = ACTIONS(5081), + [anon_sym_abstract] = ACTIONS(5081), + [anon_sym_final] = ACTIONS(5081), + [anon_sym_open] = ACTIONS(5081), + [anon_sym_vararg] = ACTIONS(5081), + [anon_sym_noinline] = ACTIONS(5081), + [anon_sym_crossinline] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5083), + [anon_sym_continue_AT] = ACTIONS(5083), + [anon_sym_break_AT] = ACTIONS(5083), + [anon_sym_this_AT] = ACTIONS(5083), + [anon_sym_super_AT] = ACTIONS(5083), + [sym_real_literal] = ACTIONS(5083), + [sym_integer_literal] = ACTIONS(5081), + [sym_hex_literal] = ACTIONS(5083), + [sym_bin_literal] = ACTIONS(5083), + [anon_sym_true] = ACTIONS(5081), + [anon_sym_false] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5083), + [sym__backtick_identifier] = ACTIONS(5083), + [sym__automatic_semicolon] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5083), }, - [1122] = { + [1116] = { [sym__alpha_identifier] = ACTIONS(5085), [anon_sym_AT] = ACTIONS(5087), [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), [anon_sym_as] = ACTIONS(5085), [anon_sym_EQ] = ACTIONS(5085), [anon_sym_LBRACE] = ACTIONS(5087), @@ -177544,7 +173552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -177635,222 +173642,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5087), }, - [1123] = { - [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), + [1117] = { + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [1124] = { - [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), + [1118] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), }, - [1125] = { + [1119] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), [anon_sym_as] = ACTIONS(5089), [anon_sym_EQ] = ACTIONS(5089), [anon_sym_LBRACE] = ACTIONS(5091), @@ -177862,7 +173870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -177953,1812 +173960,1177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5091), }, - [1126] = { - [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_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(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(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_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), - [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), - }, - [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), + [1120] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [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_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_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_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_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_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), }, - [1131] = { + [1121] = { [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_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), [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_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), [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_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), [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_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [1122] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(5097), + [anon_sym_LBRACE] = ACTIONS(5099), + [anon_sym_RBRACE] = ACTIONS(5099), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_object] = ACTIONS(5097), + [anon_sym_fun] = ACTIONS(5097), + [anon_sym_SEMI] = ACTIONS(5099), + [anon_sym_get] = ACTIONS(5097), + [anon_sym_set] = ACTIONS(5097), + [anon_sym_this] = ACTIONS(5097), + [anon_sym_super] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5099), + [anon_sym_QMARK_COLON] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5099), + [anon_sym_PIPE_PIPE] = ACTIONS(5099), + [anon_sym_null] = ACTIONS(5097), + [anon_sym_if] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5097), + [anon_sym_when] = ACTIONS(5097), + [anon_sym_try] = ACTIONS(5097), + [anon_sym_throw] = ACTIONS(5097), + [anon_sym_return] = ACTIONS(5097), + [anon_sym_continue] = ACTIONS(5097), + [anon_sym_break] = ACTIONS(5097), + [anon_sym_COLON_COLON] = ACTIONS(5099), + [anon_sym_PLUS_EQ] = ACTIONS(5099), + [anon_sym_DASH_EQ] = ACTIONS(5099), + [anon_sym_STAR_EQ] = ACTIONS(5099), + [anon_sym_SLASH_EQ] = ACTIONS(5099), + [anon_sym_PERCENT_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), + [anon_sym_LT_EQ] = ACTIONS(5099), + [anon_sym_GT_EQ] = ACTIONS(5099), + [anon_sym_BANGin] = ACTIONS(5099), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_BANGis] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_as_QMARK] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5099), + [anon_sym_DASH_DASH] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5099), + [anon_sym_suspend] = ACTIONS(5097), + [anon_sym_sealed] = ACTIONS(5097), + [anon_sym_annotation] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5097), + [anon_sym_inner] = ACTIONS(5097), + [anon_sym_value] = ACTIONS(5097), + [anon_sym_override] = ACTIONS(5097), + [anon_sym_lateinit] = ACTIONS(5097), + [anon_sym_public] = ACTIONS(5097), + [anon_sym_private] = ACTIONS(5097), + [anon_sym_internal] = ACTIONS(5097), + [anon_sym_protected] = ACTIONS(5097), + [anon_sym_tailrec] = ACTIONS(5097), + [anon_sym_operator] = ACTIONS(5097), + [anon_sym_infix] = ACTIONS(5097), + [anon_sym_inline] = ACTIONS(5097), + [anon_sym_external] = ACTIONS(5097), + [sym_property_modifier] = ACTIONS(5097), + [anon_sym_abstract] = ACTIONS(5097), + [anon_sym_final] = ACTIONS(5097), + [anon_sym_open] = ACTIONS(5097), + [anon_sym_vararg] = ACTIONS(5097), + [anon_sym_noinline] = ACTIONS(5097), + [anon_sym_crossinline] = ACTIONS(5097), + [anon_sym_expect] = ACTIONS(5097), + [anon_sym_actual] = ACTIONS(5097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5099), + [anon_sym_continue_AT] = ACTIONS(5099), + [anon_sym_break_AT] = ACTIONS(5099), + [anon_sym_this_AT] = ACTIONS(5099), + [anon_sym_super_AT] = ACTIONS(5099), + [sym_real_literal] = ACTIONS(5099), + [sym_integer_literal] = ACTIONS(5097), + [sym_hex_literal] = ACTIONS(5099), + [sym_bin_literal] = ACTIONS(5099), + [anon_sym_true] = ACTIONS(5097), + [anon_sym_false] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5099), + [sym__backtick_identifier] = ACTIONS(5099), + [sym__automatic_semicolon] = ACTIONS(5099), + [sym_safe_nav] = ACTIONS(5099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5099), }, - [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_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_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), - [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), + [1123] = { + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [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_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, - [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), + [1124] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_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_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), - [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), }, - [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_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_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), - [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), + [1125] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_object] = ACTIONS(5101), + [anon_sym_fun] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_this] = ACTIONS(5101), + [anon_sym_super] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_null] = ACTIONS(5101), + [anon_sym_if] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_try] = ACTIONS(5101), + [anon_sym_throw] = ACTIONS(5101), + [anon_sym_return] = ACTIONS(5101), + [anon_sym_continue] = ACTIONS(5101), + [anon_sym_break] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_suspend] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_annotation] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_lateinit] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_tailrec] = ACTIONS(5101), + [anon_sym_operator] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_inline] = ACTIONS(5101), + [anon_sym_external] = ACTIONS(5101), + [sym_property_modifier] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_vararg] = ACTIONS(5101), + [anon_sym_noinline] = ACTIONS(5101), + [anon_sym_crossinline] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5103), + [anon_sym_continue_AT] = ACTIONS(5103), + [anon_sym_break_AT] = ACTIONS(5103), + [anon_sym_this_AT] = ACTIONS(5103), + [anon_sym_super_AT] = ACTIONS(5103), + [sym_real_literal] = ACTIONS(5103), + [sym_integer_literal] = ACTIONS(5101), + [sym_hex_literal] = ACTIONS(5103), + [sym_bin_literal] = ACTIONS(5103), + [anon_sym_true] = ACTIONS(5101), + [anon_sym_false] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5103), + [sym__backtick_identifier] = ACTIONS(5103), + [sym__automatic_semicolon] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5103), }, - [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), + [1126] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_LBRACE] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_object] = ACTIONS(5105), + [anon_sym_fun] = ACTIONS(5105), + [anon_sym_SEMI] = ACTIONS(5107), + [anon_sym_get] = ACTIONS(5105), + [anon_sym_set] = ACTIONS(5105), + [anon_sym_this] = ACTIONS(5105), + [anon_sym_super] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5107), + [anon_sym_QMARK_COLON] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5107), + [anon_sym_PIPE_PIPE] = ACTIONS(5107), + [anon_sym_null] = ACTIONS(5105), + [anon_sym_if] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5105), + [anon_sym_when] = ACTIONS(5105), + [anon_sym_try] = ACTIONS(5105), + [anon_sym_throw] = ACTIONS(5105), + [anon_sym_return] = ACTIONS(5105), + [anon_sym_continue] = ACTIONS(5105), + [anon_sym_break] = ACTIONS(5105), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_PLUS_EQ] = ACTIONS(5107), + [anon_sym_DASH_EQ] = ACTIONS(5107), + [anon_sym_STAR_EQ] = ACTIONS(5107), + [anon_sym_SLASH_EQ] = ACTIONS(5107), + [anon_sym_PERCENT_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), + [anon_sym_LT_EQ] = ACTIONS(5107), + [anon_sym_GT_EQ] = ACTIONS(5107), + [anon_sym_BANGin] = ACTIONS(5107), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_BANGis] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_as_QMARK] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5107), + [anon_sym_DASH_DASH] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5107), + [anon_sym_suspend] = ACTIONS(5105), + [anon_sym_sealed] = ACTIONS(5105), + [anon_sym_annotation] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5105), + [anon_sym_inner] = ACTIONS(5105), + [anon_sym_value] = ACTIONS(5105), + [anon_sym_override] = ACTIONS(5105), + [anon_sym_lateinit] = ACTIONS(5105), + [anon_sym_public] = ACTIONS(5105), + [anon_sym_private] = ACTIONS(5105), + [anon_sym_internal] = ACTIONS(5105), + [anon_sym_protected] = ACTIONS(5105), + [anon_sym_tailrec] = ACTIONS(5105), + [anon_sym_operator] = ACTIONS(5105), + [anon_sym_infix] = ACTIONS(5105), + [anon_sym_inline] = ACTIONS(5105), + [anon_sym_external] = ACTIONS(5105), + [sym_property_modifier] = ACTIONS(5105), + [anon_sym_abstract] = ACTIONS(5105), + [anon_sym_final] = ACTIONS(5105), + [anon_sym_open] = ACTIONS(5105), + [anon_sym_vararg] = ACTIONS(5105), + [anon_sym_noinline] = ACTIONS(5105), + [anon_sym_crossinline] = ACTIONS(5105), + [anon_sym_expect] = ACTIONS(5105), + [anon_sym_actual] = ACTIONS(5105), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5107), + [anon_sym_continue_AT] = ACTIONS(5107), + [anon_sym_break_AT] = ACTIONS(5107), + [anon_sym_this_AT] = ACTIONS(5107), + [anon_sym_super_AT] = ACTIONS(5107), + [sym_real_literal] = ACTIONS(5107), + [sym_integer_literal] = ACTIONS(5105), + [sym_hex_literal] = ACTIONS(5107), + [sym_bin_literal] = ACTIONS(5107), + [anon_sym_true] = ACTIONS(5105), + [anon_sym_false] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5107), + [sym__backtick_identifier] = ACTIONS(5107), + [sym__automatic_semicolon] = ACTIONS(5107), + [sym_safe_nav] = ACTIONS(5107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5107), }, - [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_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_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), - [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), + [1127] = { + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [1128] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_object] = ACTIONS(5109), + [anon_sym_fun] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_this] = ACTIONS(5109), + [anon_sym_super] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_when] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_throw] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5111), + [anon_sym_continue_AT] = ACTIONS(5111), + [anon_sym_break_AT] = ACTIONS(5111), + [anon_sym_this_AT] = ACTIONS(5111), + [anon_sym_super_AT] = ACTIONS(5111), + [sym_real_literal] = ACTIONS(5111), + [sym_integer_literal] = ACTIONS(5109), + [sym_hex_literal] = ACTIONS(5111), + [sym_bin_literal] = ACTIONS(5111), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5111), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5111), }, - [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_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_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(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), + [1129] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), }, - [1142] = { - [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), + [1130] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [1143] = { + [1131] = { [sym__alpha_identifier] = ACTIONS(5117), [anon_sym_AT] = ACTIONS(5119), [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), [anon_sym_as] = ACTIONS(5117), [anon_sym_EQ] = ACTIONS(5117), [anon_sym_LBRACE] = ACTIONS(5119), @@ -179770,7 +175142,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -179861,10 +175232,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5119), }, - [1144] = { + [1132] = { [sym__alpha_identifier] = ACTIONS(5121), [anon_sym_AT] = ACTIONS(5123), [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), [anon_sym_as] = ACTIONS(5121), [anon_sym_EQ] = ACTIONS(5121), [anon_sym_LBRACE] = ACTIONS(5123), @@ -179876,7 +175248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -179967,10 +175338,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5123), }, - [1145] = { + [1133] = { + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), + }, + [1134] = { [sym__alpha_identifier] = ACTIONS(5125), [anon_sym_AT] = ACTIONS(5127), [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(5125), [anon_sym_as] = ACTIONS(5125), [anon_sym_EQ] = ACTIONS(5125), [anon_sym_LBRACE] = ACTIONS(5127), @@ -179982,7 +175460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -180073,1494 +175550,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5127), }, - [1146] = { - [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(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(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(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), - }, - [1149] = { - [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_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(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), - }, - [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(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(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(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(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), - [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), - }, - [1153] = { - [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(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_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), - [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), - }, - [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(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), - }, - [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(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(5157), - [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), - [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), - }, - [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), + [1135] = { + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, - [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_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_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), - [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), + [1136] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_object] = ACTIONS(5129), + [anon_sym_fun] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_this] = ACTIONS(5129), + [anon_sym_super] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [sym_label] = ACTIONS(5129), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5129), + [anon_sym_if] = ACTIONS(5129), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_when] = ACTIONS(5129), + [anon_sym_try] = ACTIONS(5129), + [anon_sym_throw] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5129), + [anon_sym_continue] = ACTIONS(5129), + [anon_sym_break] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5129), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_suspend] = ACTIONS(5129), + [anon_sym_sealed] = ACTIONS(5129), + [anon_sym_annotation] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_override] = ACTIONS(5129), + [anon_sym_lateinit] = ACTIONS(5129), + [anon_sym_public] = ACTIONS(5129), + [anon_sym_private] = ACTIONS(5129), + [anon_sym_internal] = ACTIONS(5129), + [anon_sym_protected] = ACTIONS(5129), + [anon_sym_tailrec] = ACTIONS(5129), + [anon_sym_operator] = ACTIONS(5129), + [anon_sym_infix] = ACTIONS(5129), + [anon_sym_inline] = ACTIONS(5129), + [anon_sym_external] = ACTIONS(5129), + [sym_property_modifier] = ACTIONS(5129), + [anon_sym_abstract] = ACTIONS(5129), + [anon_sym_final] = ACTIONS(5129), + [anon_sym_open] = ACTIONS(5129), + [anon_sym_vararg] = ACTIONS(5129), + [anon_sym_noinline] = ACTIONS(5129), + [anon_sym_crossinline] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5131), + [anon_sym_continue_AT] = ACTIONS(5131), + [anon_sym_break_AT] = ACTIONS(5131), + [anon_sym_this_AT] = ACTIONS(5131), + [anon_sym_super_AT] = ACTIONS(5131), + [sym_real_literal] = ACTIONS(5131), + [sym_integer_literal] = ACTIONS(5129), + [sym_hex_literal] = ACTIONS(5131), + [sym_bin_literal] = ACTIONS(5131), + [anon_sym_true] = ACTIONS(5129), + [anon_sym_false] = ACTIONS(5129), + [anon_sym_SQUOTE] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5131), + [sym__automatic_semicolon] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5131), }, - [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), + [1137] = { + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), }, - [1160] = { + [1138] = { [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -181572,7 +175884,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -181663,222 +175974,965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1804), }, - [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), + [1139] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [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_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), }, - [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), + [1140] = { + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), }, - [1163] = { + [1141] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_object] = ACTIONS(5133), + [anon_sym_fun] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_this] = ACTIONS(5133), + [anon_sym_super] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_null] = ACTIONS(5133), + [anon_sym_if] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_when] = ACTIONS(5133), + [anon_sym_try] = ACTIONS(5133), + [anon_sym_throw] = ACTIONS(5133), + [anon_sym_return] = ACTIONS(5133), + [anon_sym_continue] = ACTIONS(5133), + [anon_sym_break] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_suspend] = ACTIONS(5133), + [anon_sym_sealed] = ACTIONS(5133), + [anon_sym_annotation] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_override] = ACTIONS(5133), + [anon_sym_lateinit] = ACTIONS(5133), + [anon_sym_public] = ACTIONS(5133), + [anon_sym_private] = ACTIONS(5133), + [anon_sym_internal] = ACTIONS(5133), + [anon_sym_protected] = ACTIONS(5133), + [anon_sym_tailrec] = ACTIONS(5133), + [anon_sym_operator] = ACTIONS(5133), + [anon_sym_infix] = ACTIONS(5133), + [anon_sym_inline] = ACTIONS(5133), + [anon_sym_external] = ACTIONS(5133), + [sym_property_modifier] = ACTIONS(5133), + [anon_sym_abstract] = ACTIONS(5133), + [anon_sym_final] = ACTIONS(5133), + [anon_sym_open] = ACTIONS(5133), + [anon_sym_vararg] = ACTIONS(5133), + [anon_sym_noinline] = ACTIONS(5133), + [anon_sym_crossinline] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5135), + [anon_sym_continue_AT] = ACTIONS(5135), + [anon_sym_break_AT] = ACTIONS(5135), + [anon_sym_this_AT] = ACTIONS(5135), + [anon_sym_super_AT] = ACTIONS(5135), + [sym_real_literal] = ACTIONS(5135), + [sym_integer_literal] = ACTIONS(5133), + [sym_hex_literal] = ACTIONS(5135), + [sym_bin_literal] = ACTIONS(5135), + [anon_sym_true] = ACTIONS(5133), + [anon_sym_false] = ACTIONS(5133), + [anon_sym_SQUOTE] = ACTIONS(5135), + [sym__backtick_identifier] = ACTIONS(5135), + [sym__automatic_semicolon] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5135), + }, + [1142] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_object] = ACTIONS(5137), + [anon_sym_fun] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_this] = ACTIONS(5137), + [anon_sym_super] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_when] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_throw] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5139), + [anon_sym_continue_AT] = ACTIONS(5139), + [anon_sym_break_AT] = ACTIONS(5139), + [anon_sym_this_AT] = ACTIONS(5139), + [anon_sym_super_AT] = ACTIONS(5139), + [sym_real_literal] = ACTIONS(5139), + [sym_integer_literal] = ACTIONS(5137), + [sym_hex_literal] = ACTIONS(5139), + [sym_bin_literal] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [anon_sym_SQUOTE] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5139), + }, + [1143] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [1144] = { + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1145] = { + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1146] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_object] = ACTIONS(5143), + [anon_sym_fun] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_this] = ACTIONS(5143), + [anon_sym_super] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_null] = ACTIONS(5143), + [anon_sym_if] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_when] = ACTIONS(5143), + [anon_sym_try] = ACTIONS(5143), + [anon_sym_throw] = ACTIONS(5143), + [anon_sym_return] = ACTIONS(5143), + [anon_sym_continue] = ACTIONS(5143), + [anon_sym_break] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5145), + [anon_sym_continue_AT] = ACTIONS(5145), + [anon_sym_break_AT] = ACTIONS(5145), + [anon_sym_this_AT] = ACTIONS(5145), + [anon_sym_super_AT] = ACTIONS(5145), + [sym_real_literal] = ACTIONS(5145), + [sym_integer_literal] = ACTIONS(5143), + [sym_hex_literal] = ACTIONS(5145), + [sym_bin_literal] = ACTIONS(5145), + [anon_sym_true] = ACTIONS(5143), + [anon_sym_false] = ACTIONS(5143), + [anon_sym_SQUOTE] = ACTIONS(5145), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5145), + }, + [1147] = { + [sym__alpha_identifier] = ACTIONS(5147), + [anon_sym_AT] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(5147), + [anon_sym_fun] = ACTIONS(5147), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5147), + [anon_sym_set] = ACTIONS(5147), + [anon_sym_this] = ACTIONS(5147), + [anon_sym_super] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5147), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_QMARK_COLON] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_null] = ACTIONS(5147), + [anon_sym_if] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5147), + [anon_sym_when] = ACTIONS(5147), + [anon_sym_try] = ACTIONS(5147), + [anon_sym_throw] = ACTIONS(5147), + [anon_sym_return] = ACTIONS(5147), + [anon_sym_continue] = ACTIONS(5147), + [anon_sym_break] = ACTIONS(5147), + [anon_sym_COLON_COLON] = ACTIONS(5149), + [anon_sym_PLUS_EQ] = ACTIONS(5149), + [anon_sym_DASH_EQ] = ACTIONS(5149), + [anon_sym_STAR_EQ] = ACTIONS(5149), + [anon_sym_SLASH_EQ] = ACTIONS(5149), + [anon_sym_PERCENT_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_BANGin] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5147), + [anon_sym_BANGis] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5147), + [anon_sym_as_QMARK] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5149), + [anon_sym_suspend] = ACTIONS(5147), + [anon_sym_sealed] = ACTIONS(5147), + [anon_sym_annotation] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5147), + [anon_sym_inner] = ACTIONS(5147), + [anon_sym_value] = ACTIONS(5147), + [anon_sym_override] = ACTIONS(5147), + [anon_sym_lateinit] = ACTIONS(5147), + [anon_sym_public] = ACTIONS(5147), + [anon_sym_private] = ACTIONS(5147), + [anon_sym_internal] = ACTIONS(5147), + [anon_sym_protected] = ACTIONS(5147), + [anon_sym_tailrec] = ACTIONS(5147), + [anon_sym_operator] = ACTIONS(5147), + [anon_sym_infix] = ACTIONS(5147), + [anon_sym_inline] = ACTIONS(5147), + [anon_sym_external] = ACTIONS(5147), + [sym_property_modifier] = ACTIONS(5147), + [anon_sym_abstract] = ACTIONS(5147), + [anon_sym_final] = ACTIONS(5147), + [anon_sym_open] = ACTIONS(5147), + [anon_sym_vararg] = ACTIONS(5147), + [anon_sym_noinline] = ACTIONS(5147), + [anon_sym_crossinline] = ACTIONS(5147), + [anon_sym_expect] = ACTIONS(5147), + [anon_sym_actual] = ACTIONS(5147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5149), + [anon_sym_continue_AT] = ACTIONS(5149), + [anon_sym_break_AT] = ACTIONS(5149), + [anon_sym_this_AT] = ACTIONS(5149), + [anon_sym_super_AT] = ACTIONS(5149), + [sym_real_literal] = ACTIONS(5149), + [sym_integer_literal] = ACTIONS(5147), + [sym_hex_literal] = ACTIONS(5149), + [sym_bin_literal] = ACTIONS(5149), + [anon_sym_true] = ACTIONS(5147), + [anon_sym_false] = ACTIONS(5147), + [anon_sym_SQUOTE] = ACTIONS(5149), + [sym__backtick_identifier] = ACTIONS(5149), + [sym__automatic_semicolon] = ACTIONS(5149), + [sym_safe_nav] = ACTIONS(5149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5149), + }, + [1148] = { [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(1816), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), @@ -181890,7 +176944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -181981,10 +177034,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1816), }, - [1164] = { + [1149] = { + [sym__alpha_identifier] = ACTIONS(5151), + [anon_sym_AT] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_object] = ACTIONS(5151), + [anon_sym_fun] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5151), + [anon_sym_set] = ACTIONS(5151), + [anon_sym_this] = ACTIONS(5151), + [anon_sym_super] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5151), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_null] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5151), + [anon_sym_when] = ACTIONS(5151), + [anon_sym_try] = ACTIONS(5151), + [anon_sym_throw] = ACTIONS(5151), + [anon_sym_return] = ACTIONS(5151), + [anon_sym_continue] = ACTIONS(5151), + [anon_sym_break] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5153), + [anon_sym_PLUS_EQ] = ACTIONS(5153), + [anon_sym_DASH_EQ] = ACTIONS(5153), + [anon_sym_STAR_EQ] = ACTIONS(5153), + [anon_sym_SLASH_EQ] = ACTIONS(5153), + [anon_sym_PERCENT_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_BANGin] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5151), + [anon_sym_BANGis] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5151), + [anon_sym_as_QMARK] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5153), + [anon_sym_suspend] = ACTIONS(5151), + [anon_sym_sealed] = ACTIONS(5151), + [anon_sym_annotation] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5151), + [anon_sym_inner] = ACTIONS(5151), + [anon_sym_value] = ACTIONS(5151), + [anon_sym_override] = ACTIONS(5151), + [anon_sym_lateinit] = ACTIONS(5151), + [anon_sym_public] = ACTIONS(5151), + [anon_sym_private] = ACTIONS(5151), + [anon_sym_internal] = ACTIONS(5151), + [anon_sym_protected] = ACTIONS(5151), + [anon_sym_tailrec] = ACTIONS(5151), + [anon_sym_operator] = ACTIONS(5151), + [anon_sym_infix] = ACTIONS(5151), + [anon_sym_inline] = ACTIONS(5151), + [anon_sym_external] = ACTIONS(5151), + [sym_property_modifier] = ACTIONS(5151), + [anon_sym_abstract] = ACTIONS(5151), + [anon_sym_final] = ACTIONS(5151), + [anon_sym_open] = ACTIONS(5151), + [anon_sym_vararg] = ACTIONS(5151), + [anon_sym_noinline] = ACTIONS(5151), + [anon_sym_crossinline] = ACTIONS(5151), + [anon_sym_expect] = ACTIONS(5151), + [anon_sym_actual] = ACTIONS(5151), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5153), + [anon_sym_continue_AT] = ACTIONS(5153), + [anon_sym_break_AT] = ACTIONS(5153), + [anon_sym_this_AT] = ACTIONS(5153), + [anon_sym_super_AT] = ACTIONS(5153), + [sym_real_literal] = ACTIONS(5153), + [sym_integer_literal] = ACTIONS(5151), + [sym_hex_literal] = ACTIONS(5153), + [sym_bin_literal] = ACTIONS(5153), + [anon_sym_true] = ACTIONS(5151), + [anon_sym_false] = ACTIONS(5151), + [anon_sym_SQUOTE] = ACTIONS(5153), + [sym__backtick_identifier] = ACTIONS(5153), + [sym__automatic_semicolon] = ACTIONS(5153), + [sym_safe_nav] = ACTIONS(5153), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5153), + }, + [1150] = { + [sym__alpha_identifier] = ACTIONS(5155), + [anon_sym_AT] = ACTIONS(5157), + [anon_sym_LBRACK] = ACTIONS(5157), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5157), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_COMMA] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5155), + [anon_sym_object] = ACTIONS(5155), + [anon_sym_fun] = ACTIONS(5155), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(5155), + [anon_sym_set] = ACTIONS(5155), + [anon_sym_this] = ACTIONS(5155), + [anon_sym_super] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5155), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_DOT_DOT] = ACTIONS(5157), + [anon_sym_QMARK_COLON] = ACTIONS(5157), + [anon_sym_AMP_AMP] = ACTIONS(5157), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(5155), + [anon_sym_if] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5155), + [anon_sym_when] = ACTIONS(5155), + [anon_sym_try] = ACTIONS(5155), + [anon_sym_throw] = ACTIONS(5155), + [anon_sym_return] = ACTIONS(5155), + [anon_sym_continue] = ACTIONS(5155), + [anon_sym_break] = ACTIONS(5155), + [anon_sym_COLON_COLON] = ACTIONS(5157), + [anon_sym_PLUS_EQ] = ACTIONS(5157), + [anon_sym_DASH_EQ] = ACTIONS(5157), + [anon_sym_STAR_EQ] = ACTIONS(5157), + [anon_sym_SLASH_EQ] = ACTIONS(5157), + [anon_sym_PERCENT_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5157), + [anon_sym_LT_EQ] = ACTIONS(5157), + [anon_sym_GT_EQ] = ACTIONS(5157), + [anon_sym_BANGin] = ACTIONS(5157), + [anon_sym_is] = ACTIONS(5155), + [anon_sym_BANGis] = ACTIONS(5157), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5155), + [anon_sym_as_QMARK] = ACTIONS(5157), + [anon_sym_PLUS_PLUS] = ACTIONS(5157), + [anon_sym_DASH_DASH] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5157), + [anon_sym_suspend] = ACTIONS(5155), + [anon_sym_sealed] = ACTIONS(5155), + [anon_sym_annotation] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5155), + [anon_sym_inner] = ACTIONS(5155), + [anon_sym_value] = ACTIONS(5155), + [anon_sym_override] = ACTIONS(5155), + [anon_sym_lateinit] = ACTIONS(5155), + [anon_sym_public] = ACTIONS(5155), + [anon_sym_private] = ACTIONS(5155), + [anon_sym_internal] = ACTIONS(5155), + [anon_sym_protected] = ACTIONS(5155), + [anon_sym_tailrec] = ACTIONS(5155), + [anon_sym_operator] = ACTIONS(5155), + [anon_sym_infix] = ACTIONS(5155), + [anon_sym_inline] = ACTIONS(5155), + [anon_sym_external] = ACTIONS(5155), + [sym_property_modifier] = ACTIONS(5155), + [anon_sym_abstract] = ACTIONS(5155), + [anon_sym_final] = ACTIONS(5155), + [anon_sym_open] = ACTIONS(5155), + [anon_sym_vararg] = ACTIONS(5155), + [anon_sym_noinline] = ACTIONS(5155), + [anon_sym_crossinline] = ACTIONS(5155), + [anon_sym_expect] = ACTIONS(5155), + [anon_sym_actual] = ACTIONS(5155), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5157), + [anon_sym_continue_AT] = ACTIONS(5157), + [anon_sym_break_AT] = ACTIONS(5157), + [anon_sym_this_AT] = ACTIONS(5157), + [anon_sym_super_AT] = ACTIONS(5157), + [sym_real_literal] = ACTIONS(5157), + [sym_integer_literal] = ACTIONS(5155), + [sym_hex_literal] = ACTIONS(5157), + [sym_bin_literal] = ACTIONS(5157), + [anon_sym_true] = ACTIONS(5155), + [anon_sym_false] = ACTIONS(5155), + [anon_sym_SQUOTE] = ACTIONS(5157), + [sym__backtick_identifier] = ACTIONS(5157), + [sym__automatic_semicolon] = ACTIONS(5157), + [sym_safe_nav] = ACTIONS(5157), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5157), + }, + [1151] = { + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [1152] = { + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [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_object] = ACTIONS(4653), + [anon_sym_fun] = 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_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), + }, + [1153] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_DOT] = ACTIONS(5159), + [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_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), + }, + [1154] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_DOT] = ACTIONS(5163), + [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_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), + }, + [1155] = { [sym__alpha_identifier] = ACTIONS(5167), [anon_sym_AT] = ACTIONS(5169), [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_DOT] = ACTIONS(5167), [anon_sym_as] = ACTIONS(5167), [anon_sym_EQ] = ACTIONS(5167), [anon_sym_LBRACE] = ACTIONS(5169), @@ -181996,7 +177686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -182087,10 +177776,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5169), }, - [1165] = { + [1156] = { + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [1157] = { + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [1158] = { [sym__alpha_identifier] = ACTIONS(5171), [anon_sym_AT] = ACTIONS(5173), [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_DOT] = ACTIONS(5171), [anon_sym_as] = ACTIONS(5171), [anon_sym_EQ] = ACTIONS(5171), [anon_sym_LBRACE] = ACTIONS(5173), @@ -182102,7 +178004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -182193,1176 +178094,1177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5173), }, - [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), + [1159] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5175), + [anon_sym_get] = ACTIONS(5177), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1824), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [1160] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), [anon_sym_SEMI] = ACTIONS(5181), - [anon_sym_get] = ACTIONS(5179), + [anon_sym_get] = ACTIONS(5177), [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), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1736), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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_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_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), - [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), + [1161] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(5177), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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_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_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__automatic_semicolon] = ACTIONS(5189), - [sym_safe_nav] = ACTIONS(5189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5189), + [1162] = { + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, - [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), + [1163] = { + [sym__alpha_identifier] = ACTIONS(5185), + [anon_sym_AT] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5185), + [anon_sym_object] = ACTIONS(5185), + [anon_sym_fun] = ACTIONS(5185), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5185), + [anon_sym_set] = ACTIONS(5185), + [anon_sym_this] = ACTIONS(5185), + [anon_sym_super] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_QMARK_COLON] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_null] = ACTIONS(5185), + [anon_sym_if] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5185), + [anon_sym_when] = ACTIONS(5185), + [anon_sym_try] = ACTIONS(5185), + [anon_sym_throw] = ACTIONS(5185), + [anon_sym_return] = ACTIONS(5185), + [anon_sym_continue] = ACTIONS(5185), + [anon_sym_break] = ACTIONS(5185), + [anon_sym_COLON_COLON] = ACTIONS(5187), + [anon_sym_PLUS_EQ] = ACTIONS(5187), + [anon_sym_DASH_EQ] = ACTIONS(5187), + [anon_sym_STAR_EQ] = ACTIONS(5187), + [anon_sym_SLASH_EQ] = ACTIONS(5187), + [anon_sym_PERCENT_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_BANGin] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5185), + [anon_sym_BANGis] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_as_QMARK] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5187), + [anon_sym_suspend] = ACTIONS(5185), + [anon_sym_sealed] = ACTIONS(5185), + [anon_sym_annotation] = ACTIONS(5185), + [anon_sym_data] = ACTIONS(5185), + [anon_sym_inner] = ACTIONS(5185), + [anon_sym_value] = ACTIONS(5185), + [anon_sym_override] = ACTIONS(5185), + [anon_sym_lateinit] = ACTIONS(5185), + [anon_sym_public] = ACTIONS(5185), + [anon_sym_private] = ACTIONS(5185), + [anon_sym_internal] = ACTIONS(5185), + [anon_sym_protected] = ACTIONS(5185), + [anon_sym_tailrec] = ACTIONS(5185), + [anon_sym_operator] = ACTIONS(5185), + [anon_sym_infix] = ACTIONS(5185), + [anon_sym_inline] = ACTIONS(5185), + [anon_sym_external] = ACTIONS(5185), + [sym_property_modifier] = ACTIONS(5185), + [anon_sym_abstract] = ACTIONS(5185), + [anon_sym_final] = ACTIONS(5185), + [anon_sym_open] = ACTIONS(5185), + [anon_sym_vararg] = ACTIONS(5185), + [anon_sym_noinline] = ACTIONS(5185), + [anon_sym_crossinline] = ACTIONS(5185), + [anon_sym_expect] = ACTIONS(5185), + [anon_sym_actual] = ACTIONS(5185), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5187), + [anon_sym_continue_AT] = ACTIONS(5187), + [anon_sym_break_AT] = ACTIONS(5187), + [anon_sym_this_AT] = ACTIONS(5187), + [anon_sym_super_AT] = ACTIONS(5187), + [sym_real_literal] = ACTIONS(5187), + [sym_integer_literal] = ACTIONS(5185), + [sym_hex_literal] = ACTIONS(5187), + [sym_bin_literal] = ACTIONS(5187), + [anon_sym_true] = ACTIONS(5185), + [anon_sym_false] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5187), + [sym__backtick_identifier] = ACTIONS(5187), + [sym__automatic_semicolon] = ACTIONS(5187), + [sym_safe_nav] = ACTIONS(5187), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5187), }, - [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), + [1164] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, - [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), + [1165] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(4292), + [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_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), + }, + [1166] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), [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), + [anon_sym_COMMA] = ACTIONS(4278), + [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_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [1174] = { - [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), + [1167] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5177), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1168] = { + [sym_function_body] = STATE(1045), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), }, - [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), + [1169] = { + [sym_function_body] = STATE(1051), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), }, - [1177] = { + [1170] = { [sym__alpha_identifier] = ACTIONS(5199), [anon_sym_AT] = ACTIONS(5201), [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_DOT] = ACTIONS(5199), [anon_sym_as] = ACTIONS(5199), [anon_sym_EQ] = ACTIONS(5199), [anon_sym_LBRACE] = ACTIONS(5201), @@ -183374,7 +179276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -183465,26 +179366,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1171] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -183493,52 +179394,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), [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_get] = ACTIONS(5177), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -183567,560 +179468,30 @@ 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(1798), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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_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_object] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_this] = ACTIONS(5205), - [anon_sym_super] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5205), - [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_null] = ACTIONS(5205), - [anon_sym_if] = ACTIONS(5205), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_when] = ACTIONS(5205), - [anon_sym_try] = ACTIONS(5205), - [anon_sym_throw] = ACTIONS(5205), - [anon_sym_return] = ACTIONS(5205), - [anon_sym_continue] = ACTIONS(5205), - [anon_sym_break] = 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] = ACTIONS(5205), - [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), - [anon_sym_return_AT] = ACTIONS(5207), - [anon_sym_continue_AT] = ACTIONS(5207), - [anon_sym_break_AT] = ACTIONS(5207), - [anon_sym_this_AT] = ACTIONS(5207), - [anon_sym_super_AT] = ACTIONS(5207), - [sym_real_literal] = ACTIONS(5207), - [sym_integer_literal] = ACTIONS(5205), - [sym_hex_literal] = ACTIONS(5207), - [sym_bin_literal] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5205), - [anon_sym_false] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5207), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5207), - }, - [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_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_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), - [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), - }, - [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), + [1172] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -184129,52 +179500,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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(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_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5205), + [anon_sym_get] = ACTIONS(5177), + [anon_sym_set] = ACTIONS(5179), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), [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_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -184204,895 +179575,1642 @@ 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(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [1185] = { - [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), + [1173] = { + [sym__alpha_identifier] = ACTIONS(5207), + [anon_sym_AT] = ACTIONS(5209), + [anon_sym_LBRACK] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5209), + [anon_sym_RBRACE] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_COMMA] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5207), + [anon_sym_GT] = ACTIONS(5207), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_object] = ACTIONS(5207), + [anon_sym_fun] = ACTIONS(5207), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym_get] = ACTIONS(5207), + [anon_sym_set] = ACTIONS(5207), + [anon_sym_this] = ACTIONS(5207), + [anon_sym_super] = ACTIONS(5207), + [anon_sym_STAR] = ACTIONS(5207), + [sym_label] = ACTIONS(5207), + [anon_sym_in] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5209), + [anon_sym_QMARK_COLON] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5209), + [anon_sym_PIPE_PIPE] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(5207), + [anon_sym_if] = ACTIONS(5207), + [anon_sym_else] = ACTIONS(5207), + [anon_sym_when] = ACTIONS(5207), + [anon_sym_try] = ACTIONS(5207), + [anon_sym_throw] = ACTIONS(5207), + [anon_sym_return] = ACTIONS(5207), + [anon_sym_continue] = ACTIONS(5207), + [anon_sym_break] = ACTIONS(5207), + [anon_sym_COLON_COLON] = ACTIONS(5209), + [anon_sym_PLUS_EQ] = ACTIONS(5209), + [anon_sym_DASH_EQ] = ACTIONS(5209), + [anon_sym_STAR_EQ] = ACTIONS(5209), + [anon_sym_SLASH_EQ] = ACTIONS(5209), + [anon_sym_PERCENT_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5209), + [anon_sym_LT_EQ] = ACTIONS(5209), + [anon_sym_GT_EQ] = ACTIONS(5209), + [anon_sym_BANGin] = ACTIONS(5209), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_BANGis] = ACTIONS(5209), + [anon_sym_PLUS] = ACTIONS(5207), + [anon_sym_DASH] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5207), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_as_QMARK] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5209), + [anon_sym_DASH_DASH] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5207), + [anon_sym_BANG_BANG] = ACTIONS(5209), + [anon_sym_suspend] = ACTIONS(5207), + [anon_sym_sealed] = ACTIONS(5207), + [anon_sym_annotation] = ACTIONS(5207), + [anon_sym_data] = ACTIONS(5207), + [anon_sym_inner] = ACTIONS(5207), + [anon_sym_value] = ACTIONS(5207), + [anon_sym_override] = ACTIONS(5207), + [anon_sym_lateinit] = ACTIONS(5207), + [anon_sym_public] = ACTIONS(5207), + [anon_sym_private] = ACTIONS(5207), + [anon_sym_internal] = ACTIONS(5207), + [anon_sym_protected] = ACTIONS(5207), + [anon_sym_tailrec] = ACTIONS(5207), + [anon_sym_operator] = ACTIONS(5207), + [anon_sym_infix] = ACTIONS(5207), + [anon_sym_inline] = ACTIONS(5207), + [anon_sym_external] = ACTIONS(5207), + [sym_property_modifier] = ACTIONS(5207), + [anon_sym_abstract] = ACTIONS(5207), + [anon_sym_final] = ACTIONS(5207), + [anon_sym_open] = ACTIONS(5207), + [anon_sym_vararg] = ACTIONS(5207), + [anon_sym_noinline] = ACTIONS(5207), + [anon_sym_crossinline] = ACTIONS(5207), + [anon_sym_expect] = ACTIONS(5207), + [anon_sym_actual] = ACTIONS(5207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5209), + [anon_sym_continue_AT] = ACTIONS(5209), + [anon_sym_break_AT] = ACTIONS(5209), + [anon_sym_this_AT] = ACTIONS(5209), + [anon_sym_super_AT] = ACTIONS(5209), + [sym_real_literal] = ACTIONS(5209), + [sym_integer_literal] = ACTIONS(5207), + [sym_hex_literal] = ACTIONS(5209), + [sym_bin_literal] = ACTIONS(5209), + [anon_sym_true] = ACTIONS(5207), + [anon_sym_false] = ACTIONS(5207), + [anon_sym_SQUOTE] = ACTIONS(5209), + [sym__backtick_identifier] = ACTIONS(5209), + [sym__automatic_semicolon] = ACTIONS(5209), + [sym_safe_nav] = ACTIONS(5209), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5209), }, - [1186] = { - [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), + [1174] = { + [sym__alpha_identifier] = ACTIONS(5211), + [anon_sym_AT] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_COMMA] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(5211), + [anon_sym_fun] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym_get] = ACTIONS(5211), + [anon_sym_set] = ACTIONS(5211), + [anon_sym_this] = ACTIONS(5211), + [anon_sym_super] = ACTIONS(5211), + [anon_sym_STAR] = ACTIONS(5211), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_QMARK_COLON] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_PIPE_PIPE] = ACTIONS(5213), + [anon_sym_null] = ACTIONS(5211), + [anon_sym_if] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5211), + [anon_sym_when] = ACTIONS(5211), + [anon_sym_try] = ACTIONS(5211), + [anon_sym_throw] = ACTIONS(5211), + [anon_sym_return] = ACTIONS(5211), + [anon_sym_continue] = ACTIONS(5211), + [anon_sym_break] = ACTIONS(5211), + [anon_sym_COLON_COLON] = ACTIONS(5213), + [anon_sym_PLUS_EQ] = ACTIONS(5213), + [anon_sym_DASH_EQ] = ACTIONS(5213), + [anon_sym_STAR_EQ] = ACTIONS(5213), + [anon_sym_SLASH_EQ] = ACTIONS(5213), + [anon_sym_PERCENT_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5213), + [anon_sym_GT_EQ] = ACTIONS(5213), + [anon_sym_BANGin] = ACTIONS(5213), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_BANGis] = ACTIONS(5213), + [anon_sym_PLUS] = ACTIONS(5211), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_as_QMARK] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5213), + [anon_sym_suspend] = ACTIONS(5211), + [anon_sym_sealed] = ACTIONS(5211), + [anon_sym_annotation] = ACTIONS(5211), + [anon_sym_data] = ACTIONS(5211), + [anon_sym_inner] = ACTIONS(5211), + [anon_sym_value] = ACTIONS(5211), + [anon_sym_override] = ACTIONS(5211), + [anon_sym_lateinit] = ACTIONS(5211), + [anon_sym_public] = ACTIONS(5211), + [anon_sym_private] = ACTIONS(5211), + [anon_sym_internal] = ACTIONS(5211), + [anon_sym_protected] = ACTIONS(5211), + [anon_sym_tailrec] = ACTIONS(5211), + [anon_sym_operator] = ACTIONS(5211), + [anon_sym_infix] = ACTIONS(5211), + [anon_sym_inline] = ACTIONS(5211), + [anon_sym_external] = ACTIONS(5211), + [sym_property_modifier] = ACTIONS(5211), + [anon_sym_abstract] = ACTIONS(5211), + [anon_sym_final] = ACTIONS(5211), + [anon_sym_open] = ACTIONS(5211), + [anon_sym_vararg] = ACTIONS(5211), + [anon_sym_noinline] = ACTIONS(5211), + [anon_sym_crossinline] = ACTIONS(5211), + [anon_sym_expect] = ACTIONS(5211), + [anon_sym_actual] = ACTIONS(5211), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5213), + [anon_sym_continue_AT] = ACTIONS(5213), + [anon_sym_break_AT] = ACTIONS(5213), + [anon_sym_this_AT] = ACTIONS(5213), + [anon_sym_super_AT] = ACTIONS(5213), + [sym_real_literal] = ACTIONS(5213), + [sym_integer_literal] = ACTIONS(5211), + [sym_hex_literal] = ACTIONS(5213), + [sym_bin_literal] = ACTIONS(5213), + [anon_sym_true] = ACTIONS(5211), + [anon_sym_false] = ACTIONS(5211), + [anon_sym_SQUOTE] = ACTIONS(5213), + [sym__backtick_identifier] = ACTIONS(5213), + [sym__automatic_semicolon] = ACTIONS(5213), + [sym_safe_nav] = ACTIONS(5213), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5213), }, - [1187] = { - [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_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), + [1175] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_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(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), + [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(5221), + [sym__string_start] = ACTIONS(1810), }, - [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_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(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), + [1176] = { + [sym_function_body] = STATE(1075), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_object] = ACTIONS(4385), + [anon_sym_fun] = 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), }, - [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(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), + [1177] = { + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [1178] = { + [sym__alpha_identifier] = ACTIONS(5215), + [anon_sym_AT] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_DOT] = ACTIONS(5215), + [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_object] = ACTIONS(5215), + [anon_sym_fun] = 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), + }, + [1179] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1180] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(4292), + [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_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3169), + [sym__string_start] = ACTIONS(4292), }, - [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), + [1181] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(4278), + [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_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(1734), - [sym_safe_nav] = ACTIONS(3682), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [1182] = { + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1183] = { + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [1184] = { + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1185] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1186] = { + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = 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), + [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(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), + [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(3096), + [sym__string_start] = ACTIONS(4305), }, - [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), + [1187] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5219), + [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_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_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), - [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), + [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(3127), + [sym__string_start] = ACTIONS(5221), }, - [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), + [1188] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), [anon_sym_EQ] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), [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), + [sym_label] = ACTIONS(4545), [anon_sym_in] = ACTIONS(5227), [anon_sym_DOT_DOT] = ACTIONS(5229), [anon_sym_QMARK_COLON] = ACTIONS(5231), @@ -185107,30 +181225,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3117), [anon_sym_continue] = ACTIONS(3117), [anon_sym_break] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_COLON_COLON] = ACTIONS(4553), [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(5243), - [anon_sym_is] = ACTIONS(4623), - [anon_sym_BANGis] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_BANG_EQ] = ACTIONS(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), [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_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_BANG_BANG] = ACTIONS(4571), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -185151,907 +181269,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3119), [sym__backtick_identifier] = ACTIONS(1788), [sym__automatic_semicolon] = ACTIONS(3119), - [sym_safe_nav] = ACTIONS(4613), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3119), }, - [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), - }, - [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), - }, - [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), + [1189] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_as] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1618), [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_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3144), [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), - }, - [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), - }, - [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_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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(3572), - [anon_sym_RBRACK] = ACTIONS(3103), - [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_COMMA] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), - [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(3588), - [anon_sym_DASH_GT] = ACTIONS(3103), + [anon_sym_DASH_GT] = ACTIONS(3146), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3144), [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_else] = ACTIONS(3144), [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_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(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -186069,30 +181347,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_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), @@ -186100,168 +181378,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(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), - [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), - }, - [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), + [1190] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3134), + [anon_sym_DASH_GT] = ACTIONS(3158), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3156), [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_else] = ACTIONS(3156), [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_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(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -186279,30 +181452,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_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), @@ -186310,168 +181483,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1191] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), [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_this] = ACTIONS(3156), + [anon_sym_super] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [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(4553), + [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(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4571), [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(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_safe_nav] = ACTIONS(3602), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), }, - [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), + [1192] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_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(3578), - [anon_sym_where] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3173), + [anon_sym_DASH_GT] = ACTIONS(3108), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3106), [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_else] = ACTIONS(3106), [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_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -186489,30 +181662,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -186520,903 +181693,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1193] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), [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_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), [anon_sym_STAR] = ACTIONS(5225), - [sym_label] = ACTIONS(4601), + [sym_label] = ACTIONS(4545), [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_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [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(4553), + [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(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), [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), - [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), - }, - [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(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(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), - [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), - }, - [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(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_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4571), [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(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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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(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), - [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__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), }, - [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), + [1194] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_RBRACK] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3119), + [anon_sym_DASH_GT] = ACTIONS(3096), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3094), [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_AMP_AMP] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3094), [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_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(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -187434,30 +181872,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), [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_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(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -187465,63 +181903,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1195] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_RBRACK] = ACTIONS(3150), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(3150), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3148), [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_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3148), [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_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -187539,240 +181977,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), [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_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -187780,149 +182008,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1196] = { + [sym_type_constraints] = STATE(1367), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [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), + [1197] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [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), @@ -187931,7 +182159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3193), [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(3594), [anon_sym_QMARK_COLON] = ACTIONS(3195), [anon_sym_AMP_AMP] = ACTIONS(3195), [anon_sym_PIPE_PIPE] = ACTIONS(3195), @@ -187951,8 +182179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3588), [anon_sym_PERCENT] = ACTIONS(3588), [anon_sym_as_QMARK] = ACTIONS(3618), @@ -187990,44 +182218,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1198] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [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), @@ -188095,273 +182323,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1199] = { + [sym_getter] = STATE(9268), + [sym_setter] = STATE(9268), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), [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), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5251), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(4613), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(3824), [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), + [1200] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_EQ] = ACTIONS(3156), - [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(3578), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3140), + [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(3158), + [anon_sym_DASH_GT] = ACTIONS(3142), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3140), [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_else] = ACTIONS(3140), [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_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(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -188379,30 +182502,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_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), @@ -188410,492 +182533,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1201] = { + [sym_type_constraints] = STATE(1381), + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [1202] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3160), [anon_sym_AT] = ACTIONS(1726), [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_RBRACK] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3578), + [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_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3184), + [anon_sym_DASH_GT] = ACTIONS(3162), [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_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(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(3160), + [anon_sym_DASH] = ACTIONS(3160), [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), + [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(1788), + [sym__backtick_identifier] = ACTIONS(3162), [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), + [1203] = { + [sym_type_constraints] = STATE(1355), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [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), + [1204] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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), - [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), - }, - [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(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_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3135), [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_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3596), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), [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_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [anon_sym_PLUS] = ACTIONS(3616), [anon_sym_DASH] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3588), @@ -188904,205 +182922,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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(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_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3134), }, - [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), + [1205] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_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(3578), - [anon_sym_where] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3115), + [anon_sym_DASH_GT] = ACTIONS(3104), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3102), [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_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), [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_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), [anon_sym_BANGin] = ACTIONS(3610), [anon_sym_is] = ACTIONS(3612), [anon_sym_BANGis] = ACTIONS(3614), @@ -189114,30 +183027,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), [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_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -189145,149 +183058,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - }, - [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), + [1206] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3578), [anon_sym_COMMA] = ACTIONS(3090), [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), [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), @@ -189298,8 +183106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), [anon_sym_else] = ACTIONS(3088), [anon_sym_COLON_COLON] = ACTIONS(3602), [anon_sym_PLUS_EQ] = ACTIONS(3090), @@ -189307,10 +183115,10 @@ 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(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), + [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(3608), [anon_sym_GT_EQ] = ACTIONS(3608), [anon_sym_BANGin] = ACTIONS(3610), @@ -189355,63 +183163,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1207] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_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(3578), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3123), + [anon_sym_DASH_GT] = ACTIONS(3100), [sym_label] = ACTIONS(3590), [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3098), [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_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), [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_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), [anon_sym_BANG_EQ] = ACTIONS(3604), [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), [anon_sym_EQ_EQ] = ACTIONS(3604), @@ -189429,30 +183237,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -189460,860 +183268,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [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), - }, - [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), + [1208] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3117), + [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), - [sym__string_start] = ACTIONS(4009), }, - [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), - }, - [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), + [1209] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3112), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(3594), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), - }, - [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), - }, - [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), }, - [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), + [1210] = { + [sym_type_constraints] = STATE(1379), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_STAR] = ACTIONS(4155), + [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_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(4155), + [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(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(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(2275), + [sym__string_start] = ACTIONS(4155), }, - [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), + [1211] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1212] = { + [sym_getter] = STATE(9314), + [sym_setter] = STATE(9314), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -190322,51 +183716,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5263), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1213] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5265), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [1214] = { + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1215] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [1216] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [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(5322), - [anon_sym_get] = ACTIONS(5324), - [anon_sym_set] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3182), + [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(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_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_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_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(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4519), + [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), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1217] = { + [sym_getter] = STATE(9386), + [sym_setter] = STATE(9386), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5275), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -190395,1797 +184314,660 @@ 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(3602), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), - }, - [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), - [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), - }, - [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), + [1218] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3108), }, - [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(2674), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_when] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2860), - [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(5350), - [anon_sym_inner] = ACTIONS(5350), - [anon_sym_value] = ACTIONS(5350), - [anon_sym_expect] = ACTIONS(5350), - [anon_sym_actual] = ACTIONS(5350), + [1219] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [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(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [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(4553), + [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(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2731), + [sym__string_start] = ACTIONS(3142), }, - [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(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), - }, - [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), + [1220] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [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(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [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(4553), + [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(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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), + [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(4553), [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(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), + [sym__string_start] = ACTIONS(3184), }, - [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), + [1221] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [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(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [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(4553), + [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(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2731), - }, - [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), + [sym__string_start] = ACTIONS(3146), }, - [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), + [1222] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3152), + [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(3152), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [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(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [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(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(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(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(2942), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [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(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), + [1223] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(5245), + [anon_sym_null] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__string_start] = ACTIONS(3154), }, - [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), + [1224] = { + [sym_getter] = STATE(9336), + [sym_setter] = STATE(9336), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -192194,51 +184976,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5277), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -192267,445 +185049,135 @@ 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(3602), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [1225] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [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(4545), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [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(4553), + [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(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(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), - }, - [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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), - }, - [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), - }, - [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(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), + [sym__string_start] = ACTIONS(3195), }, - [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), + [1226] = { + [sym_getter] = STATE(9349), + [sym_setter] = STATE(9349), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -192714,51 +185186,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5279), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -192787,445 +185259,765 @@ 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(1824), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1227] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1785), + [sym__in_operator] = STATE(1787), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1804), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1824), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3131), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3129), + [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(3129), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), + [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(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), + [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), }, - [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), + [1228] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [sym__string_start] = ACTIONS(3112), }, - [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), + [1229] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [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(4545), + [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(4553), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), + [sym__string_start] = ACTIONS(3188), }, - [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(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), + [1230] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(4553), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), }, - [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(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), + [1231] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = 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(5225), + [sym_label] = ACTIONS(4545), + [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(4553), + [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(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2731), + [sym__string_start] = ACTIONS(3162), }, - [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), + [1232] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [1233] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3104), + }, + [1234] = { + [sym_getter] = STATE(9198), + [sym_setter] = STATE(9198), + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_modifiers] = STATE(9212), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -193234,51 +186026,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(5281), + [anon_sym_get] = ACTIONS(5253), + [anon_sym_set] = ACTIONS(5255), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -193307,861 +186099,1488 @@ 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(3602), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1235] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [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(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [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(4553), + [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(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1236] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1795), + [sym__in_operator] = STATE(1796), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1805), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1812), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5223), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(5225), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5227), + [anon_sym_DOT_DOT] = ACTIONS(5229), + [anon_sym_QMARK_COLON] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5243), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(5233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5235), + [anon_sym_EQ_EQ] = ACTIONS(5233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5237), + [anon_sym_BANGin] = ACTIONS(5239), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_PERCENT] = ACTIONS(5225), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3100), + }, + [1237] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5289), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2108), + [sym_label] = ACTIONS(2111), [anon_sym_for] = ACTIONS(2114), [anon_sym_while] = ACTIONS(2114), [anon_sym_do] = ACTIONS(2114), - [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), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), [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), + [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(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), + [1238] = { + [sym__expression] = STATE(2534), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_object] = ACTIONS(5295), + [anon_sym_fun] = ACTIONS(5298), + [anon_sym_get] = ACTIONS(5301), + [anon_sym_set] = ACTIONS(5301), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2620), + [sym_label] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_throw] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_data] = ACTIONS(5301), + [anon_sym_inner] = ACTIONS(5301), + [anon_sym_value] = ACTIONS(5301), + [anon_sym_expect] = ACTIONS(5301), + [anon_sym_actual] = ACTIONS(5301), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), }, - [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), + [1239] = { + [sym_function_body] = STATE(1043), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), }, - [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), + [1240] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [1241] = { + [sym_type_constraints] = STATE(1918), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1242] = { + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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(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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(5312), + [anon_sym_fun] = ACTIONS(5315), + [anon_sym_get] = ACTIONS(5318), + [anon_sym_set] = ACTIONS(5318), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), + [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(2512), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [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(5318), + [anon_sym_inner] = ACTIONS(5318), + [anon_sym_value] = ACTIONS(5318), + [anon_sym_expect] = ACTIONS(5318), + [anon_sym_actual] = ACTIONS(5318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), + }, + [1243] = { + [sym_function_body] = STATE(1035), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [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_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), + }, + [1244] = { + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(5312), + [anon_sym_fun] = ACTIONS(5323), + [anon_sym_get] = ACTIONS(5318), + [anon_sym_set] = ACTIONS(5318), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), + [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(2512), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [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(5318), + [anon_sym_inner] = ACTIONS(5318), + [anon_sym_value] = ACTIONS(5318), + [anon_sym_expect] = ACTIONS(5318), + [anon_sym_actual] = ACTIONS(5318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), + }, + [1245] = { + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(5326), + [anon_sym_fun] = ACTIONS(5329), + [anon_sym_get] = ACTIONS(5332), + [anon_sym_set] = ACTIONS(5332), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), + [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(2413), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [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(5332), + [anon_sym_inner] = ACTIONS(5332), + [anon_sym_value] = ACTIONS(5332), + [anon_sym_expect] = ACTIONS(5332), + [anon_sym_actual] = ACTIONS(5332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), + }, + [1246] = { + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(5326), + [anon_sym_fun] = ACTIONS(5335), + [anon_sym_get] = ACTIONS(5332), + [anon_sym_set] = ACTIONS(5332), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), [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(2435), + [anon_sym_null] = ACTIONS(2413), [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2444), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), [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_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), [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), + [anon_sym_data] = ACTIONS(5332), + [anon_sym_inner] = ACTIONS(5332), + [anon_sym_value] = ACTIONS(5332), + [anon_sym_expect] = ACTIONS(5332), + [anon_sym_actual] = ACTIONS(5332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), + }, + [1247] = { + [sym_getter] = STATE(10142), + [sym_setter] = STATE(10142), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5338), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(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), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1248] = { + [sym__expression] = STATE(966), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5283), + [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(2668), + [sym_label] = ACTIONS(2671), [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(2440), + [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(4876), + [sym__string_start] = ACTIONS(2731), }, - [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), + [1249] = { + [sym_getter] = STATE(10125), + [sym_setter] = STATE(10125), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -194170,47 +187589,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(5428), - [anon_sym_get] = ACTIONS(5324), - [anon_sym_set] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5353), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -194246,65 +187665,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1250] = { + [sym__expression] = STATE(1426), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_object] = ACTIONS(5295), + [anon_sym_fun] = ACTIONS(5355), + [anon_sym_get] = ACTIONS(5301), + [anon_sym_set] = ACTIONS(5301), + [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(5301), + [anon_sym_inner] = ACTIONS(5301), + [anon_sym_value] = ACTIONS(5301), + [anon_sym_expect] = ACTIONS(5301), + [anon_sym_actual] = ACTIONS(5301), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), + }, + [1251] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5361), + [anon_sym_get] = ACTIONS(5364), + [anon_sym_set] = ACTIONS(5364), + [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(5364), + [anon_sym_inner] = ACTIONS(5364), + [anon_sym_value] = ACTIONS(5364), + [anon_sym_expect] = ACTIONS(5364), + [anon_sym_actual] = ACTIONS(5364), + [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), + }, + [1252] = { + [sym__expression] = STATE(4088), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(5326), + [anon_sym_fun] = ACTIONS(5367), + [anon_sym_get] = ACTIONS(5332), + [anon_sym_set] = ACTIONS(5332), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), + [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(2413), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [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(5332), + [anon_sym_inner] = ACTIONS(5332), + [anon_sym_value] = ACTIONS(5332), + [anon_sym_expect] = ACTIONS(5332), + [anon_sym_actual] = ACTIONS(5332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), + }, + [1253] = { + [sym__expression] = STATE(4126), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5370), + [anon_sym_get] = ACTIONS(5364), + [anon_sym_set] = ACTIONS(5364), + [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(5364), + [anon_sym_inner] = ACTIONS(5364), + [anon_sym_value] = ACTIONS(5364), + [anon_sym_expect] = ACTIONS(5364), + [anon_sym_actual] = ACTIONS(5364), + [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), + }, + [1254] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5373), + [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(2674), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2860), + [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(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(2440), + [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), + }, + [1255] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4292), [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_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4292), [anon_sym_suspend] = ACTIONS(4289), [anon_sym_sealed] = ACTIONS(4289), [anon_sym_annotation] = ACTIONS(4289), @@ -194332,148 +188271,1396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4287), - [sym_bin_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), [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), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4287), + [sym__string_start] = ACTIONS(4292), }, - [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), + [1256] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), + }, + [1257] = { + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(5312), + [anon_sym_fun] = ACTIONS(5384), + [anon_sym_get] = ACTIONS(5318), + [anon_sym_set] = ACTIONS(5318), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2506), + [sym_label] = ACTIONS(2509), [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), + [anon_sym_null] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_data] = ACTIONS(5318), + [anon_sym_inner] = ACTIONS(5318), + [anon_sym_value] = ACTIONS(5318), + [anon_sym_expect] = ACTIONS(5318), + [anon_sym_actual] = ACTIONS(5318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), }, - [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), + [1258] = { + [sym_type_constraints] = STATE(1802), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_STAR] = ACTIONS(4155), + [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_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(4155), + [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), + }, + [1259] = { + [sym__expression] = STATE(2209), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_object] = ACTIONS(5295), + [anon_sym_fun] = ACTIONS(5389), + [anon_sym_get] = ACTIONS(5301), + [anon_sym_set] = ACTIONS(5301), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), + [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(2314), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_throw] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [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(5301), + [anon_sym_inner] = ACTIONS(5301), + [anon_sym_value] = ACTIONS(5301), + [anon_sym_expect] = ACTIONS(5301), + [anon_sym_actual] = ACTIONS(5301), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), + }, + [1260] = { + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_object] = ACTIONS(5312), + [anon_sym_fun] = ACTIONS(5392), + [anon_sym_get] = ACTIONS(5318), + [anon_sym_set] = ACTIONS(5318), + [anon_sym_this] = ACTIONS(2500), + [anon_sym_super] = ACTIONS(2503), + [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(2512), + [anon_sym_if] = ACTIONS(2986), + [anon_sym_when] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [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(5318), + [anon_sym_inner] = ACTIONS(5318), + [anon_sym_value] = ACTIONS(5318), + [anon_sym_expect] = ACTIONS(5318), + [anon_sym_actual] = ACTIONS(5318), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2539), + [anon_sym_break_AT] = ACTIONS(2542), + [anon_sym_this_AT] = ACTIONS(2545), + [anon_sym_super_AT] = ACTIONS(2548), + [sym_real_literal] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2554), + [sym_hex_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2563), + [sym__backtick_identifier] = ACTIONS(2566), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2569), + }, + [1261] = { + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5395), + [anon_sym_get] = ACTIONS(5364), + [anon_sym_set] = ACTIONS(5364), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [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(2215), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [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(5364), + [anon_sym_inner] = ACTIONS(5364), + [anon_sym_value] = ACTIONS(5364), + [anon_sym_expect] = ACTIONS(5364), + [anon_sym_actual] = ACTIONS(5364), + [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), + }, + [1262] = { + [sym__expression] = STATE(2083), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5398), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [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(2116), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [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(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [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), + }, + [1263] = { + [sym_type_constraints] = STATE(1905), + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [1264] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), + }, + [1265] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), + }, + [1266] = { + [sym__expression] = STATE(2466), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5411), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2102), + [anon_sym_super] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2598), + [sym_label] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_when] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [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), + }, + [1267] = { + [sym_type_constraints] = STATE(1351), + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [1268] = { + [sym_type_constraints] = STATE(1942), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1269] = { + [sym_getter] = STATE(9979), + [sym_setter] = STATE(9979), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -194482,47 +189669,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(5435), - [anon_sym_get] = ACTIONS(5324), - [anon_sym_set] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5416), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [anon_sym_as_QMARK] = ACTIONS(3618), [anon_sym_PLUS_PLUS] = ACTIONS(3620), [anon_sym_DASH_DASH] = ACTIONS(3620), @@ -194558,925 +189745,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [1270] = { + [sym__expression] = STATE(2304), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5287), + [anon_sym_AT] = ACTIONS(5283), [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_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5418), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), [anon_sym_this] = ACTIONS(2102), [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(3002), - [sym_label] = ACTIONS(3005), + [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(2116), - [anon_sym_if] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(2876), [anon_sym_when] = ACTIONS(2122), [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3014), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2882), [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(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), - }, - [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(5456), - [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_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(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), - }, - [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(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(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), - [sym_label] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [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), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(2143), [anon_sym_continue_AT] = ACTIONS(2146), @@ -195494,485 +189849,2567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2176), }, - [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(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(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), + [1271] = { + [sym_type_constraints] = STATE(1916), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [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), + [1272] = { + [sym_getter] = STATE(10101), + [sym_setter] = STATE(10101), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5423), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(273), - [anon_sym_continue_AT] = 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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [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(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), + [1273] = { + [sym_getter] = STATE(10114), + [sym_setter] = STATE(10114), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4218), }, - [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), + [1274] = { + [sym_getter] = STATE(10066), + [sym_setter] = STATE(10066), + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_modifiers] = STATE(9411), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(6132), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(5427), + [anon_sym_get] = ACTIONS(5340), + [anon_sym_set] = ACTIONS(5342), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(273), - [anon_sym_continue_AT] = 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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [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), + [1275] = { + [sym_type_constraints] = STATE(1354), + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3258), + [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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), + }, + [1276] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5429), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = 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), + }, + [1277] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5431), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), + }, + [1278] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), + }, + [1279] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5435), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [1280] = { + [sym_type_constraints] = STATE(1355), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1281] = { + [sym_type_constraints] = STATE(1367), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1282] = { + [sym__expression] = STATE(3728), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(2377), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(5326), + [anon_sym_fun] = ACTIONS(5437), + [anon_sym_get] = ACTIONS(5332), + [anon_sym_set] = ACTIONS(5332), + [anon_sym_this] = ACTIONS(2401), + [anon_sym_super] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2407), + [sym_label] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_when] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2437), + [anon_sym_data] = ACTIONS(5332), + [anon_sym_inner] = ACTIONS(5332), + [anon_sym_value] = ACTIONS(5332), + [anon_sym_expect] = ACTIONS(5332), + [anon_sym_actual] = ACTIONS(5332), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2440), + [anon_sym_continue_AT] = ACTIONS(2443), + [anon_sym_break_AT] = ACTIONS(2446), + [anon_sym_this_AT] = ACTIONS(2449), + [anon_sym_super_AT] = ACTIONS(2452), + [sym_real_literal] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2458), + [sym_hex_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2467), + [sym__backtick_identifier] = ACTIONS(2470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2473), + }, + [1283] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5440), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [1284] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(5444), + [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(5446), + [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), + }, + [1285] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = 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(5446), + [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), + }, + [1286] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5448), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [1287] = { + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5452), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [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(2674), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3014), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [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(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(2440), + [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), + }, + [1288] = { + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_object] = ACTIONS(5295), + [anon_sym_fun] = ACTIONS(5455), + [anon_sym_get] = ACTIONS(5301), + [anon_sym_set] = ACTIONS(5301), + [anon_sym_this] = ACTIONS(2302), + [anon_sym_super] = ACTIONS(2305), + [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(2314), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_when] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [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(5301), + [anon_sym_inner] = ACTIONS(5301), + [anon_sym_value] = ACTIONS(5301), + [anon_sym_expect] = ACTIONS(5301), + [anon_sym_actual] = ACTIONS(5301), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2341), + [anon_sym_continue_AT] = ACTIONS(2344), + [anon_sym_break_AT] = ACTIONS(2347), + [anon_sym_this_AT] = ACTIONS(2350), + [anon_sym_super_AT] = ACTIONS(2353), + [sym_real_literal] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2362), + [sym_bin_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2368), + [sym__backtick_identifier] = ACTIONS(2371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2374), + }, + [1289] = { + [sym_type_constraints] = STATE(1371), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1290] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [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(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), + }, + [1291] = { + [sym__expression] = STATE(2104), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(5344), + [anon_sym_fun] = ACTIONS(5458), + [anon_sym_get] = ACTIONS(5350), + [anon_sym_set] = ACTIONS(5350), + [anon_sym_this] = ACTIONS(2662), + [anon_sym_super] = ACTIONS(2665), + [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(2674), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_when] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3058), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [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(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(2440), + [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), + }, + [1292] = { + [sym__expression] = STATE(4040), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(5358), + [anon_sym_fun] = ACTIONS(5461), + [anon_sym_get] = ACTIONS(5364), + [anon_sym_set] = ACTIONS(5364), + [anon_sym_this] = ACTIONS(2203), + [anon_sym_super] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2576), + [sym_label] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_do] = ACTIONS(2114), + [anon_sym_null] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_when] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_data] = ACTIONS(5364), + [anon_sym_inner] = ACTIONS(5364), + [anon_sym_value] = ACTIONS(5364), + [anon_sym_expect] = ACTIONS(5364), + [anon_sym_actual] = ACTIONS(5364), + [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), + }, + [1293] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [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(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), + }, + [1294] = { + [sym_primary_constructor] = STATE(2995), + [sym_class_body] = STATE(3389), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(1385), + [sym_type_constraints] = STATE(3298), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1295] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5472), + [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -196010,72 +192447,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1296] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_RPAREN] = ACTIONS(5480), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -196113,72 +192550,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1297] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8894), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5476), + [anon_sym_RPAREN] = ACTIONS(5482), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -196216,175 +192653,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - [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(4185), - }, - [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), + [1298] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8881), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_RPAREN] = ACTIONS(5484), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -196422,95 +192756,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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_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), + [1299] = { + [sym_class_body] = STATE(1133), + [sym_type_constraints] = STATE(957), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(5486), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_STAR] = ACTIONS(4319), + [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_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(4319), + [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_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_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [1300] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5488), + [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(5478), + [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), @@ -196525,42 +192962,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [1303] = { - [sym_primary_constructor] = STATE(2986), - [sym__class_parameters] = STATE(3293), + [1301] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(5490), + [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(5478), + [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), + }, + [1302] = { + [sym_primary_constructor] = STATE(4557), + [sym_class_body] = STATE(4790), + [sym__class_parameters] = STATE(4636), [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_type_constraints] = STATE(4629), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_COLON] = ACTIONS(5492), [anon_sym_LBRACK] = ACTIONS(3238), [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5498), [anon_sym_COMMA] = ACTIONS(3238), [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5472), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5500), [anon_sym_SEMI] = ACTIONS(3238), [anon_sym_get] = ACTIONS(3234), [anon_sym_set] = ACTIONS(3234), @@ -196628,78 +193168,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1303] = { + [sym_primary_constructor] = STATE(4580), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(1418), + [sym_type_constraints] = STATE(4685), + [sym_enum_class_body] = STATE(4872), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [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_COLON] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -196727,76 +193267,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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [1304] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(5506), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -196834,175 +193374,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1305] = { + [sym_primary_constructor] = STATE(4574), + [sym_class_body] = STATE(4872), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(1417), + [sym_type_constraints] = STATE(4630), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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), }, - [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), + [1306] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(5510), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197040,72 +193580,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, + [1307] = { + [sym_primary_constructor] = STATE(4568), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(1415), + [sym_type_constraints] = STATE(4672), + [sym_enum_class_body] = STATE(4739), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5500), + [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), + }, [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__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8801), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_RPAREN] = ACTIONS(5514), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197144,71 +193787,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [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_class_body] = STATE(1120), + [sym_type_constraints] = STATE(940), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3262), + [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(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [1310] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_RPAREN] = ACTIONS(5516), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197246,72 +193992,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1311] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_RPAREN] = ACTIONS(5518), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197349,72 +194095,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1312] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_RPAREN] = ACTIONS(5520), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197452,72 +194198,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1313] = { + [sym_class_body] = STATE(1135), + [sym_type_constraints] = STATE(996), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3262), + [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(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [1314] = { + [sym_type_constraints] = STATE(1001), + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(5522), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [1315] = { + [sym_class_body] = STATE(1162), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [1316] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [1317] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_RPAREN] = ACTIONS(5526), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197555,72 +194713,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1318] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8832), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_RPAREN] = ACTIONS(5528), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197658,72 +194816,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1319] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_RPAREN] = ACTIONS(5530), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197761,72 +194919,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1320] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5532), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197864,72 +195022,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1321] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8964), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_RPAREN] = ACTIONS(5534), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -197967,175 +195125,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1322] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_RPAREN] = ACTIONS(5536), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198173,72 +195228,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1323] = { + [sym_type_constraints] = STATE(938), + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [1324] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5540), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198276,72 +195434,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1325] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9000), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5542), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198379,72 +195537,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1326] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_RPAREN] = ACTIONS(5544), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198482,72 +195640,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1327] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5546), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198585,175 +195743,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - }, - [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), + [1328] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9022), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5548), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198791,72 +195846,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1329] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_RPAREN] = ACTIONS(5550), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -198894,278 +195949,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1330] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5552), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199203,72 +196052,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1331] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9037), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_RPAREN] = ACTIONS(5554), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199306,72 +196155,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1332] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_RPAREN] = ACTIONS(5556), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199409,72 +196258,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1333] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5544), + [anon_sym_RPAREN] = ACTIONS(5558), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199512,72 +196361,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1334] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8977), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5560), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199615,72 +196464,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1335] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9032), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5548), + [anon_sym_RPAREN] = ACTIONS(5562), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199718,72 +196567,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1336] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5564), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199821,72 +196670,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1337] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9008), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5552), + [anon_sym_RPAREN] = ACTIONS(5566), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -199924,278 +196773,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5560), + [anon_sym_RPAREN] = ACTIONS(5568), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -200234,71 +196877,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [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__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9034), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5570), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -200337,885 +196980,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [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(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), - }, - [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(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), - }, - [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(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), - }, - [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__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_RPAREN] = ACTIONS(5572), @@ -201225,7 +197044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -201263,381 +197082,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), - }, - [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(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), - [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), - }, - [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), + [1341] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_RPAREN] = ACTIONS(5574), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -201675,175 +197185,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - }, - [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), + [1342] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9041), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5588), + [anon_sym_RPAREN] = ACTIONS(5576), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -201881,72 +197288,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1343] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5590), + [anon_sym_RPAREN] = ACTIONS(5578), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -201984,72 +197391,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1344] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5592), + [anon_sym_RPAREN] = ACTIONS(5580), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -202087,72 +197494,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1345] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5594), + [anon_sym_RPAREN] = ACTIONS(5582), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -202190,381 +197597,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - [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), - }, - [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(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), - [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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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_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), + [1346] = { + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3254), + [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(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, - [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), + [1347] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8836), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_RPAREN] = ACTIONS(5584), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -202602,278 +197803,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1348] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5606), + [anon_sym_RPAREN] = ACTIONS(5586), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -202911,72 +197906,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1349] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8853), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5608), + [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -203014,72 +198009,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1350] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5610), + [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -203117,381 +198112,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - }, - [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), - [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), + [1351] = { + [sym_function_body] = STATE(1075), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [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_fun] = 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(4387), + [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_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(4387), + [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), }, - [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), + [1352] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8897), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5612), + [anon_sym_RPAREN] = ACTIONS(5592), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -203529,381 +198318,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1353] = { + [sym_type_constraints] = STATE(1916), + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [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), + [1354] = { + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), }, - [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), + [1355] = { + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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(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), + [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(4441), + [sym__string_start] = ACTIONS(4305), }, - [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), + [1356] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5614), + [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -203941,72 +198730,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1357] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8974), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5596), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204044,72 +198833,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1358] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5618), + [anon_sym_RPAREN] = ACTIONS(5598), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204147,72 +198936,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1359] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5600), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204250,72 +199039,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1360] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(8841), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5622), + [anon_sym_RPAREN] = ACTIONS(5602), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204353,72 +199142,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1361] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5604), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204456,72 +199245,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1362] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5626), + [anon_sym_RPAREN] = ACTIONS(5606), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204559,87 +199348,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1363] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [1364] = { + [sym__expression] = STATE(4517), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1424), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8448), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5628), + [anon_sym_val] = ACTIONS(5608), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(5466), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -204662,72 +199554,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1365] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(5630), + [anon_sym_RPAREN] = ACTIONS(5610), [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), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -204765,62 +199657,886 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1366] = { + [sym_type_constraints] = STATE(1959), + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [1367] = { + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1368] = { + [sym_primary_constructor] = STATE(2973), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(1388), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3372), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), [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_COLON] = ACTIONS(5612), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1369] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [1370] = { + [sym_function_body] = STATE(1045), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), + }, + [1371] = { + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1372] = { + [sym_function_body] = STATE(1051), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [1373] = { + [sym_primary_constructor] = STATE(2984), + [sym_class_body] = STATE(3454), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(1387), + [sym_type_constraints] = STATE(3316), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1374] = { + [sym_primary_constructor] = STATE(2986), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(1386), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3454), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -204868,82 +200584,1825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, + [1375] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5478), + [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), + }, + [1376] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5478), + [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), + }, + [1377] = { + [sym__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5671), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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_get] = ACTIONS(1842), + [anon_sym_set] = ACTIONS(1842), + [anon_sym_this] = ACTIONS(235), + [anon_sym_super] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(5478), + [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), + }, + [1378] = { + [sym_type_constraints] = STATE(1942), + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1379] = { + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [1380] = { + [sym_type_constraints] = STATE(1956), + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3258), + [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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), + }, + [1381] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1382] = { + [sym_type_constraints] = STATE(1918), + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [1383] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5630), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(4281), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, [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), + [sym_type_constraints] = STATE(938), + [sym_enum_class_body] = STATE(1137), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(5634), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [1385] = { + [sym_primary_constructor] = STATE(2991), + [sym_class_body] = STATE(3441), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3304), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1386] = { + [sym_primary_constructor] = STATE(2996), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1387] = { + [sym_primary_constructor] = STATE(2972), + [sym_class_body] = STATE(3573), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3324), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [1388] = { + [sym_primary_constructor] = STATE(2974), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [1389] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1156), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [1390] = { + [sym_class_body] = STATE(1162), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(5644), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [1391] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(5646), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [1392] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3167), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_EQ] = ACTIONS(3167), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), [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_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), [anon_sym_else] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [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_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), [anon_sym_override] = ACTIONS(3167), [anon_sym_lateinit] = ACTIONS(3167), [anon_sym_public] = ACTIONS(3167), @@ -204962,84 +202421,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3167), [anon_sym_noinline] = ACTIONS(3167), [anon_sym_crossinline] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1393] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), [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__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1394] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1395] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1396] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_EQ] = ACTIONS(3088), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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_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(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(3088), [anon_sym_sealed] = ACTIONS(3088), [anon_sym_annotation] = ACTIONS(3088), @@ -205069,261 +202834,1077 @@ 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(3090), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [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), + [1397] = { + [sym_type_constraints] = STATE(1001), + [sym_enum_class_body] = STATE(1162), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(5648), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [1398] = { + [sym_class_body] = STATE(1135), + [sym_type_constraints] = STATE(996), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [1399] = { + [sym_type_constraints] = STATE(961), + [sym_enum_class_body] = STATE(1135), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [1400] = { + [sym_class_body] = STATE(1133), + [sym_type_constraints] = STATE(957), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(5650), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_STAR] = ACTIONS(4319), + [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_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(4319), + [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_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_safe_nav] = ACTIONS(4319), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4319), + }, + [1401] = { + [sym_value_arguments] = STATE(1046), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [1402] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3102), [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_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), [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_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), [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__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(3824), [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), + [1403] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1404] = { + [sym_class_body] = STATE(1120), + [sym_type_constraints] = STATE(940), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), + }, + [1405] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1406] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1407] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_EQ] = ACTIONS(3193), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(3816), [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_COLON_COLON] = ACTIONS(3824), [anon_sym_PLUS_EQ] = ACTIONS(3195), [anon_sym_DASH_EQ] = ACTIONS(3195), [anon_sym_STAR_EQ] = ACTIONS(3195), @@ -205338,14 +203919,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(3193), [anon_sym_sealed] = ACTIONS(3193), [anon_sym_annotation] = ACTIONS(3193), @@ -205375,1196 +203956,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3195), [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [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(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), - [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), - }, - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3184), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [1408] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3094), [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_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), [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_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(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__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3824), [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), + [1409] = { + [sym_variable_declaration] = STATE(8837), + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5653), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [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(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -206602,382 +204163,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3162), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - [sym__backtick_identifier] = ACTIONS(3274), - [sym_safe_nav] = ACTIONS(3274), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [1410] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3106), [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_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1411] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [anon_sym_EQ] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3800), [anon_sym_COMMA] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), [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_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), [anon_sym_else] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3824), [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_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(3140), [anon_sym_sealed] = ACTIONS(3140), [anon_sym_annotation] = ACTIONS(3140), @@ -207007,779 +204364,65 @@ 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(3142), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), }, [1412] = { - [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__expression] = STATE(4382), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym_value_argument] = STATE(9276), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1929), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -207788,7 +204431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_STAR] = ACTIONS(5478), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -207827,586 +204470,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(295), }, [1413] = { - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3173), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1131), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), }, [1414] = { - [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(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), + [sym_class_body] = STATE(1114), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(5656), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), }, [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(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), - }, - [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(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_COMMA] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3103), - [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(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(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(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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), - }, - [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), + [sym_primary_constructor] = STATE(4563), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4688), + [sym_enum_class_body] = STATE(4714), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5658), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -208434,285 +204771,183 @@ 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(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [1419] = { - [sym_function_body] = STATE(1048), - [sym__block] = STATE(1129), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [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_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), + [1416] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), }, - [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), - }, - [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), + [1417] = { + [sym_primary_constructor] = STATE(4576), + [sym_class_body] = STATE(4798), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4665), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), [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_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -208740,81 +204975,81 @@ 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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1418] = { + [sym_primary_constructor] = STATE(4575), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4645), + [sym_enum_class_body] = STATE(4798), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(5662), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -208842,285 +205077,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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [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), + [1419] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [1420] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1421] = { + [sym_function_body] = STATE(1043), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(5664), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), + }, + [1422] = { + [sym_primary_constructor] = STATE(4577), + [sym_class_body] = STATE(4880), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4686), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5666), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5494), [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_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -209148,129 +205485,435 @@ 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(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [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(5671), - [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_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), - }, - [1427] = { - [sym_class_body] = STATE(1167), - [sym_type_constraints] = STATE(943), - [sym__alpha_identifier] = ACTIONS(4216), + [1423] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1424] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(5668), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_val] = ACTIONS(5671), + [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(1141), + [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), + }, + [1425] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1426] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1693), + [sym__in_operator] = STATE(1695), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1697), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1698), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3810), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3814), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_QMARK_COLON] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3820), + [anon_sym_PIPE_PIPE] = ACTIONS(3822), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3828), + [anon_sym_EQ_EQ] = ACTIONS(3826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3828), + [anon_sym_LT_EQ] = ACTIONS(3830), + [anon_sym_GT_EQ] = ACTIONS(3830), + [anon_sym_BANGin] = ACTIONS(3832), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [1427] = { + [sym_function_body] = STATE(1035), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), [anon_sym_COLON] = ACTIONS(5673), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), [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), @@ -209357,96 +206000,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(282), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -209458,60 +206101,666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(639), }, [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__expression] = STATE(960), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1430] = { + [sym__expression] = STATE(4147), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1431] = { + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1432] = { + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1433] = { + [sym__expression] = STATE(4145), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1434] = { + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1435] = { + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -209520,7 +206769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -209558,80 +206807,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1436] = { + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1437] = { + [sym__expression] = STATE(2557), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -209643,7 +206993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -209659,80 +207009,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [1431] = { + [1438] = { [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(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), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -209744,7 +207094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -209760,80 +207110,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1439] = { + [sym__expression] = STATE(2552), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -209845,7 +207195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -209861,80 +207211,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1440] = { + [sym__expression] = STATE(2545), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -209946,209 +207296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -210164,61 +207312,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1441] = { + [sym__expression] = STATE(4128), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -210265,181 +207413,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1442] = { + [sym__expression] = STATE(4287), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(3158), + [sym__string_start] = ACTIONS(113), }, - [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), + [1443] = { + [sym__expression] = STATE(320), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(411), - [anon_sym_super] = ACTIONS(413), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), @@ -210451,77 +207599,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1444] = { + [sym__expression] = STATE(4097), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -210568,80 +207716,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1445] = { + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1446] = { + [sym_function_body] = STATE(1051), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [1447] = { + [sym__expression] = STATE(2544), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -210653,7 +208003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -210669,80 +208019,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1448] = { + [sym__expression] = STATE(2543), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -210754,7 +208104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -210770,80 +208120,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1449] = { + [sym__expression] = STATE(2541), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -210855,7 +208205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -210871,80 +208221,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1450] = { + [sym__expression] = STATE(2540), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -210956,7 +208306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -210972,80 +208322,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1451] = { + [sym__expression] = STATE(2539), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -211057,7 +208407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -211073,61 +208423,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1452] = { + [sym__expression] = STATE(4123), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -211136,7 +208486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(5701), + [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -211174,80 +208524,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [1453] = { + [sym__expression] = STATE(2538), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -211259,7 +208609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -211275,186 +208625,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1454] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(469), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1455] = { + [sym__expression] = STATE(3289), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -211477,186 +208827,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1456] = { + [sym__expression] = STATE(3285), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -211679,294 +208928,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1457] = { + [sym__expression] = STATE(4121), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(4309), + [sym__string_start] = ACTIONS(295), }, - [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), + [1458] = { + [sym__expression] = STATE(1416), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1459] = { + [sym__expression] = STATE(4120), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1460] = { + [sym__expression] = STATE(916), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [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_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -211982,92 +209332,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1461] = { + [sym__expression] = STATE(904), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [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_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -212083,92 +209433,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1462] = { + [sym__expression] = STATE(900), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [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_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -212184,92 +209534,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1463] = { + [sym__expression] = STATE(891), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [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_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -212285,92 +209635,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1464] = { + [sym__expression] = STATE(2193), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -212386,92 +209736,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1465] = { + [sym__expression] = STATE(913), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), [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_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -212487,85 +209837,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1466] = { + [sym__expression] = STATE(914), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1467] = { + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1468] = { + [sym__expression] = STATE(911), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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(4137), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -212588,900 +210241,1405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1470] = { + [sym__expression] = STATE(912), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1471] = { + [sym__expression] = STATE(4105), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1472] = { + [sym__expression] = STATE(4086), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1473] = { + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1474] = { + [sym__expression] = STATE(915), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1475] = { + [sym__expression] = STATE(898), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1476] = { + [sym__expression] = STATE(877), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1477] = { + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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), + }, + [1478] = { + [sym__expression] = STATE(2215), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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(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), + [1479] = { + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), + [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(1237), - [sym_label] = ACTIONS(817), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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(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), + [1480] = { + [sym_function_body] = STATE(1030), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [1481] = { + [sym__expression] = STATE(309), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), + [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(1237), - [sym_label] = ACTIONS(817), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1482] = { + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), + [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(1237), - [sym_label] = ACTIONS(817), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [1483] = { + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -213497,1208 +211655,1006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [1484] = { + [sym__expression] = STATE(2226), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1485] = { + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1486] = { + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1487] = { + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1488] = { + [sym__expression] = STATE(310), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1489] = { + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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_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), }, - [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), + [1490] = { + [sym__expression] = STATE(302), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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(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_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(555), + [sym__string_start] = ACTIONS(639), }, - [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(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), + [1491] = { + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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(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), + [1492] = { + [sym__expression] = STATE(303), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1493] = { + [sym__expression] = STATE(728), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -214709,97 +212665,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1494] = { + [sym__expression] = STATE(721), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -214810,97 +212766,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1495] = { + [sym__expression] = STATE(2553), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1496] = { + [sym__expression] = STATE(2236), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1497] = { + [sym__expression] = STATE(731), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -214911,97 +213069,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1498] = { + [sym__expression] = STATE(749), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215012,198 +213170,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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), + [1499] = { + [sym__expression] = STATE(748), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215214,97 +213271,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1500] = { + [sym__expression] = STATE(746), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215315,198 +213372,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1501] = { + [sym__expression] = STATE(527), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [1502] = { + [sym__expression] = STATE(725), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215517,97 +213574,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1503] = { + [sym__expression] = STATE(4288), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1504] = { + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1505] = { + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215618,198 +213877,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1506] = { + [sym__expression] = STATE(541), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), [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_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(515), - [anon_sym_try] = ACTIONS(517), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), [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), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [1507] = { + [sym__expression] = STATE(741), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -215820,299 +214079,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1508] = { + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(205), + [sym__string_start] = ACTIONS(639), }, - [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(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), + [1509] = { + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [1510] = { + [sym__expression] = STATE(4126), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1511] = { + [sym__expression] = STATE(2241), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1512] = { + [sym__expression] = STATE(2242), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1513] = { + [sym__expression] = STATE(805), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -216123,97 +214685,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1514] = { + [sym__expression] = STATE(2261), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -216224,294 +214786,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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(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), - }, - [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), + [1515] = { + [sym__expression] = STATE(2243), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -216527,92 +214887,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), + [1516] = { + [sym__expression] = STATE(2245), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -216628,703 +214988,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), + [1517] = { + [sym__expression] = STATE(2189), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1518] = { + [sym__expression] = STATE(799), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -217335,61 +215190,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1519] = { + [sym__expression] = STATE(2209), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1520] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -217398,7 +215354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(5703), + [anon_sym_STAR] = ACTIONS(869), [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(1992), @@ -217436,198 +215392,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1521] = { + [sym__expression] = STATE(809), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -217638,85 +215493,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1522] = { + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1523] = { + [sym__expression] = STATE(4270), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -217739,85 +215695,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1524] = { + [sym__expression] = STATE(742), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1525] = { + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1526] = { + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1527] = { + [sym__expression] = STATE(743), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1528] = { + [sym__expression] = STATE(803), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1529] = { + [sym__expression] = STATE(744), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1530] = { + [sym__expression] = STATE(745), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1531] = { + [sym__expression] = STATE(3350), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -217840,72 +216503,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1532] = { + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -217914,23 +216577,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -217941,85 +216604,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1533] = { + [sym__expression] = STATE(3739), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1534] = { + [sym__expression] = STATE(4279), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -218042,72 +216806,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1535] = { + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -218116,23 +216880,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -218143,85 +216907,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1536] = { + [sym__expression] = STATE(3286), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -218244,97 +217008,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1537] = { + [sym__expression] = STATE(474), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -218345,72 +217109,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1538] = { + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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(533), + [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(1668), + [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), + }, + [1539] = { + [sym__expression] = STATE(4133), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1540] = { + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -218419,23 +217385,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -218446,85 +217412,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1541] = { + [sym__expression] = STATE(4276), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -218547,162 +217513,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1542] = { + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1543] = { + [sym__expression] = STATE(4269), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -218711,7 +217677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -218749,85 +217715,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1544] = { + [sym__expression] = STATE(3353), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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_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), @@ -218850,85 +217816,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1545] = { + [sym__expression] = STATE(3352), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -218951,85 +217917,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1546] = { + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1547] = { + [sym__expression] = STATE(985), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1548] = { + [sym__expression] = STATE(4268), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219052,85 +218220,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1549] = { + [sym__expression] = STATE(3297), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219153,85 +218321,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1550] = { + [sym__expression] = STATE(3351), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219254,85 +218422,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1551] = { + [sym__expression] = STATE(4264), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219355,85 +218523,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1552] = { + [sym__expression] = STATE(4262), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219456,85 +218624,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1553] = { + [sym__expression] = STATE(3349), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219557,85 +218725,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1554] = { + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219658,61 +218826,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1555] = { + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -219721,7 +218889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -219759,85 +218927,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1556] = { + [sym__expression] = STATE(4275), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -219860,388 +219028,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1557] = { + [sym__expression] = STATE(4278), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1558] = { + [sym__expression] = STATE(3348), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -220264,388 +219230,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), - }, - [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), + [1559] = { + [sym__expression] = STATE(295), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1560] = { + [sym__expression] = STATE(4280), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -220668,186 +219432,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1561] = { + [sym__expression] = STATE(3347), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), + [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(1339), - [sym_label] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(1327), + [sym_label] = ACTIONS(265), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(333), + [anon_sym_if] = ACTIONS(251), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(335), - [anon_sym_return] = ACTIONS(337), + [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(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_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), @@ -220870,193 +219533,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1562] = { + [sym__expression] = STATE(285), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [1563] = { + [sym__expression] = STATE(2534), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [anon_sym_fun] = ACTIONS(1716), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -221072,400 +219735,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1564] = { + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1565] = { + [sym__expression] = STATE(4266), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [1566] = { + [sym__expression] = STATE(4265), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), }, - [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), + [1567] = { + [sym__expression] = STATE(4283), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1568] = { + [sym__expression] = STATE(3308), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), + }, + [1569] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -221476,92 +220341,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1570] = { + [sym__expression] = STATE(2190), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -221577,173 +220442,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1571] = { + [sym__expression] = STATE(1739), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1572] = { + [sym__expression] = STATE(4118), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1573] = { + [sym__expression] = STATE(3344), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), + }, + [1574] = { + [sym__expression] = STATE(3788), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1321), [sym_label] = ACTIONS(381), - [anon_sym_null] = ACTIONS(1922), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(375), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -221757,18 +220824,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -221779,198 +220846,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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), + [1575] = { + [sym__expression] = STATE(2030), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1576] = { + [sym__expression] = STATE(4116), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1577] = { + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1578] = { + [sym__expression] = STATE(3359), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), + }, + [1579] = { + [sym__expression] = STATE(4509), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1580] = { + [sym__expression] = STATE(4225), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3111), + [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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -221981,72 +221452,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1553] = { + [1581] = { [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__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1916), + [anon_sym_object] = ACTIONS(1904), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -222055,23 +221526,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -222082,299 +221553,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1582] = { + [sym__expression] = STATE(4513), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [1583] = { + [sym__expression] = STATE(4236), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [1584] = { + [sym__expression] = STATE(4234), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -222385,97 +221856,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1585] = { + [sym__expression] = STATE(4259), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -222486,72 +221957,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1586] = { + [sym__expression] = STATE(3337), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), + }, + [1587] = { + [sym__expression] = STATE(3312), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1536), + [sym_annotation] = STATE(1536), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1327), + [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), + }, + [1588] = { + [sym__expression] = STATE(4227), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1916), + [anon_sym_object] = ACTIONS(1904), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -222560,23 +222233,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -222587,72 +222260,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1589] = { + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1590] = { + [sym__expression] = STATE(4054), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1591] = { + [sym__expression] = STATE(4250), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1916), + [anon_sym_object] = ACTIONS(1904), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -222661,23 +222536,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -222688,72 +222563,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1592] = { + [sym__expression] = STATE(523), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1593] = { + [sym__expression] = STATE(4056), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1594] = { + [sym__expression] = STATE(4062), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1595] = { + [sym__expression] = STATE(4066), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1596] = { + [sym__expression] = STATE(4073), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1597] = { + [sym__expression] = STATE(2295), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -222767,18 +223147,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -222789,294 +223169,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1598] = { + [sym__expression] = STATE(4313), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1599] = { + [sym__expression] = STATE(2582), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), [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_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(429), - [anon_sym_try] = ACTIONS(431), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), [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), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1600] = { + [sym__expression] = STATE(2533), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [anon_sym_fun] = ACTIONS(1716), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -223092,1006 +223472,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), - }, - [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(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), - }, - [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), - [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), - }, - [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(555), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [1601] = { + [sym__expression] = STATE(287), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), [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), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -224102,274 +223573,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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(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), - }, - [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(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), + [1602] = { + [sym__expression] = STATE(4257), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1916), + [anon_sym_object] = ACTIONS(1904), [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -224378,23 +223647,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224405,97 +223674,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1603] = { + [sym__expression] = STATE(4074), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [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(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), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224506,97 +223775,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1604] = { + [sym__expression] = STATE(4081), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [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(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), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224607,97 +223876,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1605] = { + [sym__expression] = STATE(4306), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224708,97 +223977,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1606] = { + [sym__expression] = STATE(4305), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224809,97 +224078,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1607] = { + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -224910,198 +224179,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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), + [1608] = { + [sym__expression] = STATE(4084), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(639), + [sym__string_start] = ACTIONS(113), }, - [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), + [1609] = { + [sym__expression] = STATE(4237), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3074), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [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(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), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -225112,72 +224381,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1610] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3096), + }, + [1611] = { + [sym__expression] = STATE(4238), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1612] = { + [sym__expression] = STATE(2304), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -225191,18 +224662,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -225213,198 +224684,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1613] = { + [sym__expression] = STATE(4085), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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), }, - [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), + [1614] = { + [sym__expression] = STATE(4304), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -225415,97 +224886,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1615] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -225516,1814 +224987,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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), + [1616] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), - [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), - }, - [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), - [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), - }, - [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(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(183), - [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), - }, - [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(183), - [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), - }, - [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(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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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), + [1617] = { + [sym__expression] = STATE(4300), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -227334,364 +225189,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [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(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), + [1618] = { + [sym__expression] = STATE(4399), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [1619] = { + [sym__expression] = STATE(4240), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [1620] = { + [sym__expression] = STATE(4088), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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), + [1621] = { + [sym__expression] = STATE(4364), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -227738,501 +225593,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), + [1622] = { + [sym__expression] = STATE(4307), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(555), + [sym__string_start] = ACTIONS(113), }, - [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(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), + [1623] = { + [sym__expression] = STATE(4291), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [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(1912), + [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), }, - [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), + [1624] = { + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(471), + [sym__string_start] = ACTIONS(113), }, - [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), + [1625] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), [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__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [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_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), [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_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_return] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), [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), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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_real_literal] = ACTIONS(1912), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -228243,484 +225997,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1626] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_fun] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_super] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_when] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3131), + [anon_sym_continue_AT] = ACTIONS(3131), + [anon_sym_break_AT] = ACTIONS(3131), + [anon_sym_this_AT] = ACTIONS(3131), + [anon_sym_super_AT] = ACTIONS(3131), + [sym_real_literal] = ACTIONS(3131), + [sym_integer_literal] = ACTIONS(3129), + [sym_hex_literal] = ACTIONS(3131), + [sym_bin_literal] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3131), + }, + [1627] = { + [sym__expression] = STATE(289), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), [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_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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(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_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), + }, + [1628] = { + [sym__expression] = STATE(294), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [1629] = { + [sym__expression] = STATE(4484), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [1630] = { + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3602), + [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(1912), + [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), }, - [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), + [1631] = { + [sym__expression] = STATE(292), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1632] = { + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1503), + [sym_annotation] = STATE(1503), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(366), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3121), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3127), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1633] = { + [sym__expression] = STATE(4239), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1634] = { + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), @@ -228732,613 +226890,613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1635] = { + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [1636] = { + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(3123), + [sym__string_start] = ACTIONS(205), }, - [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), + [1637] = { + [sym__expression] = STATE(2255), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1638] = { + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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(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), + [1639] = { + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(555), + [sym__string_start] = ACTIONS(205), }, - [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), + [1640] = { + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [anon_sym_fun] = ACTIONS(1716), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -229354,905 +227512,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1641] = { + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [1642] = { + [sym__expression] = STATE(3777), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [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(1912), + [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), }, - [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(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), - }, - [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), + [1643] = { + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -230263,97 +227815,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1644] = { + [sym__expression] = STATE(4417), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1645] = { + [sym__expression] = STATE(4416), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1646] = { + [sym__expression] = STATE(4415), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1647] = { + [sym__expression] = STATE(321), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -230364,198 +228219,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1648] = { + [sym__expression] = STATE(2528), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1649] = { + [sym__expression] = STATE(4368), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1650] = { + [sym__expression] = STATE(525), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -230566,97 +228522,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1651] = { + [sym__expression] = STATE(4070), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1652] = { + [sym__expression] = STATE(529), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -230667,299 +228724,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1653] = { + [sym__expression] = STATE(519), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), + [anon_sym_fun] = ACTIONS(1708), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1654] = { + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_fun] = ACTIONS(1708), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1655] = { + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -230970,1809 +229027,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1656] = { + [sym__expression] = STATE(542), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), + [anon_sym_fun] = ACTIONS(1708), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1657] = { + [sym__expression] = STATE(692), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1658] = { + [sym__expression] = STATE(702), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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(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), + [1659] = { + [sym__expression] = STATE(703), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [1660] = { + [sym_type_constraints] = STATE(2234), + [sym_property_delegate] = STATE(2379), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(5701), + [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(5703), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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(3326), + [anon_sym_actual] = ACTIONS(3326), [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [1661] = { + [sym__expression] = STATE(704), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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(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), + [1662] = { + [sym__expression] = STATE(708), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), }, - [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), + [1663] = { + [sym__expression] = STATE(1420), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1664] = { + [sym__expression] = STATE(709), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), [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_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -232788,80 +229936,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1665] = { + [sym__expression] = STATE(518), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [anon_sym_fun] = ACTIONS(1708), [anon_sym_get] = ACTIONS(1664), [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(411), - [anon_sym_super] = ACTIONS(413), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_DASH] = ACTIONS(1027), [anon_sym_PLUS_PLUS] = ACTIONS(1029), @@ -232873,113 +230021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -232990,97 +230037,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1666] = { + [sym__expression] = STATE(538), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -233091,198 +230138,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1667] = { + [sym__expression] = STATE(1423), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [1668] = { + [sym__expression] = STATE(537), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -233293,97 +230340,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1669] = { + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), [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), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -233394,198 +230441,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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(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), + [1670] = { + [sym__expression] = STATE(686), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [1671] = { + [sym__expression] = STATE(690), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1672] = { + [sym_type_constraints] = STATE(2237), + [sym_property_delegate] = STATE(2377), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5709), + [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(5703), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), + }, + [1673] = { + [sym__expression] = STATE(1426), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1674] = { + [sym__expression] = STATE(700), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1675] = { + [sym__expression] = STATE(4125), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), + }, + [1676] = { + [sym__expression] = STATE(705), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1677] = { + [sym__expression] = STATE(706), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1678] = { + [sym__expression] = STATE(711), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1679] = { + [sym__expression] = STATE(1392), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1680] = { + [sym__expression] = STATE(278), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -233596,198 +231552,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1681] = { + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(3602), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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), }, - [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), + [1682] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1683] = { + [sym__expression] = STATE(1393), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1684] = { + [sym__expression] = STATE(1394), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1685] = { + [sym__expression] = STATE(1395), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1686] = { + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1687] = { + [sym__expression] = STATE(277), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), + [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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -233798,691 +232259,1196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(639), }, - [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), + [1688] = { + [sym_type_constraints] = STATE(2247), + [sym_property_delegate] = STATE(2371), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5711), + [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(5703), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), + }, + [1689] = { + [sym__expression] = STATE(276), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), [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_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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1690] = { + [sym__expression] = STATE(275), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), [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), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), [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_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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1691] = { + [sym__expression] = STATE(1396), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1692] = { + [sym__expression] = STATE(274), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), [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_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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1693] = { + [sym__expression] = STATE(1402), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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(3096), + [sym__string_start] = ACTIONS(555), }, - [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), + [1694] = { + [sym__expression] = STATE(4407), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(3127), + [sym__string_start] = ACTIONS(295), }, - [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), + [1695] = { + [sym__expression] = STATE(1403), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(639), + [sym__string_start] = ACTIONS(555), }, - [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), + [1696] = { + [sym__expression] = STATE(1405), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1697] = { + [sym__expression] = STATE(1406), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1698] = { + [sym__expression] = STATE(1407), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [1699] = { + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), [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), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), [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_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), [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_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(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -234490,112 +233456,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(469), }, - [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), + [1700] = { + [sym__expression] = STATE(1408), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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__expression] = STATE(273), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -234606,97 +233673,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1702] = { + [sym__expression] = STATE(279), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -234707,97 +233774,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1703] = { + [sym__expression] = STATE(271), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(597), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [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(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), + [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(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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -234808,97 +233875,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1704] = { + [sym__expression] = STATE(2257), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1705] = { + [sym__expression] = STATE(2262), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1706] = { + [sym__expression] = STATE(2265), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1707] = { + [sym__expression] = STATE(2250), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1708] = { + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -234909,97 +234380,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1709] = { + [sym__expression] = STATE(2249), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1710] = { + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1711] = { + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235010,97 +234683,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1712] = { + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235111,97 +234784,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1713] = { + [sym__expression] = STATE(461), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235212,198 +234885,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1714] = { + [sym__expression] = STATE(473), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235414,198 +234986,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1715] = { + [sym__expression] = STATE(477), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235616,198 +235087,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1716] = { + [sym__expression] = STATE(476), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -235818,299 +235188,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1717] = { + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1718] = { + [sym__expression] = STATE(472), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), + [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(1019), - [sym_label] = ACTIONS(1027), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1719] = { + [sym__expression] = STATE(2290), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(3142), + [sym__string_start] = ACTIONS(205), }, - [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), + [1720] = { + [sym__expression] = STATE(4406), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1721] = { + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -236121,97 +235693,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1722] = { + [sym__expression] = STATE(470), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1658), [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_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), [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_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), [anon_sym_when] = ACTIONS(599), [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_return] = ACTIONS(719), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), [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), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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_return_AT] = ACTIONS(533), [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_real_literal] = ACTIONS(1668), [sym_integer_literal] = ACTIONS(629), [sym_hex_literal] = ACTIONS(631), [sym_bin_literal] = ACTIONS(631), @@ -236222,804 +235794,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1723] = { + [sym__expression] = STATE(469), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), + [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(1303), - [sym_label] = ACTIONS(441), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1724] = { + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), + [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(1303), - [sym_label] = ACTIONS(441), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), [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_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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), + [1725] = { + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -237030,173 +236097,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [1726] = { + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), }, - [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), + [1727] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -237210,18 +236277,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -237232,72 +236299,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1728] = { + [sym__expression] = STATE(467), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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(533), + [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(1668), + [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), + }, + [1729] = { + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -237311,18 +236479,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -237333,72 +236501,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1730] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(5652), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [1731] = { + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -237412,18 +236681,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -237434,198 +236703,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1732] = { + [sym__expression] = STATE(464), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1724), + [sym_annotation] = STATE(1724), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(961), + [sym_label] = ACTIONS(971), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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(555), + [sym__string_start] = ACTIONS(639), }, - [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), + [1733] = { + [sym__expression] = STATE(4405), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1734] = { + [sym__expression] = STATE(281), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [1735] = { + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1736] = { + [sym__expression] = STATE(4452), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1737] = { + [sym__expression] = STATE(280), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [1738] = { + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -237636,1668 +237410,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [1739] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3184), [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_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), - [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_safe_nav] = ACTIONS(3602), [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), + [1740] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4539), [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), + [sym_label] = ACTIONS(4545), [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(5681), [anon_sym_QMARK_COLON] = ACTIONS(3195), [anon_sym_AMP_AMP] = ACTIONS(3195), [anon_sym_PIPE_PIPE] = ACTIONS(3195), @@ -239310,7 +237569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3193), [anon_sym_continue] = ACTIONS(3193), [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_COLON_COLON] = ACTIONS(4553), [anon_sym_BANG_EQ] = ACTIONS(3193), [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), [anon_sym_EQ_EQ] = ACTIONS(3193), @@ -239320,15 +237579,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_BANG_BANG] = ACTIONS(4571), [anon_sym_data] = ACTIONS(3193), [anon_sym_inner] = ACTIONS(3193), [anon_sym_value] = ACTIONS(3193), @@ -239349,54 +237608,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3195), [sym__backtick_identifier] = ACTIONS(3195), [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(4613), + [sym_safe_nav] = ACTIONS(4553), [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), + [1741] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4539), [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), + [sym_label] = ACTIONS(4545), [anon_sym_in] = ACTIONS(3186), [anon_sym_DOT_DOT] = ACTIONS(3188), [anon_sym_QMARK_COLON] = ACTIONS(3188), @@ -239411,7 +237670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3186), [anon_sym_continue] = ACTIONS(3186), [anon_sym_break] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(4613), + [anon_sym_COLON_COLON] = ACTIONS(4553), [anon_sym_BANG_EQ] = ACTIONS(3186), [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), [anon_sym_EQ_EQ] = ACTIONS(3186), @@ -239425,11 +237684,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_BANG_BANG] = ACTIONS(4631), + [anon_sym_BANG_BANG] = ACTIONS(4571), [anon_sym_data] = ACTIONS(3186), [anon_sym_inner] = ACTIONS(3186), [anon_sym_value] = ACTIONS(3186), @@ -239450,278 +237709,682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3188), [sym__backtick_identifier] = ACTIONS(3188), [sym__automatic_semicolon] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(4613), + [sym_safe_nav] = ACTIONS(4553), [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), + [1742] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4539), + [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_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(5677), + [sym_label] = ACTIONS(4545), + [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(4553), + [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(5699), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [1743] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [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(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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), [anon_sym_STAR] = ACTIONS(5677), - [sym_label] = ACTIONS(4601), - [anon_sym_in] = ACTIONS(3175), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3133), [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_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [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), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), }, - [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(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), + [1744] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(183), - [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), + [anon_sym_return_AT] = ACTIONS(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(3104), }, - [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), + [1745] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [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(4545), + [anon_sym_in] = ACTIONS(5679), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(5683), + [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(4553), + [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(5693), + [anon_sym_GT_EQ] = ACTIONS(5693), + [anon_sym_BANGin] = ACTIONS(5695), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [1746] = { + [sym__expression] = STATE(4474), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1747] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3100), + }, + [1748] = { + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -239735,18 +238398,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -239757,100 +238420,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1749] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [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(3890), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [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(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_this] = ACTIONS(3117), + [anon_sym_super] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), + }, + [1750] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(5681), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3112), + }, + [1751] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [1752] = { + [sym__expression] = STATE(539), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1753] = { + [sym__expression] = STATE(1610), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1754] = { + [sym__expression] = STATE(528), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(533), + [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(1668), + [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), + }, + [1755] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [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(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(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), @@ -239858,72 +239127,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1756] = { + [sym__expression] = STATE(1740), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1757] = { + [sym__expression] = STATE(1741), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1758] = { + [sym__expression] = STATE(1742), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1759] = { + [sym__expression] = STATE(2292), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -239937,18 +239509,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -239959,77 +239531,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1760] = { + [sym__expression] = STATE(1743), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), [anon_sym_continue] = ACTIONS(437), [anon_sym_break] = ACTIONS(437), [anon_sym_COLON_COLON] = ACTIONS(439), @@ -240038,195 +239610,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1761] = { + [sym__expression] = STATE(1744), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), [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), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1762] = { + [sym__expression] = STATE(1745), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1763] = { + [sym__expression] = STATE(1747), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1764] = { + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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(1749), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1766] = { + [sym__expression] = STATE(1750), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1767] = { + [sym__expression] = STATE(2296), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1678), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -240240,119 +240317,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -240363,186 +240339,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1768] = { + [sym__expression] = STATE(1751), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [1769] = { + [sym__expression] = STATE(2104), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3105), + [anon_sym_fun] = ACTIONS(3064), [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_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), [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_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -240550,188 +240526,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(469), }, - [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(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), + [1770] = { + [sym__expression] = STATE(4363), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(183), - [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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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), }, - [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), + [1771] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3108), + [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(3106), + [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(3106), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [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(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), + [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), + }, + [1772] = { + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -240745,18 +240822,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -240767,263 +240844,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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(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), + [1773] = { + [sym__expression] = STATE(2109), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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), + [1774] = { + [sym__expression] = STATE(4476), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -241032,7 +241008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -241070,416 +241046,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1775] = { + [sym__expression] = STATE(2099), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_return] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), [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), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1776] = { + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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(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), + [1777] = { + [sym__expression] = STATE(1249), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1778] = { + [sym__expression] = STATE(2266), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_return] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), [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_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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1779] = { + [sym__expression] = STATE(272), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [1746] = { - [sym_type_constraints] = STATE(2248), - [sym_property_delegate] = STATE(2360), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9249), + [1780] = { + [sym_type_constraints] = STATE(2217), + [sym_property_delegate] = STATE(2341), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -241489,61 +241566,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(5713), + [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(5703), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), @@ -241571,177 +241648,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [1781] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3096), + [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(3094), + [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(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(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(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3360), - [sym_safe_nav] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [1782] = { + [sym__expression] = STATE(4080), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1620), + [sym_annotation] = STATE(1620), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1337), + [sym_label] = ACTIONS(759), + [anon_sym_null] = ACTIONS(1910), + [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(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1783] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1784] = { + [sym__expression] = STATE(2526), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1785] = { + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -241755,18 +242135,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -241777,97 +242157,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1786] = { + [sym__expression] = STATE(2471), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -241878,72 +242258,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1787] = { + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [anon_sym_this] = ACTIONS(145), [anon_sym_super] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1349), [sym_label] = ACTIONS(175), - [anon_sym_null] = ACTIONS(1594), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -241957,18 +242337,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(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -241979,270 +242359,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1788] = { + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(433), - [anon_sym_return] = ACTIONS(435), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1789] = { + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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), + [1790] = { + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1791] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), [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(3890), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [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(3900), - [anon_sym_while] = ACTIONS(3171), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), [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_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(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_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(3918), [anon_sym_DASH] = ACTIONS(3918), [anon_sym_SLASH] = ACTIONS(3898), @@ -242251,1845 +242732,734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(1788), + [sym__backtick_identifier] = ACTIONS(3195), [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - }, - [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), + [1792] = { + [sym__expression] = STATE(1236), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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(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), + [1793] = { + [sym__expression] = STATE(1235), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), + [sym__string_start] = ACTIONS(469), }, - [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), + [1794] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [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(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), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [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), - [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__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3184), }, - [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(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), + [1795] = { + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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), + [1796] = { + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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), - }, - [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), - }, - [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(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), - }, - [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(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), - }, - [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), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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(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), + [1797] = { + [sym_type_constraints] = STATE(2210), + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5719), + [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(5703), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), - [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), }, - [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), + [1798] = { + [sym__expression] = STATE(2466), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -244100,97 +243470,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1799] = { + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), [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__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), + [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_data] = ACTIONS(1592), - [anon_sym_inner] = ACTIONS(1592), - [anon_sym_value] = ACTIONS(1592), - [anon_sym_expect] = ACTIONS(1592), - [anon_sym_actual] = ACTIONS(1592), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -244201,703 +243571,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1800] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [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(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(3160), + [anon_sym_DASH] = ACTIONS(3160), + [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(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(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__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), }, - [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), + [1801] = { + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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), - }, - [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), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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), + [1802] = { + [sym_function_body] = STATE(1144), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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(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), + [1803] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [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(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), }, - [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), + [1804] = { + [sym__expression] = STATE(1198), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -244908,173 +244076,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1805] = { + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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(1580), + [1806] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [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(3102), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [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(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [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), + }, + [1807] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [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(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(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(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1808] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3100), + [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(3098), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [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(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), + [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), + }, + [1809] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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), + }, + [1810] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [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), + }, + [1811] = { + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -245083,23 +244756,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -245110,186 +244783,85 @@ 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(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), + [1812] = { + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), [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_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), [anon_sym_data] = ACTIONS(1920), [anon_sym_inner] = ACTIONS(1920), [anon_sym_value] = ACTIONS(1920), @@ -245297,100 +244869,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), [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(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(469), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1813] = { + [sym__expression] = STATE(4315), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -245413,85 +244985,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1814] = { + [sym__expression] = STATE(4495), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -245514,61 +245086,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1815] = { + [sym__expression] = STATE(4464), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -245577,7 +245149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -245615,162 +245187,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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), + [1816] = { + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -245779,7 +245250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -245817,61 +245288,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1817] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3898), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [1818] = { + [sym__expression] = STATE(4410), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -245880,7 +245452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -245918,162 +245490,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1819] = { + [sym__expression] = STATE(4497), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -246082,7 +245553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -246120,198 +245591,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1820] = { + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(469), }, - [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), + [1821] = { + [sym__expression] = STATE(1781), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -246322,186 +245793,186 @@ 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(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), + [1822] = { + [sym__expression] = STATE(636), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(471), + [sym__string_start] = ACTIONS(205), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1823] = { + [sym__expression] = STATE(4319), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -246524,263 +245995,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1824] = { + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1825] = { + [sym__expression] = STATE(792), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [1826] = { + [sym__expression] = STATE(4424), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -246789,7 +246260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -246827,162 +246298,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1827] = { + [sym__expression] = STATE(762), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [1828] = { + [sym__expression] = STATE(4451), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -246991,7 +246462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -247029,61 +246500,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1829] = { + [sym__expression] = STATE(4453), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -247092,7 +246563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -247130,667 +246601,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), + [1830] = { + [sym_type_constraints] = STATE(2198), + [sym_property_delegate] = STATE(2330), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5721), + [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(5703), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = 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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [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), + [1831] = { + [sym__expression] = STATE(2506), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(471), + [sym__string_start] = ACTIONS(205), }, - [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(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), + [1832] = { + [sym__expression] = STATE(2501), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [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_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1833] = { + [sym__expression] = STATE(2500), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(471), + [sym__string_start] = ACTIONS(205), }, - [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), + [1834] = { + [sym__expression] = STATE(2499), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1835] = { + [sym__expression] = STATE(780), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1836] = { + [sym__expression] = STATE(4493), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -247799,7 +247270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -247837,97 +247308,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1837] = { + [sym__expression] = STATE(635), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -247938,186 +247409,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1838] = { + [sym__expression] = STATE(4500), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -248140,193 +247510,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1839] = { + [sym_type_constraints] = STATE(2197), + [sym_property_delegate] = STATE(2322), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5723), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), }, - [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), + [1840] = { + [sym__expression] = STATE(763), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -248342,72 +247712,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1841] = { + [sym__expression] = STATE(2497), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -248416,23 +247786,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248443,274 +247813,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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), + [1842] = { + [sym__expression] = STATE(2496), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -248719,23 +247887,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248746,173 +247914,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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), + [1843] = { + [sym__expression] = STATE(2495), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -248921,23 +247988,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -248948,476 +248015,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [1844] = { + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -249426,23 +248089,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249453,173 +248116,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), - }, - [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), + [1845] = { + [sym__expression] = STATE(2492), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -249628,23 +248190,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249655,97 +248217,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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(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), + [1846] = { + [sym__expression] = STATE(4444), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1847] = { + [sym__expression] = STATE(2480), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249756,97 +248419,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1848] = { + [sym__expression] = STATE(2596), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1849] = { + [sym__expression] = STATE(630), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249857,97 +248621,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1850] = { + [sym__expression] = STATE(2453), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1851] = { + [sym__expression] = STATE(1791), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -249958,501 +248823,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1852] = { + [sym__expression] = STATE(625), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1853] = { + [sym__expression] = STATE(758), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), }, - [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), + [1854] = { + [sym__expression] = STATE(1794), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1855] = { + [sym__expression] = STATE(1800), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1856] = { + [sym__expression] = STATE(1803), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250463,198 +249328,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), + [1857] = { + [sym__expression] = STATE(1806), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1858] = { + [sym__expression] = STATE(760), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1672), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [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(533), + [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), + }, + [1859] = { + [sym__expression] = STATE(1807), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250665,97 +249631,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1860] = { + [sym__expression] = STATE(1808), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250766,97 +249732,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1861] = { + [sym__expression] = STATE(1809), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250867,97 +249833,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1862] = { + [sym__expression] = STATE(628), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(161), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [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(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), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -250968,97 +249934,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1863] = { + [sym__expression] = STATE(1810), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [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_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), [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), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -251069,173 +250035,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1864] = { + [sym__expression] = STATE(632), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(471), + [sym__string_start] = ACTIONS(205), }, - [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), + [1865] = { + [sym_type_constraints] = STATE(2202), + [sym_property_delegate] = STATE(2325), + [sym_getter] = STATE(4799), + [sym_setter] = STATE(4799), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_DASH_GT] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + }, + [1866] = { + [sym__expression] = STATE(1272), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -251244,23 +250311,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -251271,92 +250338,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1867] = { + [sym__expression] = STATE(1817), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1868] = { + [sym__expression] = STATE(1419), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [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(1045), - [sym_label] = ACTIONS(1053), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), [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_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -251372,1374 +250540,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [1869] = { + [sym__expression] = STATE(2083), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1870] = { + [sym__expression] = STATE(634), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), + [1871] = { + [sym__expression] = STATE(633), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1872] = { + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1873] = { + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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(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), + [1874] = { + [sym__expression] = STATE(2098), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1875] = { + [sym__expression] = STATE(4351), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -252786,566 +251247,3192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1876] = { + [sym__expression] = STATE(629), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1877] = { + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1878] = { + [sym__expression] = STATE(2066), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1869), + [sym_annotation] = STATE(1869), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1670), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1301), + [sym_label] = ACTIONS(701), + [anon_sym_null] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(695), + [anon_sym_when] = ACTIONS(163), + [anon_sym_try] = ACTIONS(165), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_return] = ACTIONS(699), + [anon_sym_continue] = ACTIONS(171), + [anon_sym_break] = ACTIONS(171), + [anon_sym_COLON_COLON] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1879] = { + [sym__expression] = STATE(631), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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(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), + [1880] = { + [sym__expression] = STATE(627), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1881] = { + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1882] = { + [sym__expression] = STATE(383), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1883] = { + [sym__expression] = STATE(403), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1884] = { + [sym__expression] = STATE(399), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1885] = { + [sym__expression] = STATE(401), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1886] = { + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1887] = { + [sym__expression] = STATE(390), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1888] = { + [sym__expression] = STATE(2511), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1889] = { + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1890] = { + [sym__expression] = STATE(386), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1891] = { + [sym__expression] = STATE(398), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1892] = { + [sym__expression] = STATE(393), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1893] = { + [sym__expression] = STATE(626), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1894] = { + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [1895] = { + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [1896] = { + [sym__expression] = STATE(2463), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1897] = { + [sym_type_constraints] = STATE(2248), + [sym_property_delegate] = STATE(2369), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5731), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [1898] = { + [sym_type_constraints] = STATE(2244), + [sym_property_delegate] = STATE(2361), + [sym_getter] = STATE(3407), + [sym_setter] = STATE(3407), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(5735), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_DASH_GT] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + }, + [1899] = { + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1900] = { + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [1901] = { + [sym__expression] = STATE(4243), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1902] = { + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1903] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1903), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(5739), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4667), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), + }, + [1904] = { + [sym__expression] = STATE(371), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [1905] = { + [sym_function_body] = STATE(1185), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [1906] = { + [sym__expression] = STATE(4361), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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), }, - [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), + [1907] = { + [sym__expression] = STATE(4516), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -253354,7 +254441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -253392,61 +254479,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1908] = { + [sym__expression] = STATE(4502), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -253455,7 +254542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -253493,85 +254580,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1909] = { + [sym__expression] = STATE(4359), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -253594,162 +254681,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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), + [1910] = { + [sym__expression] = STATE(4454), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -253758,7 +254744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -253796,162 +254782,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1911] = { + [sym__expression] = STATE(1626), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4686), + [sym__string_start] = ACTIONS(469), }, - [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), + [1912] = { + [sym__expression] = STATE(4511), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -253960,7 +254946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -253998,85 +254984,186 @@ 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(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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1913] = { + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1914] = { + [sym__expression] = STATE(4349), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -254099,263 +255186,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1915] = { + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(3169), + [sym__string_start] = ACTIONS(205), }, - [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), + [1916] = { + [sym_function_body] = STATE(1145), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [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), + [1917] = { + [sym__expression] = STATE(4504), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -254364,7 +255451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -254402,85 +255489,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1918] = { + [sym_function_body] = STATE(1101), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [1919] = { + [sym__expression] = STATE(4356), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -254503,85 +255691,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [1920] = { + [sym__expression] = STATE(4354), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(5742), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -254604,61 +255792,61 @@ 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(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), + [1921] = { + [sym__expression] = STATE(4446), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -254667,7 +255855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -254705,186 +255893,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [1922] = { + [sym__expression] = STATE(2426), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [1923] = { + [sym__expression] = STATE(2057), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1769), + [sym_annotation] = STATE(1769), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(929), + [sym_label] = ACTIONS(939), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3070), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1924] = { + [sym__expression] = STATE(3729), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1925] = { + [sym__expression] = STATE(2425), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1926] = { + [sym__expression] = STATE(2423), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1927] = { + [sym__expression] = STATE(2421), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1928] = { + [sym__expression] = STATE(2442), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1929] = { + [sym__expression] = STATE(4348), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5659), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(5744), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -254907,61 +256701,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1930] = { + [sym__expression] = STATE(2429), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1931] = { + [sym__expression] = STATE(2430), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1932] = { + [sym__expression] = STATE(2435), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1933] = { + [sym__expression] = STATE(2450), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1934] = { + [sym__expression] = STATE(4443), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -254970,7 +257168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255008,186 +257206,287 @@ 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(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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1935] = { + [sym__expression] = STATE(2440), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1936] = { + [sym__expression] = STATE(2433), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1937] = { + [sym__expression] = STATE(4350), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -255210,173 +257509,1183 @@ 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(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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1938] = { + [sym__expression] = STATE(3728), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1939] = { + [sym__expression] = STATE(3749), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1940] = { + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1941] = { + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1942] = { + [sym_function_body] = STATE(1095), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = 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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), + }, + [1943] = { + [sym__expression] = STATE(2455), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1944] = { + [sym__expression] = STATE(2508), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), [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_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [1945] = { + [sym__expression] = STATE(3748), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1946] = { + [sym__expression] = STATE(3742), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1947] = { + [sym__expression] = STATE(3747), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1948] = { + [sym__expression] = STATE(3745), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1949] = { + [sym__expression] = STATE(1269), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), [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__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1588), + [anon_sym_object] = ACTIONS(1620), [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), [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_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), [anon_sym_if] = ACTIONS(1702), [anon_sym_when] = ACTIONS(163), [anon_sym_try] = ACTIONS(165), @@ -255385,23 +258694,23 @@ 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(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), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(183), [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_real_literal] = ACTIONS(1628), [sym_integer_literal] = ACTIONS(195), [sym_hex_literal] = ACTIONS(197), [sym_bin_literal] = ACTIONS(197), @@ -255412,61 +258721,1071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(205), }, - [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), + [1950] = { + [sym__expression] = STATE(2457), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(897), + [sym_label] = ACTIONS(907), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1951] = { + [sym__expression] = STATE(3744), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1952] = { + [sym__expression] = STATE(3743), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1953] = { + [sym__expression] = STATE(3740), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1954] = { + [sym__expression] = STATE(3738), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1955] = { + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [1956] = { + [sym_function_body] = STATE(1091), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [1957] = { + [sym__expression] = STATE(3737), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1958] = { + [sym__expression] = STATE(3736), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1938), + [sym_annotation] = STATE(1938), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1321), + [sym_label] = ACTIONS(381), + [anon_sym_null] = ACTIONS(1910), + [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(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [1959] = { + [sym_function_body] = STATE(1075), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_object] = ACTIONS(4385), + [anon_sym_fun] = 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(4387), + [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_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(4387), + [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), + }, + [1960] = { + [sym__expression] = STATE(4501), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -255475,7 +259794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255513,61 +259832,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1961] = { + [sym__expression] = STATE(4463), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -255576,7 +259895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255614,61 +259933,61 @@ 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(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), + [1962] = { + [sym__expression] = STATE(4486), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -255677,7 +259996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255715,61 +260034,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1963] = { + [sym__expression] = STATE(4485), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -255778,7 +260097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255816,61 +260135,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1964] = { + [sym__expression] = STATE(4483), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -255879,7 +260198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -255917,87 +260236,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1965] = { + [sym__expression] = STATE(4312), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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_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), @@ -256018,61 +260337,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1966] = { + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -256081,7 +260400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -256119,61 +260438,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1967] = { + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [1968] = { + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -256182,7 +260602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -256220,162 +260640,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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(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__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(4613), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), - }, - [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), + [1969] = { + [sym__expression] = STATE(4482), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -256384,7 +260703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -256422,61 +260741,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1970] = { + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -256485,7 +260804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -256523,85 +260842,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1971] = { + [sym__expression] = STATE(4317), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -256624,61 +260943,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1972] = { + [sym__expression] = STATE(4465), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -256687,7 +261006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -256725,893 +261044,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(471), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1973] = { + [sym__expression] = STATE(4459), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -257634,364 +261145,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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), + [1974] = { + [sym__expression] = STATE(4458), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -258000,7 +261208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -258038,181 +261246,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1975] = { + [sym__expression] = STATE(3894), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1976] = { + [sym__expression] = STATE(1104), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), + [anon_sym_fun] = ACTIONS(1716), [anon_sym_get] = ACTIONS(1652), [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(497), - [anon_sym_super] = ACTIONS(499), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(1053), [anon_sym_DASH] = ACTIONS(1053), [anon_sym_PLUS_PLUS] = ACTIONS(1055), @@ -258224,7 +261432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -258240,465 +261448,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [1977] = { + [sym__expression] = STATE(4419), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(4441), + [sym__string_start] = ACTIONS(295), }, - [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), + [1978] = { + [sym__expression] = STATE(3859), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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), }, - [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), + [1979] = { + [sym__expression] = STATE(4457), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1980] = { + [sym__expression] = STATE(3938), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [1981] = { + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -258707,7 +261915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -258745,85 +261953,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1982] = { + [sym__expression] = STATE(3936), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -258846,1499 +262054,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(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(183), - [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), - }, - [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(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), - }, - [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(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(183), - [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), - }, - [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(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), - }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1983] = { + [sym__expression] = STATE(3935), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -260361,85 +262155,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [1984] = { + [sym__expression] = STATE(3934), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -260462,691 +262256,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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), + [1985] = { + [sym__expression] = STATE(3931), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -261169,186 +262357,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1986] = { + [sym__expression] = STATE(3930), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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), }, - [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(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), + [1987] = { + [sym__expression] = STATE(3929), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1287), + [sym_label] = ACTIONS(817), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(333), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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(1842), [anon_sym_inner] = ACTIONS(1842), [anon_sym_value] = ACTIONS(1842), @@ -261371,1082 +262559,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [1988] = { + [sym__expression] = STATE(3928), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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(183), - [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), - }, - [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(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), + [1989] = { + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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(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), + [1990] = { + [sym__expression] = STATE(3919), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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), }, - [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), + [1991] = { + [sym__expression] = STATE(3914), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1992] = { + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(411), [anon_sym_super] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1295), [sym_label] = ACTIONS(441), - [anon_sym_null] = ACTIONS(1666), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), @@ -262460,599 +263042,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - }, - [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1993] = { + [sym__expression] = STATE(4040), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1994] = { + [sym__expression] = STATE(966), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [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), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1995] = { + [sym__expression] = STATE(4043), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [1996] = { + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(411), [anon_sym_super] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1295), [sym_label] = ACTIONS(441), - [anon_sym_null] = ACTIONS(1666), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), @@ -263066,102 +263446,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [1997] = { + [sym__expression] = STATE(4471), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1998] = { + [sym__expression] = STATE(4472), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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), + }, + [1999] = { + [sym__expression] = STATE(4039), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1993), + [sym_annotation] = STATE(1993), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1287), + [sym_label] = ACTIONS(817), + [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(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(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), + }, + [2000] = { + [sym__expression] = STATE(4255), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [2001] = { + [sym__expression] = STATE(2458), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1941), + [sym_annotation] = STATE(1941), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), [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), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), [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_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), [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_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), [anon_sym_PLUS] = ACTIONS(907), [anon_sym_DASH] = ACTIONS(907), [anon_sym_PLUS_PLUS] = ACTIONS(909), @@ -263173,7 +263957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1652), [anon_sym_actual] = ACTIONS(1652), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(449), + [anon_sym_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -263189,779 +263973,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [2002] = { + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [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_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), + [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), + [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(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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(471), + [sym__string_start] = ACTIONS(469), }, - [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), + [2003] = { + [sym__expression] = STATE(1059), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(471), + [sym__string_start] = ACTIONS(555), }, - [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), + [2004] = { + [sym__expression] = STATE(4400), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [2005] = { + [sym__expression] = STATE(4450), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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(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), + [2006] = { + [sym__expression] = STATE(4448), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(471), + [sym__string_start] = ACTIONS(295), }, - [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), + [2007] = { + [sym__expression] = STATE(4442), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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(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), + [2008] = { + [sym__expression] = STATE(4256), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), [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), + [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(1912), + [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(471), + [sym__string_start] = ACTIONS(113), }, - [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), + [2009] = { + [sym__expression] = STATE(934), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(411), [anon_sym_super] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1295), [sym_label] = ACTIONS(441), - [anon_sym_null] = ACTIONS(1666), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), @@ -263975,215 +264759,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), + [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(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), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(469), }, - [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), + [2010] = { + [sym__expression] = STATE(752), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -264199,193 +264882,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [2011] = { + [sym__expression] = STATE(4441), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), + [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(1141), + [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(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), + [anon_sym_return_AT] = ACTIONS(273), + [anon_sym_continue_AT] = 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(555), + [sym__string_start] = ACTIONS(295), }, - [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), + [2012] = { + [sym__expression] = STATE(769), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -264401,92 +265084,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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), + [2013] = { + [sym__expression] = STATE(772), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -264502,193 +265185,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(555), }, - [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(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), - }, - [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), + [2014] = { + [sym__expression] = STATE(754), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -264704,193 +265286,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [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), + [2015] = { + [sym__expression] = STATE(759), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -264906,92 +265387,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2016] = { + [sym__expression] = STATE(779), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1519), + [sym_annotation] = STATE(1519), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), + [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(897), - [sym_label] = ACTIONS(907), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1261), + [sym_label] = ACTIONS(791), [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_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -265007,85 +265488,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2017] = { + [sym__expression] = STATE(4524), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -265108,294 +265589,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2018] = { + [sym__expression] = STATE(1066), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(483), [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), + [anon_sym_fun] = ACTIONS(1716), [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_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), [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_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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_return_AT] = ACTIONS(533), [anon_sym_continue_AT] = ACTIONS(535), [anon_sym_break_AT] = ACTIONS(537), [anon_sym_this_AT] = ACTIONS(539), @@ -265411,85 +265690,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [2019] = { + [sym__expression] = STATE(4437), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -265512,85 +265791,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2020] = { + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -265613,85 +265892,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2021] = { + [sym__expression] = STATE(4232), + [sym__unary_expression] = STATE(5234), + [sym_postfix_expression] = STATE(5234), + [sym_call_expression] = STATE(5234), + [sym_indexing_expression] = STATE(5234), + [sym_navigation_expression] = STATE(5234), + [sym_prefix_expression] = STATE(5234), + [sym_as_expression] = STATE(5234), + [sym_spread_expression] = STATE(5234), + [sym__binary_expression] = STATE(5234), + [sym_multiplicative_expression] = STATE(5234), + [sym_additive_expression] = STATE(5234), + [sym_range_expression] = STATE(5234), + [sym_infix_expression] = STATE(5234), + [sym_elvis_expression] = STATE(5234), + [sym_check_expression] = STATE(5234), + [sym_comparison_expression] = STATE(5234), + [sym_equality_expression] = STATE(5234), + [sym_conjunction_expression] = STATE(5234), + [sym_disjunction_expression] = STATE(5234), + [sym__primary_expression] = STATE(5234), + [sym_parenthesized_expression] = STATE(5234), + [sym_collection_literal] = STATE(5234), + [sym__literal_constant] = STATE(5234), + [sym_string_literal] = STATE(5234), + [sym_lambda_literal] = STATE(5234), + [sym_anonymous_function] = STATE(5234), + [sym__function_literal] = STATE(5234), + [sym_object_literal] = STATE(5234), + [sym_this_expression] = STATE(5234), + [sym_super_expression] = STATE(5234), + [sym_if_expression] = STATE(5234), + [sym_when_expression] = STATE(5234), + [sym_try_expression] = STATE(5234), + [sym_jump_expression] = STATE(5234), + [sym_callable_reference] = STATE(5234), + [sym__prefix_unary_operator] = STATE(1633), + [sym_annotation] = STATE(1633), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(5115), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(5254), + [sym__break_at] = STATE(5254), + [sym__this_at] = STATE(5257), + [sym__super_at] = STATE(5231), + [sym_unsigned_literal] = STATE(5234), + [sym_long_literal] = STATE(5234), + [sym_boolean_literal] = STATE(5234), + [sym_character_literal] = STATE(5234), + [sym__lexical_identifier] = STATE(4619), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1904), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(993), + [sym_label] = ACTIONS(1001), + [anon_sym_null] = ACTIONS(1910), + [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(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_data] = ACTIONS(1908), + [anon_sym_inner] = ACTIONS(1908), + [anon_sym_value] = ACTIONS(1908), + [anon_sym_expect] = ACTIONS(1908), + [anon_sym_actual] = ACTIONS(1908), + [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(1912), + [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), + }, + [2022] = { + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -265714,85 +266094,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2023] = { + [sym__expression] = STATE(955), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2024] = { + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -265815,287 +266296,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2025] = { + [sym__expression] = STATE(1074), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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(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), + [2026] = { + [sym__expression] = STATE(1077), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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(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), + [2027] = { + [sym__expression] = STATE(4325), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -266118,186 +266599,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), + [2028] = { + [sym__expression] = STATE(4460), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -266320,85 +266700,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [2029] = { + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -266421,287 +266801,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2030] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3150), + [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(3148), + [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(3148), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), + [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(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [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), + [2031] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(3108), }, - [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(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), + [2032] = { + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -266724,162 +267104,1172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), + [2033] = { + [sym__expression] = STATE(1159), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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), }, - [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), + [2034] = { + [sym__expression] = STATE(1160), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2035] = { + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2036] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [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(4545), + [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(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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [2037] = { + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2038] = { + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2039] = { + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2040] = { + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2041] = { + [sym__expression] = STATE(291), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [2042] = { + [sym__expression] = STATE(293), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [2043] = { + [sym__expression] = STATE(290), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [2044] = { + [sym__expression] = STATE(4506), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -266888,7 +268278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -266926,61 +268316,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2045] = { + [sym__expression] = STATE(4508), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -266989,7 +268379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -267027,162 +268417,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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), + [2046] = { + [sym__expression] = STATE(4322), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -267229,577 +268518,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2047] = { + [sym__expression] = STATE(288), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2048] = { + [sym__expression] = STATE(286), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [2049] = { + [sym__expression] = STATE(284), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [2050] = { + [sym__expression] = STATE(967), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), [sym__alpha_identifier] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1612), [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1914), [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_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), [anon_sym_this] = ACTIONS(411), [anon_sym_super] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1295), [sym_label] = ACTIONS(441), - [anon_sym_null] = ACTIONS(1666), + [anon_sym_null] = ACTIONS(1922), [anon_sym_if] = ACTIONS(427), [anon_sym_when] = ACTIONS(429), [anon_sym_try] = ACTIONS(431), @@ -267813,992 +268900,1699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(443), [anon_sym_DASH_DASH] = ACTIONS(443), [anon_sym_BANG] = ACTIONS(443), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2051] = { + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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), - }, - [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(273), - [anon_sym_continue_AT] = 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), - }, - [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(273), - [anon_sym_continue_AT] = 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_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), }, - [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), + [2052] = { + [sym__expression] = STATE(322), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2053] = { + [sym__expression] = STATE(325), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [2054] = { + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [2055] = { + [sym__expression] = STATE(331), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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(273), - [anon_sym_continue_AT] = 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), + [anon_sym_return_AT] = ACTIONS(533), + [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(1668), + [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), }, - [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), + [2056] = { + [sym__expression] = STATE(329), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1726), + [sym_annotation] = STATE(1726), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(569), [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), + [anon_sym_fun] = ACTIONS(1708), [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_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1019), + [sym_label] = ACTIONS(1027), [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_if] = ACTIONS(1710), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [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), + [anon_sym_return_AT] = ACTIONS(533), + [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(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_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(471), + [sym__string_start] = ACTIONS(639), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2057] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [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(4545), + [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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(273), - [anon_sym_continue_AT] = 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), + [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(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), + [sym__string_start] = ACTIONS(3184), }, - [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(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), + [2058] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2059), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(5746), + [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_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(273), - [anon_sym_continue_AT] = 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), + [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(295), + [sym__string_start] = ACTIONS(4686), }, - [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), + [2059] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1903), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(5746), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [2060] = { + [sym__expression] = STATE(963), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2061] = { + [sym__expression] = STATE(810), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2062] = { + [sym__expression] = STATE(811), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2063] = { + [sym__expression] = STATE(801), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2064] = { + [sym__expression] = STATE(802), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2065] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2066] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3908), + [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(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(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), + }, + [2067] = { + [sym__expression] = STATE(4518), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -268807,7 +270601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -268845,61 +270639,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2068] = { + [sym__expression] = STATE(800), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2069] = { + [sym__expression] = STATE(808), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2070] = { + [sym__expression] = STATE(4490), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -268908,7 +270904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -268946,85 +270942,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [2071] = { + [sym__expression] = STATE(956), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2072] = { + [sym__expression] = STATE(4489), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -269047,61 +271144,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2073] = { + [sym__expression] = STATE(945), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2074] = { + [sym__expression] = STATE(4475), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269110,7 +271308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269148,85 +271346,994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [2075] = { + [sym__expression] = STATE(943), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2076] = { + [sym__expression] = STATE(944), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2077] = { + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2078] = { + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2079] = { + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(248), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1349), + [sym_label] = ACTIONS(175), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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(950), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1798), + [sym_annotation] = STATE(1798), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1700), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(1115), + [sym_label] = ACTIONS(1123), + [anon_sym_null] = ACTIONS(1626), + [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(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_data] = ACTIONS(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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_function_body] = STATE(1045), + [sym__block] = STATE(1115), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), + }, + [2082] = { + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2083] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3154), + [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(3152), + [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(3152), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [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(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [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), + }, + [2084] = { + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -269249,61 +272356,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2085] = { + [sym__expression] = STATE(4438), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269312,7 +272419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269350,61 +272457,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2086] = { + [sym__expression] = STATE(4402), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269413,7 +272520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269451,162 +272558,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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), + [2087] = { + [sym__expression] = STATE(4401), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269615,7 +272621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269653,89 +272659,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2088] = { + [sym__expression] = STATE(4311), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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_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), @@ -269754,61 +272760,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2089] = { + [sym__expression] = STATE(4414), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269817,7 +272823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269855,61 +272861,1374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2090] = { + [sym__expression] = STATE(395), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [2091] = { + [sym__expression] = STATE(370), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2092] = { + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2093] = { + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2094] = { + [sym__expression] = STATE(375), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2095] = { + [sym__expression] = STATE(364), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2096] = { + [sym__expression] = STATE(365), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2097] = { + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2098] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1857), + [sym__in_operator] = STATE(1856), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1854), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1851), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3890), + [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), + }, + [2099] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [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(4545), + [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(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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [2100] = { + [sym__expression] = STATE(359), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2101] = { + [sym__expression] = STATE(362), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2102] = { + [sym__expression] = STATE(368), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2103] = { + [sym__expression] = STATE(4425), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -269918,7 +274237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -269956,61 +274275,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2104] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5677), + [sym_label] = ACTIONS(4545), + [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(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [2105] = { + [sym__expression] = STATE(374), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2106] = { + [sym__expression] = STATE(378), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2107] = { + [sym__expression] = STATE(379), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2108] = { + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270019,7 +274742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270057,61 +274780,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2109] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1760), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1757), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1756), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5675), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [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(4545), + [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(4553), + [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(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [2110] = { + [sym__expression] = STATE(360), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(2093), + [sym_annotation] = STATE(2093), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1662), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1307), + [sym_label] = ACTIONS(611), + [anon_sym_null] = ACTIONS(1666), + [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(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(533), + [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(1668), + [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), + }, + [2111] = { + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270120,7 +275045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270158,178 +275083,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2112] = { + [sym__expression] = STATE(4314), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [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), - }, - [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(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_throw] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1996), [anon_sym_continue] = ACTIONS(261), [anon_sym_break] = ACTIONS(261), [anon_sym_COLON_COLON] = ACTIONS(263), @@ -270360,61 +275184,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2113] = { + [sym__expression] = STATE(1425), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1673), + [sym_annotation] = STATE(1673), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1650), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1241), + [sym_label] = ACTIONS(525), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(511), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_return] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(525), + [anon_sym_DASH] = ACTIONS(525), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [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(533), + [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), + }, + [2114] = { + [sym__expression] = STATE(4449), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270423,7 +275348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270461,85 +275386,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2115] = { + [sym__expression] = STATE(4331), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(5748), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -270562,85 +275487,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(1580), - [anon_sym_LBRACK] = ACTIONS(213), + [2116] = { + [sym__expression] = STATE(380), + [sym__unary_expression] = STATE(1083), + [sym_postfix_expression] = STATE(1083), + [sym_call_expression] = STATE(1083), + [sym_indexing_expression] = STATE(1083), + [sym_navigation_expression] = STATE(1083), + [sym_prefix_expression] = STATE(1083), + [sym_as_expression] = STATE(1083), + [sym_spread_expression] = STATE(1083), + [sym__binary_expression] = STATE(1083), + [sym_multiplicative_expression] = STATE(1083), + [sym_additive_expression] = STATE(1083), + [sym_range_expression] = STATE(1083), + [sym_infix_expression] = STATE(1083), + [sym_elvis_expression] = STATE(1083), + [sym_check_expression] = STATE(1083), + [sym_comparison_expression] = STATE(1083), + [sym_equality_expression] = STATE(1083), + [sym_conjunction_expression] = STATE(1083), + [sym_disjunction_expression] = STATE(1083), + [sym__primary_expression] = STATE(1083), + [sym_parenthesized_expression] = STATE(1083), + [sym_collection_literal] = STATE(1083), + [sym__literal_constant] = STATE(1083), + [sym_string_literal] = STATE(1083), + [sym_lambda_literal] = STATE(1083), + [sym_anonymous_function] = STATE(1083), + [sym__function_literal] = STATE(1083), + [sym_object_literal] = STATE(1083), + [sym_this_expression] = STATE(1083), + [sym_super_expression] = STATE(1083), + [sym_if_expression] = STATE(1083), + [sym_when_expression] = STATE(1083), + [sym_try_expression] = STATE(1083), + [sym_jump_expression] = STATE(1083), + [sym_callable_reference] = STATE(1083), + [sym__prefix_unary_operator] = STATE(1881), + [sym_annotation] = STATE(1881), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(1079), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1087), + [sym__break_at] = STATE(1087), + [sym__this_at] = STATE(1090), + [sym__super_at] = STATE(1081), + [sym_unsigned_literal] = STATE(1083), + [sym_long_literal] = STATE(1083), + [sym_boolean_literal] = STATE(1083), + [sym_character_literal] = STATE(1083), + [sym__lexical_identifier] = STATE(825), + [sym__alpha_identifier] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_object] = ACTIONS(1660), + [anon_sym_fun] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1664), + [anon_sym_set] = ACTIONS(1664), + [anon_sym_this] = ACTIONS(581), + [anon_sym_super] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(1343), + [sym_label] = ACTIONS(733), + [anon_sym_null] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(727), + [anon_sym_when] = ACTIONS(599), + [anon_sym_try] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_return] = ACTIONS(731), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(735), + [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(533), + [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(1668), + [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), + }, + [2117] = { + [sym__expression] = STATE(4330), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -270663,61 +275689,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2118] = { + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2119] = { + [sym__expression] = STATE(4408), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270726,7 +275853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270764,61 +275891,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2120] = { + [sym__expression] = STATE(4404), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270827,7 +275954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270865,61 +275992,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2121] = { + [sym__expression] = STATE(4469), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -270928,7 +276055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -270966,61 +276093,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2122] = { + [sym__expression] = STATE(4470), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271029,7 +276156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271067,85 +276194,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2123] = { + [sym__expression] = STATE(4328), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -271168,61 +276295,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2124] = { + [sym__expression] = STATE(4473), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271231,7 +276358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271269,61 +276396,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2125] = { + [sym__expression] = STATE(4512), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271332,7 +276459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271370,61 +276497,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2126] = { + [sym__expression] = STATE(4515), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271433,7 +276560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271471,85 +276598,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(4832), - [sym__break_at] = STATE(4832), - [sym__this_at] = STATE(4752), - [sym__super_at] = STATE(4882), - [sym_unsigned_literal] = STATE(4772), - [sym_long_literal] = STATE(4772), - [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), + [2127] = { + [sym__expression] = STATE(4323), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), + [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(1115), - [sym_label] = ACTIONS(339), + [anon_sym_STAR] = ACTIONS(869), + [sym_label] = ACTIONS(877), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(1992), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), + [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(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(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), @@ -271572,61 +276699,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2128] = { + [sym__expression] = STATE(4519), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271635,7 +276762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271673,61 +276800,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2129] = { + [sym__expression] = STATE(4496), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271736,7 +276863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271774,61 +276901,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2130] = { + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271837,7 +276964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271875,61 +277002,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2131] = { + [sym__expression] = STATE(4498), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -271938,7 +277065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -271976,61 +277103,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2132] = { + [sym__expression] = STATE(4505), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272039,7 +277166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272077,61 +277204,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2133] = { + [sym__expression] = STATE(4461), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272140,7 +277267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272178,61 +277305,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2134] = { + [sym__expression] = STATE(4456), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272241,7 +277368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272279,85 +277406,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2135] = { + [sym__expression] = STATE(4522), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -272380,61 +277507,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2136] = { + [sym__expression] = STATE(4523), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272443,7 +277570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272481,263 +277608,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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(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), - }, - [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(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), - }, - [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), + [2137] = { + [sym__expression] = STATE(4525), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272746,7 +277671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272784,61 +277709,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2138] = { + [sym__expression] = STATE(4521), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272847,7 +277772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272885,61 +277810,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2139] = { + [sym__expression] = STATE(2301), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), + }, + [2140] = { + [sym__expression] = STATE(4520), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -272948,7 +277974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -272986,85 +278012,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2141] = { + [sym__expression] = STATE(4514), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -273087,61 +278113,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2142] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1903), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [2143] = { + [sym__expression] = STATE(4527), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273150,7 +278277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273188,61 +278315,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2144] = { + [sym__expression] = STATE(4526), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273251,7 +278378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273289,61 +278416,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2145] = { + [sym__expression] = STATE(2283), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2146] = { + [sym__expression] = STATE(4510), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273352,7 +278580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273390,61 +278618,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2147] = { + [sym__expression] = STATE(2280), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2148] = { + [sym__expression] = STATE(4494), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273453,7 +278782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273491,162 +278820,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = 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), - }, - [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), + [2149] = { + [sym__expression] = STATE(4492), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273655,7 +278883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273693,61 +278921,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2150] = { + [sym__expression] = STATE(2279), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2151] = { + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2152] = { + [sym__expression] = STATE(2276), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2153] = { + [sym__expression] = STATE(2275), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2154] = { + [sym__expression] = STATE(4477), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273756,7 +279388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273794,85 +279426,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2155] = { + [sym__expression] = STATE(4447), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), + [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(1271), - [sym_label] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(251), + [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_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), @@ -273895,61 +279527,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2156] = { + [sym__expression] = STATE(4507), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -273958,7 +279590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -273996,186 +279628,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), + [2157] = { + [sym__expression] = STATE(4499), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -274198,61 +279729,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2158] = { + [sym__expression] = STATE(4445), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274261,7 +279792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274299,61 +279830,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2159] = { + [sym__expression] = STATE(2253), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2160] = { + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1783), + [sym_annotation] = STATE(1783), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(307), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1255), + [sym_label] = ACTIONS(669), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(663), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(671), + [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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2161] = { + [sym__expression] = STATE(4481), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274362,7 +280095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274400,61 +280133,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2162] = { + [sym__expression] = STATE(4412), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274463,7 +280196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274501,61 +280234,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2163] = { + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(4010), + [sym_postfix_expression] = STATE(4010), + [sym_call_expression] = STATE(4010), + [sym_indexing_expression] = STATE(4010), + [sym_navigation_expression] = STATE(4010), + [sym_prefix_expression] = STATE(4010), + [sym_as_expression] = STATE(4010), + [sym_spread_expression] = STATE(4010), + [sym__binary_expression] = STATE(4010), + [sym_multiplicative_expression] = STATE(4010), + [sym_additive_expression] = STATE(4010), + [sym_range_expression] = STATE(4010), + [sym_infix_expression] = STATE(4010), + [sym_elvis_expression] = STATE(4010), + [sym_check_expression] = STATE(4010), + [sym_comparison_expression] = STATE(4010), + [sym_equality_expression] = STATE(4010), + [sym_conjunction_expression] = STATE(4010), + [sym_disjunction_expression] = STATE(4010), + [sym__primary_expression] = STATE(4010), + [sym_parenthesized_expression] = STATE(4010), + [sym_collection_literal] = STATE(4010), + [sym__literal_constant] = STATE(4010), + [sym_string_literal] = STATE(4010), + [sym_lambda_literal] = STATE(4010), + [sym_anonymous_function] = STATE(4010), + [sym__function_literal] = STATE(4010), + [sym_object_literal] = STATE(4010), + [sym_this_expression] = STATE(4010), + [sym_super_expression] = STATE(4010), + [sym_if_expression] = STATE(4010), + [sym_when_expression] = STATE(4010), + [sym_try_expression] = STATE(4010), + [sym_jump_expression] = STATE(4010), + [sym_callable_reference] = STATE(4010), + [sym__prefix_unary_operator] = STATE(1563), + [sym_annotation] = STATE(1563), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3939), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(3862), + [sym__break_at] = STATE(3862), + [sym__this_at] = STATE(3885), + [sym__super_at] = STATE(3833), + [sym_unsigned_literal] = STATE(4010), + [sym_long_literal] = STATE(4010), + [sym_boolean_literal] = STATE(4010), + [sym_character_literal] = STATE(4010), + [sym__lexical_identifier] = STATE(3321), + [sym__alpha_identifier] = ACTIONS(471), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_object] = ACTIONS(1648), + [anon_sym_fun] = ACTIONS(1716), + [anon_sym_get] = ACTIONS(1652), + [anon_sym_set] = ACTIONS(1652), + [anon_sym_this] = ACTIONS(495), + [anon_sym_super] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(1045), + [sym_label] = ACTIONS(1053), + [anon_sym_null] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_when] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_throw] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_break] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(523), + [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(533), + [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), + }, + [2164] = { + [sym__expression] = STATE(4479), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274564,7 +280398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274602,85 +280436,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2165] = { + [sym__expression] = STATE(4466), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -274703,61 +280537,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2166] = { + [sym__expression] = STATE(4488), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274766,7 +280600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274804,61 +280638,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2167] = { + [sym__expression] = STATE(2272), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2168] = { + [sym__expression] = STATE(2271), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2169] = { + [sym__expression] = STATE(2270), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2170] = { + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274867,7 +281004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -274905,61 +281042,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2171] = { + [sym__expression] = STATE(2315), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(469), + }, + [2172] = { + [sym__expression] = STATE(4480), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -274968,7 +281206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -275006,186 +281244,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2173] = { + [sym__expression] = STATE(2269), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(2171), + [sym_annotation] = STATE(2171), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(376), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1089), + [sym_label] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_when] = ACTIONS(429), + [anon_sym_try] = ACTIONS(431), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(439), + [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(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(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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(469), }, - [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), + [2174] = { + [sym__expression] = STATE(4487), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -275208,364 +281446,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), + [2175] = { + [sym__expression] = STATE(4467), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -275574,7 +281509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -275612,162 +281547,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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), + [2176] = { + [sym__expression] = STATE(4478), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -275776,7 +281610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -275814,61 +281648,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2177] = { + [sym__expression] = STATE(4439), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -275877,7 +281711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -275915,162 +281749,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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), + [2178] = { + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -276079,7 +281812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -276117,667 +281850,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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(273), - [anon_sym_continue_AT] = 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), - }, - [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(273), - [anon_sym_continue_AT] = 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), - }, - [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(273), - [anon_sym_continue_AT] = 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), - }, - [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(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), - }, - [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), + [2179] = { + [sym__expression] = STATE(972), + [sym__unary_expression] = STATE(3238), + [sym_postfix_expression] = STATE(3238), + [sym_call_expression] = STATE(3238), + [sym_indexing_expression] = STATE(3238), + [sym_navigation_expression] = STATE(3238), + [sym_prefix_expression] = STATE(3238), + [sym_as_expression] = STATE(3238), + [sym_spread_expression] = STATE(3238), + [sym__binary_expression] = STATE(3238), + [sym_multiplicative_expression] = STATE(3238), + [sym_additive_expression] = STATE(3238), + [sym_range_expression] = STATE(3238), + [sym_infix_expression] = STATE(3238), + [sym_elvis_expression] = STATE(3238), + [sym_check_expression] = STATE(3238), + [sym_comparison_expression] = STATE(3238), + [sym_equality_expression] = STATE(3238), + [sym_conjunction_expression] = STATE(3238), + [sym_disjunction_expression] = STATE(3238), + [sym__primary_expression] = STATE(3238), + [sym_parenthesized_expression] = STATE(3238), + [sym_collection_literal] = STATE(3238), + [sym__literal_constant] = STATE(3238), + [sym_string_literal] = STATE(3238), + [sym_lambda_literal] = STATE(3238), + [sym_anonymous_function] = STATE(3238), + [sym__function_literal] = STATE(3238), + [sym_object_literal] = STATE(3238), + [sym_this_expression] = STATE(3238), + [sym_super_expression] = STATE(3238), + [sym_if_expression] = STATE(3238), + [sym_when_expression] = STATE(3238), + [sym_try_expression] = STATE(3238), + [sym_jump_expression] = STATE(3238), + [sym_callable_reference] = STATE(3238), + [sym__prefix_unary_operator] = STATE(1994), + [sym_annotation] = STATE(1994), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3219), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(3244), + [sym__break_at] = STATE(3244), + [sym__this_at] = STATE(3246), + [sym__super_at] = STATE(3232), + [sym_unsigned_literal] = STATE(3238), + [sym_long_literal] = STATE(3238), + [sym_boolean_literal] = STATE(3238), + [sym_character_literal] = STATE(3238), + [sym__lexical_identifier] = STATE(2803), + [sym__alpha_identifier] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_object] = ACTIONS(1916), + [anon_sym_fun] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1920), + [anon_sym_set] = ACTIONS(1920), + [anon_sym_this] = ACTIONS(411), + [anon_sym_super] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(1295), + [sym_label] = ACTIONS(441), + [anon_sym_null] = ACTIONS(1922), + [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(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(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), + [anon_sym_continue_AT] = ACTIONS(449), + [anon_sym_break_AT] = ACTIONS(451), + [anon_sym_this_AT] = ACTIONS(453), + [anon_sym_super_AT] = ACTIONS(455), + [sym_real_literal] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(459), + [sym_hex_literal] = ACTIONS(461), + [sym_bin_literal] = ACTIONS(461), + [anon_sym_true] = ACTIONS(463), + [anon_sym_false] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(465), + [sym__backtick_identifier] = ACTIONS(467), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__string_start] = ACTIONS(469), }, - [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), + [2180] = { + [sym__expression] = STATE(4440), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -276786,7 +282014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -276824,364 +282052,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = 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), - }, - [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), - }, - [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), + [2181] = { + [sym__expression] = STATE(2252), + [sym__unary_expression] = STATE(3580), + [sym_postfix_expression] = STATE(3580), + [sym_call_expression] = STATE(3580), + [sym_indexing_expression] = STATE(3580), + [sym_navigation_expression] = STATE(3580), + [sym_prefix_expression] = STATE(3580), + [sym_as_expression] = STATE(3580), + [sym_spread_expression] = STATE(3580), + [sym__binary_expression] = STATE(3580), + [sym_multiplicative_expression] = STATE(3580), + [sym_additive_expression] = STATE(3580), + [sym_range_expression] = STATE(3580), + [sym_infix_expression] = STATE(3580), + [sym_elvis_expression] = STATE(3580), + [sym_check_expression] = STATE(3580), + [sym_comparison_expression] = STATE(3580), + [sym_equality_expression] = STATE(3580), + [sym_conjunction_expression] = STATE(3580), + [sym_disjunction_expression] = STATE(3580), + [sym__primary_expression] = STATE(3580), + [sym_parenthesized_expression] = STATE(3580), + [sym_collection_literal] = STATE(3580), + [sym__literal_constant] = STATE(3580), + [sym_string_literal] = STATE(3580), + [sym_lambda_literal] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [sym__function_literal] = STATE(3580), + [sym_object_literal] = STATE(3580), + [sym_this_expression] = STATE(3580), + [sym_super_expression] = STATE(3580), + [sym_if_expression] = STATE(3580), + [sym_when_expression] = STATE(3580), + [sym_try_expression] = STATE(3580), + [sym_jump_expression] = STATE(3580), + [sym_callable_reference] = STATE(3580), + [sym__prefix_unary_operator] = STATE(1612), + [sym_annotation] = STATE(1612), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(3594), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3562), + [sym__break_at] = STATE(3562), + [sym__this_at] = STATE(3557), + [sym__super_at] = STATE(3581), + [sym_unsigned_literal] = STATE(3580), + [sym_long_literal] = STATE(3580), + [sym_boolean_literal] = STATE(3580), + [sym_character_literal] = STATE(3580), + [sym__lexical_identifier] = STATE(2892), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1620), + [anon_sym_fun] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1624), + [anon_sym_set] = ACTIONS(1624), + [anon_sym_this] = ACTIONS(145), + [anon_sym_super] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(837), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1626), + [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(1624), + [anon_sym_inner] = ACTIONS(1624), + [anon_sym_value] = ACTIONS(1624), + [anon_sym_expect] = ACTIONS(1624), + [anon_sym_actual] = ACTIONS(1624), [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), + [anon_sym_return_AT] = ACTIONS(183), + [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(1628), + [sym_integer_literal] = ACTIONS(195), + [sym_hex_literal] = ACTIONS(197), + [sym_bin_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), }, - [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), + [2182] = { + [sym__expression] = STATE(4132), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1510), + [sym_annotation] = STATE(1510), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -277228,85 +282254,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2183] = { + [sym__expression] = STATE(4420), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -277329,162 +282355,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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), + [2184] = { + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -277493,7 +282418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -277531,162 +282456,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - }, - [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), + [2185] = { + [sym__expression] = STATE(4418), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -277695,7 +282519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -277733,994 +282557,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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(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), - }, - [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), - [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), - }, - [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), + [2186] = { + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), + [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(869), - [sym_label] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(1141), + [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(3082), [anon_sym_when] = ACTIONS(253), [anon_sym_try] = ACTIONS(255), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), + [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(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(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), @@ -278743,61 +282658,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2187] = { + [sym__expression] = STATE(4491), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -278806,7 +282721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -278844,364 +282759,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(295), }, - [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), + [2188] = { + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4884), + [sym_postfix_expression] = STATE(4884), + [sym_call_expression] = STATE(4884), + [sym_indexing_expression] = STATE(4884), + [sym_navigation_expression] = STATE(4884), + [sym_prefix_expression] = STATE(4884), + [sym_as_expression] = STATE(4884), + [sym_spread_expression] = STATE(4884), + [sym__binary_expression] = STATE(4884), + [sym_multiplicative_expression] = STATE(4884), + [sym_additive_expression] = STATE(4884), + [sym_range_expression] = STATE(4884), + [sym_infix_expression] = STATE(4884), + [sym_elvis_expression] = STATE(4884), + [sym_check_expression] = STATE(4884), + [sym_comparison_expression] = STATE(4884), + [sym_equality_expression] = STATE(4884), + [sym_conjunction_expression] = STATE(4884), + [sym_disjunction_expression] = STATE(4884), + [sym__primary_expression] = STATE(4884), + [sym_parenthesized_expression] = STATE(4884), + [sym_collection_literal] = STATE(4884), + [sym__literal_constant] = STATE(4884), + [sym_string_literal] = STATE(4884), + [sym_lambda_literal] = STATE(4884), + [sym_anonymous_function] = STATE(4884), + [sym__function_literal] = STATE(4884), + [sym_object_literal] = STATE(4884), + [sym_this_expression] = STATE(4884), + [sym_super_expression] = STATE(4884), + [sym_if_expression] = STATE(4884), + [sym_when_expression] = STATE(4884), + [sym_try_expression] = STATE(4884), + [sym_jump_expression] = STATE(4884), + [sym_callable_reference] = STATE(4884), + [sym__prefix_unary_operator] = STATE(1565), + [sym_annotation] = STATE(1565), + [sym__single_annotation] = STATE(5541), + [sym__multi_annotation] = STATE(5541), + [sym_simple_identifier] = STATE(4762), [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), + [sym__continue_at] = STATE(4871), + [sym__break_at] = STATE(4871), + [sym__this_at] = STATE(4867), + [sym__super_at] = STATE(4890), + [sym_unsigned_literal] = STATE(4884), + [sym_long_literal] = STATE(4884), + [sym_boolean_literal] = STATE(4884), + [sym_character_literal] = STATE(4884), + [sym__lexical_identifier] = STATE(4543), + [sym__alpha_identifier] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_LPAREN] = ACTIONS(223), [anon_sym_object] = ACTIONS(1838), @@ -279210,7 +282822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(1842), [anon_sym_this] = ACTIONS(235), [anon_sym_super] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1141), [sym_label] = ACTIONS(339), [anon_sym_null] = ACTIONS(1844), [anon_sym_if] = ACTIONS(3082), @@ -279248,1527 +282860,911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2189] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3167), [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), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), [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__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3824), [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), + [2190] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3148), [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), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3148), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(3824), [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), + [2191] = { + [sym_primary_constructor] = STATE(4827), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2314), + [sym_type_constraints] = STATE(4672), + [sym_enum_class_body] = STATE(4739), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5500), + [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), - [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__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [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), + [2192] = { + [sym_primary_constructor] = STATE(4902), + [sym_class_body] = STATE(5370), + [sym__class_parameters] = STATE(5136), + [sym_type_parameters] = STATE(2333), + [sym_type_constraints] = STATE(5277), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [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(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), + [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(555), + [sym__string_start] = ACTIONS(3238), }, - [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), + [2193] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3094), [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), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3094), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3824), [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), + [2194] = { + [sym_primary_constructor] = STATE(4820), + [sym_class_body] = STATE(4872), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2312), + [sym_type_constraints] = STATE(4630), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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), [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__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2195] = { + [sym_primary_constructor] = STATE(4952), + [sym__class_parameters] = STATE(5136), + [sym_type_parameters] = STATE(2334), + [sym_type_constraints] = STATE(5273), + [sym_enum_class_body] = STATE(5318), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5768), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [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), + [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(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), + [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(555), + [sym__string_start] = ACTIONS(3248), }, - [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), + [2196] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [2197] = { + [sym_property_delegate] = STATE(2330), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5721), + [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(5703), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), - [anon_sym_return_AT] = ACTIONS(183), - [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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [2198] = { + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -280778,61 +283774,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5719), + [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(5703), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), [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_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), @@ -280860,3349 +283856,1815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(183), - [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), - [anon_sym_return_AT] = ACTIONS(183), - [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), + [2199] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), + [2200] = { + [sym_primary_constructor] = STATE(4813), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2288), + [sym_type_constraints] = STATE(4685), + [sym_enum_class_body] = STATE(4872), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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), [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__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(295), }, - [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), + [2201] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5776), + [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_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(5049), + [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_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(5049), + [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(183), - [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), + [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(205), + [sym__string_start] = ACTIONS(5049), }, - [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), + [2202] = { + [sym_property_delegate] = STATE(2322), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5723), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(183), - [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), + [2203] = { + [sym_primary_constructor] = STATE(4794), + [sym_class_body] = STATE(4790), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2307), + [sym_type_constraints] = STATE(4629), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5500), + [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), - [anon_sym_return_AT] = ACTIONS(183), - [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__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), + [2204] = { + [sym_primary_constructor] = STATE(4923), + [sym__class_parameters] = STATE(5136), + [sym_type_parameters] = STATE(2357), + [sym_type_constraints] = STATE(5300), + [sym_enum_class_body] = STATE(5387), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5768), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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(183), - [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), + [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(205), + [sym__string_start] = ACTIONS(3206), }, - [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), + [2205] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), + }, + [2206] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5784), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), + }, + [2207] = { + [sym_primary_constructor] = STATE(3395), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2303), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3372), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5474), + [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), - [anon_sym_return_AT] = ACTIONS(183), - [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__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), + [2208] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5788), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [2209] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3152), [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), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3152), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), }, - [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), + [2210] = { + [sym_property_delegate] = STATE(2341), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(5713), + [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(5703), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(183), - [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(205), }, - [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), + [2211] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [2212] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5189), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), [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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(4292), }, - [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(183), - [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), - }, - [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), - [anon_sym_return_AT] = ACTIONS(183), - [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), - }, - [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), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = 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), - }, - [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), - [anon_sym_return_AT] = ACTIONS(273), - [anon_sym_continue_AT] = 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), - }, - [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), - [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), - }, - [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(555), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [anon_sym_return_AT] = ACTIONS(183), - [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), - }, - [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(4185), - }, - [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), - [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), - }, - [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), + [2213] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3144), [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), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3144), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(3824), [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), + [2214] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3182), [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), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3824), [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), + [2215] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3193), [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), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [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(3824), + [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(3974), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_SLASH] = ACTIONS(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3824), [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), + [2216] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5193), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [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), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(555), + [sym__string_start] = ACTIONS(4278), }, - [2169] = { - [sym_type_constraints] = STATE(2211), - [sym_property_delegate] = STATE(2333), - [sym_getter] = STATE(4797), - [sym_setter] = STATE(4797), - [sym_modifiers] = STATE(9282), + [2217] = { + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -284212,61 +285674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(5794), + [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_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), @@ -284294,2080 +285756,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), + [2218] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(5796), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(5798), + [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_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(4976), + [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(273), - [anon_sym_continue_AT] = 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), + [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(295), + [sym__string_start] = ACTIONS(4976), }, - [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), + [2219] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_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(4976), + [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(5798), + [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_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(4976), + [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(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), + [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(639), + [sym__string_start] = ACTIONS(4976), }, - [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), + [2220] = { + [sym_primary_constructor] = STATE(4715), + [sym_class_body] = STATE(5097), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2273), + [sym_type_constraints] = STATE(4990), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5800), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5810), + [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(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2221] = { + [sym_primary_constructor] = STATE(4916), + [sym_class_body] = STATE(5387), + [sym__class_parameters] = STATE(5136), + [sym_type_parameters] = STATE(2316), + [sym_type_constraints] = STATE(5283), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5760), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3200), + [anon_sym_fun] = 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(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), + [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(639), + [sym__string_start] = ACTIONS(3206), }, - [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), + [2222] = { + [sym_primary_constructor] = STATE(3517), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2281), + [sym_type_constraints] = STATE(3793), + [sym_enum_class_body] = STATE(4013), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5822), + [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), - [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__backtick_identifier] = ACTIONS(3248), + [sym__automatic_semicolon] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [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), + [2223] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [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), + [2224] = { + [sym_primary_constructor] = STATE(3406), + [sym_class_body] = STATE(3389), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2260), + [sym_type_constraints] = STATE(3298), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5474), + [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), - [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__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [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), + [2225] = { + [sym_primary_constructor] = STATE(4705), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2264), + [sym_type_constraints] = STATE(5000), + [sym_enum_class_body] = STATE(5207), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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), - [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__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [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), + [2226] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3954), + [anon_sym_PERCENT] = ACTIONS(3954), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [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), - }, - [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), + [2227] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3106), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), [anon_sym_BANG_EQ] = ACTIONS(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -286375,204 +286718,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2228] = { + [sym_primary_constructor] = STATE(4703), + [sym_class_body] = STATE(5207), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2263), + [sym_type_constraints] = STATE(5050), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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(1804), - [sym_safe_nav] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2229] = { + [sym_primary_constructor] = STATE(3511), + [sym_class_body] = STATE(3902), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2268), + [sym_type_constraints] = STATE(3817), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -286600,57 +286955,245 @@ 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(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__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), }, - [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), + [2230] = { + [sym_primary_constructor] = STATE(3509), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2267), + [sym_type_constraints] = STATE(3746), + [sym_enum_class_body] = STATE(3902), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5836), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2231] = { + [sym_primary_constructor] = STATE(3502), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2259), + [sym_type_constraints] = STATE(3827), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5838), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2232] = { + [sym_primary_constructor] = STATE(4766), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2256), + [sym_type_constraints] = STATE(4970), + [sym_enum_class_body] = STATE(5206), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_COLON] = ACTIONS(5840), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5768), - [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5806), [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_get] = ACTIONS(3244), [anon_sym_set] = ACTIONS(3244), @@ -286717,11 +287260,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2194] = { - [sym_property_delegate] = STATE(2338), - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9282), + [2233] = { + [sym_class_body] = STATE(1114), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), + }, + [2234] = { + [sym_property_delegate] = STATE(2385), + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -286731,61 +287374,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(5844), + [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_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -286813,66 +287456,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2235] = { + [sym_primary_constructor] = STATE(3401), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2282), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3454), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [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(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_COLON] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -286900,128 +287556,115 @@ 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(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__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2236] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3133), [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_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3956), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3133), [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_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2197] = { - [sym_property_delegate] = STATE(2325), - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9249), + [2237] = { + [sym_property_delegate] = STATE(2379), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -287031,61 +287674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [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_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_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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(5701), + [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(5703), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -287113,61 +287756,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2238] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3140), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3142), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -287175,99 +287818,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2239] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2240] = { + [sym_class_body] = STATE(1131), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [2241] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3956), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(3970), + [anon_sym_GT_EQ] = ACTIONS(3970), + [anon_sym_BANGin] = ACTIONS(3972), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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_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(3134), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2242] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3098), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3670), + [sym_label] = ACTIONS(3812), [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_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), [anon_sym_BANG_EQ] = ACTIONS(3966), [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), [anon_sym_EQ_EQ] = ACTIONS(3966), @@ -287275,53 +288218,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), [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_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2200] = { - [sym_property_delegate] = STATE(2336), - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9282), + [2243] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2244] = { + [sym_property_delegate] = STATE(2369), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -287331,61 +288374,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5731), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5703), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -287413,78 +288456,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2245] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1509), + [sym__in_operator] = STATE(1496), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1483), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1478), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3954), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2246] = { + [sym_primary_constructor] = STATE(3398), + [sym_class_body] = STATE(3454), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2287), + [sym_type_constraints] = STATE(3316), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -287512,16 +288656,15 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2202] = { - [sym_property_delegate] = STATE(2321), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9282), + [2247] = { + [sym_property_delegate] = STATE(2377), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -287531,61 +288674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5709), + [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(5703), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -287613,78 +288756,870 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2248] = { + [sym_property_delegate] = STATE(2371), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(5711), + [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(5703), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), + }, + [2249] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [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(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [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), + }, + [2250] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3104), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [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(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [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), + }, + [2251] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3142), + }, + [2252] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3150), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3148), + [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(3148), + [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(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [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), + }, + [2253] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_fun] = ACTIONS(3144), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3146), + }, + [2254] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [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(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2255] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3112), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [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(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [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), + }, + [2256] = { + [sym_primary_constructor] = STATE(4785), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5004), + [sym_enum_class_body] = STATE(5121), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -287712,45 +289647,143 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2257] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3117), + [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), + }, + [2258] = { + [sym_primary_constructor] = STATE(4947), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2362), + [sym_type_constraints] = STATE(5000), + [sym_enum_class_body] = STATE(5207), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5792), + [anon_sym_COLON] = ACTIONS(5880), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5768), - [anon_sym_LBRACE] = ACTIONS(5788), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5772), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), [anon_sym_set] = ACTIONS(3200), @@ -287817,175 +289850,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2259] = { + [sym_primary_constructor] = STATE(3508), + [sym_class_body] = STATE(3874), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3715), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3115), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [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), + [2260] = { + [sym_primary_constructor] = STATE(3402), + [sym_class_body] = STATE(3441), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3304), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -288013,279 +290044,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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2261] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), [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_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3131), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3129), + [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(3129), + [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(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), [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_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), [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_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2262] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [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_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3100), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(4068), + [anon_sym_QMARK_COLON] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [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(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [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_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2263] = { + [sym_primary_constructor] = STATE(4860), + [sym_class_body] = STATE(5249), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(4986), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -288313,279 +290340,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(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2264] = { + [sym_primary_constructor] = STATE(4701), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5249), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5802), - [anon_sym_LBRACK] = 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_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), - [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(5888), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -288613,179 +290439,276 @@ 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(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2265] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3088), + [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(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [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(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), - [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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [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), + [2266] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_fun] = ACTIONS(3156), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3158), + }, + [2267] = { + [sym_primary_constructor] = STATE(3514), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -288813,66 +290736,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(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2268] = { + [sym_primary_constructor] = STATE(3515), + [sym_class_body] = STATE(4023), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3794), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -288900,292 +290835,474 @@ 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(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__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [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), + [2269] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_fun] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3167), + [anon_sym_super] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [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(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3169), + }, + [2270] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_object] = ACTIONS(3110), + [anon_sym_fun] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [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_this] = ACTIONS(3110), + [anon_sym_super] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_null] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_when] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_BANG_BANG] = ACTIONS(4571), [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(3112), + [anon_sym_continue_AT] = ACTIONS(3112), + [anon_sym_break_AT] = ACTIONS(3112), + [anon_sym_this_AT] = ACTIONS(3112), + [anon_sym_super_AT] = ACTIONS(3112), + [sym_real_literal] = ACTIONS(3112), + [sym_integer_literal] = ACTIONS(3110), + [sym_hex_literal] = ACTIONS(3112), + [sym_bin_literal] = ACTIONS(3112), + [anon_sym_true] = ACTIONS(3110), + [anon_sym_false] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3112), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3112), }, - [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), + [2271] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3117), + [anon_sym_fun] = ACTIONS(3117), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3119), }, - [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), + [2272] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3098), + [anon_sym_fun] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3098), + [anon_sym_super] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_null] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_when] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3100), + [anon_sym_continue_AT] = ACTIONS(3100), + [anon_sym_break_AT] = ACTIONS(3100), + [anon_sym_this_AT] = ACTIONS(3100), + [anon_sym_super_AT] = ACTIONS(3100), + [sym_real_literal] = ACTIONS(3100), + [sym_integer_literal] = ACTIONS(3098), + [sym_hex_literal] = ACTIONS(3100), + [sym_bin_literal] = ACTIONS(3100), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3100), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3100), + }, + [2273] = { + [sym_primary_constructor] = STATE(4706), + [sym_class_body] = STATE(5184), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5011), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [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_COLON] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -289213,151 +291330,1040 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [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), + [2274] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3184), }, - [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), + [2275] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3088), + [anon_sym_fun] = ACTIONS(3088), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [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(4553), + [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(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3090), + }, + [2276] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_fun] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3102), + [anon_sym_super] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_null] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_when] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3104), + [anon_sym_continue_AT] = ACTIONS(3104), + [anon_sym_break_AT] = ACTIONS(3104), + [anon_sym_this_AT] = ACTIONS(3104), + [anon_sym_super_AT] = ACTIONS(3104), + [sym_real_literal] = ACTIONS(3104), + [sym_integer_literal] = ACTIONS(3102), + [sym_hex_literal] = ACTIONS(3104), + [sym_bin_literal] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3104), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3104), + }, + [2277] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [2278] = { + [sym_primary_constructor] = STATE(4906), + [sym_class_body] = STATE(5207), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2359), + [sym_type_constraints] = STATE(5050), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2279] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_fun] = 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(5854), + [sym_label] = ACTIONS(4545), + [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(4553), + [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(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3162), + }, + [2280] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_fun] = ACTIONS(3186), + [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(4545), + [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(4553), + [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(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3188), + }, + [2281] = { + [sym_primary_constructor] = STATE(3519), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5898), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2282] = { + [sym_primary_constructor] = STATE(3397), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), + [sym_multiline_comment] = ACTIONS(3), + }, + [2283] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_fun] = ACTIONS(3193), + [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(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [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(4553), + [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(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [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(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3195), + }, + [2284] = { + [sym_primary_constructor] = STATE(4942), + [sym_class_body] = STATE(5097), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2376), + [sym_type_constraints] = STATE(4990), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -289414,43 +292420,43 @@ 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(3238), + [sym__automatic_semicolon] = 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), + [2285] = { + [sym_primary_constructor] = STATE(4961), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2384), + [sym_type_constraints] = STATE(4970), + [sym_enum_class_body] = STATE(5206), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5816), + [anon_sym_COLON] = ACTIONS(5904), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5822), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_get] = ACTIONS(3244), [anon_sym_set] = ACTIONS(3244), @@ -289517,11 +292523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2286] = { + [sym_type_constraints] = STATE(2397), + [sym_property_delegate] = STATE(2537), + [sym_getter] = STATE(5358), + [sym_setter] = STATE(5358), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -289531,61 +292538,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_where] = ACTIONS(5908), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -289613,66 +292605,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), + [2287] = { + [sym_primary_constructor] = STATE(3396), + [sym_class_body] = STATE(3573), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3324), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5826), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_constructor] = ACTIONS(5756), - [anon_sym_LBRACE] = ACTIONS(5780), - [anon_sym_RBRACE] = 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_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_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -289700,274 +292717,358 @@ 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__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), }, - [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), + [2288] = { + [sym_primary_constructor] = STATE(4821), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4645), + [sym_enum_class_body] = STATE(4798), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [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), + [2289] = { + [sym_primary_constructor] = STATE(3670), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2349), + [sym_type_constraints] = STATE(3827), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5822), + [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), }, - [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), + [2290] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3578), + [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_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [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(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(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(3160), + [anon_sym_DASH] = ACTIONS(3160), + [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(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(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2291] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), [anon_sym_LT] = ACTIONS(3190), [anon_sym_GT] = ACTIONS(3186), - [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_where] = ACTIONS(3186), [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_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(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_COLON_COLON] = ACTIONS(3602), [anon_sym_BANG_EQ] = ACTIONS(3186), [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), [anon_sym_EQ_EQ] = ACTIONS(3186), @@ -289980,11 +293081,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -290013,15 +293114,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2227] = { - [sym_property_delegate] = STATE(2373), - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9249), + [2292] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3578), + [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_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(4068), + [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(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(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), + }, + [2293] = { + [sym_type_constraints] = STATE(2390), + [sym_property_delegate] = STATE(2595), + [sym_getter] = STATE(5379), + [sym_setter] = STATE(5379), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -290031,61 +293231,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_EQ] = ACTIONS(5920), [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_by] = ACTIONS(3518), + [anon_sym_where] = ACTIONS(5908), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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_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_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_BANG] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -290113,151 +293298,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1792), }, - [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), + [2294] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3106), + [anon_sym_fun] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3106), + [anon_sym_super] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_when] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(3108), + [anon_sym_continue_AT] = ACTIONS(3108), + [anon_sym_break_AT] = ACTIONS(3108), + [anon_sym_this_AT] = ACTIONS(3108), + [anon_sym_super_AT] = ACTIONS(3108), + [sym_real_literal] = ACTIONS(3108), + [sym_integer_literal] = ACTIONS(3106), + [sym_hex_literal] = ACTIONS(3108), + [sym_bin_literal] = ACTIONS(3108), + [anon_sym_true] = ACTIONS(3106), + [anon_sym_false] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3108), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(4553), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3108), + }, + [2295] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3156), + [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(1788), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2296] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3094), + [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(3094), + [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(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(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), + }, + [2297] = { + [sym_primary_constructor] = STATE(3681), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2356), + [sym_type_constraints] = STATE(3793), + [sym_enum_class_body] = STATE(4013), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5830), + [anon_sym_COLON] = ACTIONS(5922), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2298] = { + [sym_primary_constructor] = STATE(3673), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2321), + [sym_type_constraints] = STATE(3746), + [sym_enum_class_body] = STATE(3902), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5924), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5576), - [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5580), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5490), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), [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), @@ -290314,643 +293806,736 @@ 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), }, - [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), + [2299] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3106), + [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(3106), + [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(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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_safe_nav] = ACTIONS(3602), [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), + [2300] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_fun] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_this] = ACTIONS(3094), + [anon_sym_super] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [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(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_BANG_BANG] = ACTIONS(4571), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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), + [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(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4876), + [sym__string_start] = ACTIONS(3096), }, - [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), + [2301] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3182), + [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(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_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(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_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(3146), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3602), [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), + [2302] = { + [sym_type_constraints] = STATE(2410), + [sym_property_delegate] = STATE(2555), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9150), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_where] = ACTIONS(5908), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5928), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [2303] = { + [sym_primary_constructor] = STATE(3394), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym_safe_nav] = ACTIONS(3272), [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), + [2304] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(4064), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3152), + [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(3152), + [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(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), [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_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), [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_safe_nav] = ACTIONS(3602), [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), + [2305] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3144), + [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(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_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(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3144), + [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(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(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_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(3138), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3602), [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), + [2306] = { + [sym_primary_constructor] = STATE(3675), + [sym_class_body] = STATE(3902), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2318), + [sym_type_constraints] = STATE(3817), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5834), + [anon_sym_COLON] = ACTIONS(5932), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5822), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), [anon_sym_set] = ACTIONS(3200), @@ -291017,274 +294602,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), - }, - [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), + [2307] = { + [sym_primary_constructor] = STATE(4811), + [sym_class_body] = STATE(4880), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4686), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -291312,216 +294697,313 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2308] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5936), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [2309] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [2310] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1707), + [sym__in_operator] = STATE(1709), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1725), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1759), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_where] = ACTIONS(3140), + [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(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_else] = ACTIONS(3140), + [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(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), - [sym__string_start] = ACTIONS(4009), }, - [2242] = { - [sym_property_delegate] = STATE(2360), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9249), + [2311] = { + [sym_type_constraints] = STATE(2417), + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(5360), + [sym_setter] = STATE(5360), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -291531,61 +295013,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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(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_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_where] = ACTIONS(5908), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -291613,479 +295080,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - }, - [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(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [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), }, - [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), + [2312] = { + [sym_primary_constructor] = STATE(4825), + [sym_class_body] = STATE(4798), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4665), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), [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_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -292113,15 +295192,16 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2248] = { - [sym_property_delegate] = STATE(2363), - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9249), + [2313] = { + [sym_type_constraints] = STATE(2405), + [sym_property_delegate] = STATE(2568), + [sym_getter] = STATE(5353), + [sym_setter] = STATE(5353), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -292131,61 +295211,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_where] = ACTIONS(5908), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_fun] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(5950), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3366), + [anon_sym_super] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_null] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_when] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3366), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292213,177 +295278,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3368), + [anon_sym_continue_AT] = ACTIONS(3368), + [anon_sym_break_AT] = ACTIONS(3368), + [anon_sym_this_AT] = ACTIONS(3368), + [anon_sym_super_AT] = ACTIONS(3368), + [sym_real_literal] = ACTIONS(3368), + [sym_integer_literal] = ACTIONS(3366), + [sym_hex_literal] = ACTIONS(3368), + [sym_bin_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3368), }, - [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), + [2314] = { + [sym_primary_constructor] = STATE(4883), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4688), + [sym_enum_class_body] = STATE(4714), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -292411,176 +295390,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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2315] = { + [sym_indexing_suffix] = STATE(3196), + [sym_navigation_suffix] = STATE(3073), + [sym_call_suffix] = STATE(3191), + [sym_annotated_lambda] = STATE(3188), + [sym_type_arguments] = STATE(8146), + [sym_value_arguments] = STATE(2738), + [sym_lambda_literal] = STATE(3182), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2152), + [sym__in_operator] = STATE(2151), + [sym__is_operator] = STATE(6049), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2147), + [sym__as_operator] = STATE(6050), + [sym__postfix_unary_operator] = STATE(3180), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(2145), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), [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_LBRACK] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_as] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_fun] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [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_this] = ACTIONS(3152), + [anon_sym_super] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(5854), + [sym_label] = ACTIONS(4545), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_DOT_DOT] = ACTIONS(5858), + [anon_sym_QMARK_COLON] = ACTIONS(5860), + [anon_sym_AMP_AMP] = ACTIONS(5862), + [anon_sym_PIPE_PIPE] = ACTIONS(5864), + [anon_sym_null] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_when] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5868), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5868), + [anon_sym_LT_EQ] = ACTIONS(5870), + [anon_sym_GT_EQ] = ACTIONS(5870), + [anon_sym_BANGin] = ACTIONS(5872), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5876), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_BANG_BANG] = ACTIONS(4571), [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(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3152), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3152), + [anon_sym_false] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3154), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(4553), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [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), + [2316] = { + [sym_primary_constructor] = STATE(4956), + [sym_class_body] = STATE(5395), + [sym__class_parameters] = STATE(5136), + [sym_type_constraints] = STATE(5268), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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(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_COLON] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), @@ -292608,574 +295574,187 @@ 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_multiline_comment] = ACTIONS(3), - }, - [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_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), }, - [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), + [2317] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9207), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), + [2318] = { + [sym_primary_constructor] = STATE(3679), + [sym_class_body] = STATE(4023), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3794), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -293203,275 +295782,273 @@ 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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2319] = { + [sym_type_constraints] = STATE(2448), + [sym_property_delegate] = STATE(2587), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3940), + [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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2320] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2321] = { + [sym_primary_constructor] = STATE(3677), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -293499,710 +296076,703 @@ 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(3274), - [sym__automatic_semicolon] = ACTIONS(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2322] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2323] = { + [sym_type_constraints] = STATE(2461), + [sym_property_delegate] = STATE(2592), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5970), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2324] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), - [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [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), + [2325] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2326] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), - [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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [2327] = { + [sym_type_constraints] = STATE(2437), + [sym_property_delegate] = STATE(2542), + [sym_getter] = STATE(3407), + [sym_setter] = STATE(3407), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(5974), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(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__backtick_identifier] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [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), + [2328] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(5976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(5978), + [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_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(4976), + [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), - [sym__backtick_identifier] = ACTIONS(3274), - [sym_safe_nav] = ACTIONS(3274), + [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), }, - [2269] = { - [sym_type_constraints] = STATE(2389), - [sym_property_delegate] = STATE(2592), - [sym_getter] = STATE(5335), - [sym_setter] = STATE(5335), - [sym_modifiers] = STATE(9137), + [2329] = { + [sym_type_constraints] = STATE(2394), + [sym_property_delegate] = STATE(2469), + [sym_getter] = STATE(5125), + [sym_setter] = STATE(5125), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -294212,46 +296782,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -294279,1316 +296860,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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(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), - [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), - }, - [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(3290), - [sym__automatic_semicolon] = ACTIONS(3290), - [sym_safe_nav] = ACTIONS(3290), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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), - [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), - }, - [2283] = { - [sym_type_constraints] = STATE(2418), - [sym_property_delegate] = STATE(2554), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_modifiers] = STATE(9137), + [2330] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -295598,46 +296878,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_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_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_SEMI] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_DASH_GT] = ACTIONS(1804), + [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [anon_sym_if] = 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_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), @@ -295665,326 +296959,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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_safe_nav] = ACTIONS(1804), [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), + [2331] = { + [sym_type_constraints] = STATE(2444), + [sym_property_delegate] = STATE(2585), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5990), + [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(5474), + [anon_sym_SEMI] = ACTIONS(3942), + [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), - [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3103), }, - [2287] = { - [sym_type_constraints] = STATE(2396), - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(5349), - [sym_setter] = STATE(5349), - [sym_modifiers] = STATE(9137), + [2332] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -295994,46 +297074,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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), @@ -296061,91 +297155,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2333] = { + [sym_primary_constructor] = STATE(4921), + [sym_class_body] = STATE(5382), + [sym__class_parameters] = STATE(5136), + [sym_type_constraints] = STATE(5301), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [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_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3276), + [anon_sym_fun] = 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), @@ -296173,78 +297240,77 @@ 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(3282), - [sym_safe_nav] = ACTIONS(3282), - [sym_multiline_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), }, - [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), + [2334] = { + [sym_primary_constructor] = STATE(4933), + [sym__class_parameters] = STATE(5136), + [sym_type_constraints] = STATE(5299), + [sym_enum_class_body] = STATE(5389), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [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_COLON] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5768), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -296272,1402 +297338,713 @@ 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(3282), - [sym_safe_nav] = ACTIONS(3282), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [2335] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = 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(4976), + [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(5978), + [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_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(4976), + [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), }, - [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), + [2336] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(5376), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [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), + [2337] = { + [sym_type_constraints] = STATE(2411), + [sym_property_delegate] = STATE(2479), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5998), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3602), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2338] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = 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_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_SEMI] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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(3326), + [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2339] = { + [sym_type_constraints] = STATE(2398), + [sym_property_delegate] = STATE(2518), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9222), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2340] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), + [2341] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9231), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [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(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), + [2342] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -297677,46 +298054,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297744,920 +298135,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym_safe_nav] = ACTIONS(1824), [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(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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), - [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), - }, - [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), + [2343] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(5380), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), [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), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3184), + [sym__string_start] = ACTIONS(4278), }, - [2314] = { - [sym_type_constraints] = STATE(2388), - [sym_property_delegate] = STATE(2537), - [sym_getter] = STATE(5416), - [sym_setter] = STATE(5416), - [sym_modifiers] = STATE(9137), + [2344] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -298667,46 +298250,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298734,422 +298331,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), - [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), - }, - [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), + [2345] = { + [sym_type_constraints] = STATE(2459), + [sym_property_delegate] = STATE(2535), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3944), + [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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2346] = { + [sym_type_constraints] = STATE(2414), + [sym_property_delegate] = STATE(2494), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299159,30 +298448,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_EQ] = ACTIONS(6008), [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_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5982), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_get] = ACTIONS(5962), - [anon_sym_set] = ACTIONS(5964), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), [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), @@ -299239,13 +298527,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2320] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9282), + [2347] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6010), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4275), + [anon_sym_inner] = ACTIONS(4275), + [anon_sym_value] = ACTIONS(4275), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4275), + [anon_sym_actual] = ACTIONS(4275), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [2348] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6014), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [anon_sym_suspend] = ACTIONS(4297), + [anon_sym_sealed] = ACTIONS(4297), + [anon_sym_annotation] = ACTIONS(4297), + [anon_sym_data] = ACTIONS(4289), + [anon_sym_inner] = ACTIONS(4289), + [anon_sym_value] = ACTIONS(4289), + [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(4289), + [anon_sym_actual] = ACTIONS(4289), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [2349] = { + [sym_primary_constructor] = STATE(3671), + [sym_class_body] = STATE(3874), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3715), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2350] = { + [sym_type_constraints] = STATE(2409), + [sym_property_delegate] = STATE(2530), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299255,32 +298840,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6020), [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(5982), [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_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [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), @@ -299337,13 +298919,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2321] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9282), + [2351] = { + [sym_type_constraints] = STATE(2415), + [sym_property_delegate] = STATE(2486), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299353,60 +298938,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -299434,14 +299016,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2322] = { - [sym_getter] = STATE(3464), - [sym_setter] = STATE(3464), - [sym_modifiers] = STATE(9249), + [2352] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299451,60 +299034,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299532,16 +299115,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), + [2353] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299551,58 +299132,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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_where] = ACTIONS(5492), - [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_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299630,16 +299213,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2324] = { - [sym_type_constraints] = STATE(2458), - [sym_property_delegate] = STATE(2569), - [sym_getter] = STATE(3600), - [sym_setter] = STATE(3600), - [sym_modifiers] = STATE(9401), + [2354] = { + [sym_getter] = STATE(4764), + [sym_setter] = STATE(4764), + [sym_modifiers] = STATE(9231), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299649,58 +299230,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(5715), + [anon_sym_set] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299728,59 +299311,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2355] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6024), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [2356] = { + [sym_primary_constructor] = STATE(3682), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2357] = { + [sym_primary_constructor] = STATE(4926), + [sym__class_parameters] = STATE(5136), + [sym_type_constraints] = STATE(5276), + [sym_enum_class_body] = STATE(5395), + [sym_modifiers] = STATE(9802), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6028), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5768), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_where] = ACTIONS(5762), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [2358] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), + }, + [2359] = { + [sym_primary_constructor] = STATE(4955), + [sym_class_body] = STATE(5249), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(4986), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), + [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), + }, + [2360] = { + [sym_type_constraints] = STATE(2408), + [sym_property_delegate] = STATE(2488), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -299827,111 +299899,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2327] = { - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9282), + [2361] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -299941,60 +299916,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300022,64 +299997,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2362] = { + [sym_primary_constructor] = STATE(4907), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5249), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6036), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -300107,127 +300094,17 @@ 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(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), - }, - [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), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2330] = { - [sym_type_constraints] = STATE(2461), - [sym_property_delegate] = STATE(2534), - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9401), + [2363] = { + [sym_type_constraints] = STATE(2416), + [sym_property_delegate] = STATE(2525), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300237,58 +300114,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300316,14 +300192,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2331] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9282), + [2364] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300333,60 +300210,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -300414,14 +300291,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2332] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9282), + [2365] = { + [sym_type_constraints] = STATE(2401), + [sym_property_delegate] = STATE(2523), + [sym_getter] = STATE(3921), + [sym_setter] = STATE(3921), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300431,60 +300310,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6042), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6044), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300512,14 +300388,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2333] = { - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9282), + [2366] = { + [sym_type_constraints] = STATE(2460), + [sym_property_delegate] = STATE(2562), + [sym_getter] = STATE(4799), + [sym_setter] = STATE(4799), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300529,60 +300408,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3366), [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(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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300610,14 +300487,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2334] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9282), + [2367] = { + [sym_type_constraints] = STATE(2419), + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300627,29 +300506,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6054), [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(5960), [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_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), [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), @@ -300712,12 +300589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2335] = { - [sym_type_constraints] = STATE(2401), - [sym_property_delegate] = STATE(2509), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9257), + [2368] = { + [sym_type_constraints] = STATE(2438), + [sym_property_delegate] = STATE(2564), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300727,57 +300604,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300805,15 +300683,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2336] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9282), + [2369] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300823,60 +300700,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -300904,14 +300781,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2337] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9249), + [2370] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -300921,60 +300798,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -301002,14 +300879,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2338] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9282), + [2371] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301019,13 +300896,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -301036,10 +300914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), [anon_sym_STAR] = ACTIONS(1802), [anon_sym_DASH_GT] = ACTIONS(1804), [sym_label] = ACTIONS(1804), @@ -301104,10 +300981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2339] = { - [sym_getter] = STATE(4827), - [sym_setter] = STATE(4827), - [sym_modifiers] = STATE(9282), + [2372] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301117,60 +300994,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -301198,14 +301075,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2340] = { - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9282), + [2373] = { + [sym_type_constraints] = STATE(2387), + [sym_property_delegate] = STATE(2529), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301215,60 +301094,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -301296,16 +301172,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2341] = { - [sym_type_constraints] = STATE(2407), - [sym_property_delegate] = STATE(2513), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9257), + [2374] = { + [sym_type_constraints] = STATE(2428), + [sym_property_delegate] = STATE(2570), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301315,29 +301192,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(6062), [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_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5960), [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_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), [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), @@ -301394,14 +301272,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2342] = { - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9282), + [2375] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301411,60 +301288,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301492,272 +301369,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3290), - [sym__automatic_semicolon] = ACTIONS(3290), - [sym_safe_nav] = ACTIONS(3290), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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), - [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2376] = { + [sym_primary_constructor] = STATE(4939), + [sym_class_body] = STATE(5184), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5011), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [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_COLON] = ACTIONS(6064), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -301785,17 +301466,15 @@ 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(3274), - [sym__automatic_semicolon] = ACTIONS(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [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), + [2377] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301805,57 +301484,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -301883,17 +301565,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2347] = { - [sym_type_constraints] = STATE(2413), - [sym_property_delegate] = STATE(2522), - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9257), + [2378] = { + [sym_type_constraints] = STATE(2462), + [sym_property_delegate] = STATE(2572), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301903,29 +301584,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(6066), [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_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), [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_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), [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), @@ -301982,14 +301664,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2348] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9249), + [2379] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -301999,60 +301680,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -302080,114 +301761,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), + [2380] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -302197,156 +301778,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [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), @@ -302374,112 +301859,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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(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(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_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), + [2381] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(6068), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = 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(5049), + [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_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(5049), + [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), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [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), }, - [2353] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9249), + [2382] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(6070), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), + }, + [2383] = { + [sym_getter] = STATE(3559), + [sym_setter] = STATE(3559), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -302489,60 +302072,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302570,76 +302153,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2384] = { + [sym_primary_constructor] = STATE(4960), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5004), + [sym_enum_class_body] = STATE(5121), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6072), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -302667,15 +302250,15 @@ 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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [2355] = { - [sym_getter] = STATE(3458), - [sym_setter] = STATE(3458), - [sym_modifiers] = STATE(9249), + [2385] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9207), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -302685,60 +302268,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(5705), + [anon_sym_set] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302766,114 +302349,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), + [2386] = { + [sym_type_constraints] = STATE(2509), + [sym_property_delegate] = STATE(2652), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -302883,57 +302368,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -302961,17 +302445,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2358] = { - [sym_type_constraints] = STATE(2441), - [sym_property_delegate] = STATE(2579), - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9444), + [2387] = { + [sym_property_delegate] = STATE(2530), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -302981,30 +302464,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6020), [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_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5982), [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_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [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), @@ -303061,75 +302543,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2388] = { + [sym_primary_constructor] = STATE(5071), + [sym_class_body] = STATE(4790), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2427), + [sym_type_constraints] = STATE(4629), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6082), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -303157,113 +302640,16 @@ 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(3274), - [sym__automatic_semicolon] = ACTIONS(3274), - [sym_safe_nav] = ACTIONS(3274), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2361] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9249), + [2389] = { + [sym_type_constraints] = STATE(2483), + [sym_property_delegate] = STATE(2665), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303273,60 +302659,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1802), [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(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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -303354,16 +302736,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2362] = { - [sym_type_constraints] = STATE(2411), - [sym_property_delegate] = STATE(2505), - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9170), + [2390] = { + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(5360), + [sym_setter] = STATE(5360), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303373,57 +302755,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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_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(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_LBRACK] = ACTIONS(1804), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_fun] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -303451,15 +302821,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [2363] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9249), + [2391] = { + [sym_type_constraints] = STATE(2468), + [sym_property_delegate] = STATE(2613), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303469,32 +302853,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6086), [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(6076), [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_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [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), @@ -303551,15 +302931,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2364] = { - [sym_type_constraints] = STATE(2408), - [sym_property_delegate] = STATE(2489), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9170), + [2392] = { + [sym_type_constraints] = STATE(2515), + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303569,57 +302950,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6094), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303647,113 +303027,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2366] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9249), + [2393] = { + [sym_type_constraints] = STATE(2510), + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303763,32 +303047,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6096), [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(6076), [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_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [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), @@ -303845,15 +303125,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2367] = { - [sym_type_constraints] = STATE(2404), - [sym_property_delegate] = STATE(2484), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9170), + [2394] = { + [sym_property_delegate] = STATE(2479), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5998), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [2395] = { + [sym_type_constraints] = STATE(2474), + [sym_property_delegate] = STATE(2671), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -303863,26 +303241,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_EQ] = ACTIONS(6098), [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_by] = ACTIONS(6076), [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_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -303946,60 +303323,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2396] = { + [sym_primary_constructor] = STATE(3973), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2451), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3372), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), [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_COLON] = ACTIONS(6100), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -304027,223 +303416,15 @@ 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(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__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [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), + [2397] = { + [sym_property_delegate] = STATE(2583), + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -304253,60 +303434,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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(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), - [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_LBRACK] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(6102), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(1814), + [anon_sym_fun] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -304334,16 +303500,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [2372] = { - [sym_type_constraints] = STATE(2424), - [sym_property_delegate] = STATE(2581), - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9444), + [2398] = { + [sym_property_delegate] = STATE(2516), + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -304353,58 +303531,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6104), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3872), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -304432,212 +303609,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2399] = { + [sym_primary_constructor] = STATE(3978), + [sym_class_body] = STATE(3454), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2443), + [sym_type_constraints] = STATE(3316), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6106), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1804), - [sym_safe_nav] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2400] = { + [sym_primary_constructor] = STATE(3980), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2420), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3454), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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), [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__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4265), }, - [2375] = { - [sym_type_constraints] = STATE(2397), - [sym_property_delegate] = STATE(2483), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9170), + [2401] = { + [sym_property_delegate] = STATE(2525), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -304647,57 +303822,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304725,115 +303900,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4820), }, - [2377] = { - [sym_type_constraints] = STATE(2420), - [sym_property_delegate] = STATE(2586), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9444), + [2402] = { + [sym_type_constraints] = STATE(2504), + [sym_property_delegate] = STATE(2678), + [sym_getter] = STATE(5125), + [sym_setter] = STATE(5125), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -304843,58 +303920,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6112), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304922,76 +303997,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2403] = { + [sym_primary_constructor] = STATE(5177), + [sym_class_body] = STATE(4872), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2434), + [sym_type_constraints] = STATE(4630), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -305019,163 +304095,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(3290), - [sym__automatic_semicolon] = ACTIONS(3290), - [sym_safe_nav] = ACTIONS(3290), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2404] = { + [sym_primary_constructor] = STATE(3986), + [sym_class_body] = STATE(3389), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2439), + [sym_type_constraints] = STATE(3298), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6116), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -305203,225 +304192,15 @@ 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(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), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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__backtick_identifier] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2405] = { + [sym_property_delegate] = STATE(2555), + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -305431,58 +304210,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(5926), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5928), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305510,16 +304276,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [2384] = { - [sym_type_constraints] = STATE(2428), - [sym_property_delegate] = STATE(2591), - [sym_getter] = STATE(4797), - [sym_setter] = STATE(4797), - [sym_modifiers] = STATE(9444), + [2406] = { + [sym_type_constraints] = STATE(2522), + [sym_property_delegate] = STATE(2600), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -305529,58 +304308,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -305608,240 +304385,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2407] = { + [sym_primary_constructor] = STATE(5232), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2441), + [sym_type_constraints] = STATE(4672), + [sym_enum_class_body] = STATE(4739), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_COLON] = ACTIONS(6120), [anon_sym_LBRACK] = ACTIONS(3248), [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_LPAREN] = ACTIONS(5498), [anon_sym_COMMA] = ACTIONS(3248), [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5472), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5500), [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_get] = ACTIONS(3244), [anon_sym_set] = ACTIONS(3244), @@ -305904,11 +304487,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2388] = { - [sym_property_delegate] = STATE(2540), - [sym_getter] = STATE(5347), - [sym_setter] = STATE(5347), - [sym_modifiers] = STATE(9137), + [2408] = { + [sym_property_delegate] = STATE(2498), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -305918,45 +304501,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3868), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -305984,28 +304579,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [2389] = { - [sym_property_delegate] = STATE(2553), - [sym_getter] = STATE(5349), - [sym_setter] = STATE(5349), - [sym_modifiers] = STATE(9137), + [2409] = { + [sym_property_delegate] = STATE(2518), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306015,95 +304598,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), - [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), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), }, - [2390] = { - [sym_type_constraints] = STATE(2495), - [sym_property_delegate] = STATE(2634), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9302), + [2410] = { + [sym_property_delegate] = STATE(2595), + [sym_getter] = STATE(5379), + [sym_setter] = STATE(5379), + [sym_modifiers] = STATE(9150), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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(5920), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(1790), + [anon_sym_fun] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), + [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), + }, + [2411] = { + [sym_property_delegate] = STATE(2494), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306113,25 +304792,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6078), + [anon_sym_EQ] = ACTIONS(6008), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5982), [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_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -306195,12 +304875,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2391] = { - [sym_type_constraints] = STATE(2525), - [sym_property_delegate] = STATE(2644), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_modifiers] = STATE(9185), + [2412] = { + [sym_type_constraints] = STATE(2521), + [sym_property_delegate] = STATE(2655), + [sym_getter] = STATE(3921), + [sym_setter] = STATE(3921), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306210,56 +304890,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6126), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3366), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_PLUS_EQ] = ACTIONS(3368), + [anon_sym_DASH_EQ] = ACTIONS(3368), + [anon_sym_STAR_EQ] = ACTIONS(3368), + [anon_sym_SLASH_EQ] = ACTIONS(3368), + [anon_sym_PERCENT_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306287,17 +304967,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2392] = { - [sym_type_constraints] = STATE(2488), - [sym_property_delegate] = STATE(2632), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9302), + [2413] = { + [sym_type_constraints] = STATE(2503), + [sym_property_delegate] = STATE(2674), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306307,56 +304987,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6130), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306384,17 +305064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2393] = { - [sym_type_constraints] = STATE(2469), - [sym_property_delegate] = STATE(2669), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9185), + [2414] = { + [sym_property_delegate] = STATE(2486), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306404,25 +305083,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6096), + [anon_sym_EQ] = ACTIONS(6022), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(6080), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5982), [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_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -306486,11 +305166,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2394] = { - [sym_property_delegate] = STATE(2499), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9257), + [2415] = { + [sym_property_delegate] = STATE(2488), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306500,57 +305180,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -306578,17 +305258,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2395] = { - [sym_type_constraints] = STATE(2490), - [sym_property_delegate] = STATE(2666), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9185), + [2416] = { + [sym_property_delegate] = STATE(2529), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306598,56 +305277,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6060), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -306675,210 +305355,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2396] = { + [2417] = { [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), - }, - [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(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2398] = { - [sym_property_delegate] = STATE(2509), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9257), + [sym_getter] = STATE(5358), + [sym_setter] = STATE(5358), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -306888,57 +305374,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(5906), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -306966,46 +305440,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), + [2418] = { + [sym_primary_constructor] = STATE(5137), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2452), + [sym_type_constraints] = STATE(4685), + [sym_enum_class_body] = STATE(4872), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_COLON] = ACTIONS(6132), [anon_sym_LBRACK] = ACTIONS(3206), [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5576), - [anon_sym_LBRACE] = ACTIONS(5598), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_LPAREN] = ACTIONS(5498), [anon_sym_COMMA] = ACTIONS(3206), [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5472), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), [anon_sym_SEMI] = ACTIONS(3206), [anon_sym_get] = ACTIONS(3200), [anon_sym_set] = ACTIONS(3200), @@ -307068,11 +305554,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2400] = { - [sym_property_delegate] = STATE(2554), - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_modifiers] = STATE(9137), + [2419] = { + [sym_property_delegate] = STATE(2577), + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -307082,45 +305568,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -307148,28 +305646,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), }, - [2401] = { - [sym_property_delegate] = STATE(2513), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9257), + [2420] = { + [sym_primary_constructor] = STATE(3975), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [2421] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2422] = { + [sym_type_constraints] = STATE(2473), + [sym_property_delegate] = STATE(2708), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -307179,40 +305857,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(6138), [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_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6140), [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), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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_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), @@ -307225,7 +305902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = 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), @@ -307258,113 +305935,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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(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), - [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), + [2423] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2403] = { - [sym_type_constraints] = STATE(2485), - [sym_property_delegate] = STATE(2630), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9302), + [2424] = { + [sym_type_constraints] = STATE(2520), + [sym_property_delegate] = STATE(2710), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -307374,56 +306049,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6106), - [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(5824), - [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6146), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6148), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307451,174 +306126,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2425] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [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(3824), + [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(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1804), - [sym__automatic_semicolon] = ACTIONS(1804), - [sym_safe_nav] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2426] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2427] = { + [sym_primary_constructor] = STATE(5134), + [sym_class_body] = STATE(4880), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4686), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [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_COLON] = ACTIONS(6150), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -307646,16 +306414,15 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [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), + [2428] = { + [sym_property_delegate] = STATE(2572), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -307665,28 +306432,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6112), + [anon_sym_EQ] = ACTIONS(6066), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(6080), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(5960), [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_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), [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), @@ -307743,75 +306511,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2429] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2430] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2431] = { + [sym_type_constraints] = STATE(2470), + [sym_property_delegate] = STATE(2681), + [sym_getter] = STATE(3407), + [sym_setter] = STATE(3407), + [sym_modifiers] = STATE(9296), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6154), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307839,16 +306798,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2408] = { - [sym_property_delegate] = STATE(2484), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9170), + [2432] = { + [sym_type_constraints] = STATE(2481), + [sym_property_delegate] = STATE(2726), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -307858,40 +306817,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_EQ] = ACTIONS(6160), [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_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6140), [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), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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_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), @@ -307904,7 +306862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = 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), @@ -307937,76 +306895,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2433] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2434] = { + [sym_primary_constructor] = STATE(5224), + [sym_class_body] = STATE(4798), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4665), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(6162), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -308034,112 +307086,112 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [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(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(5824), - [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), + [2435] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), + [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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2411] = { - [sym_property_delegate] = STATE(2489), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9170), + [2436] = { + [sym_type_constraints] = STATE(2505), + [sym_property_delegate] = STATE(2687), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -308149,57 +307201,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6164), + [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(6140), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -308227,17 +307278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2412] = { - [sym_type_constraints] = STATE(2481), - [sym_property_delegate] = STATE(2628), - [sym_getter] = STATE(3907), - [sym_setter] = STATE(3907), - [sym_modifiers] = STATE(9302), + [2437] = { + [sym_property_delegate] = STATE(2592), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -308247,56 +307296,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5970), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308324,16 +307374,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2413] = { - [sym_property_delegate] = STATE(2524), - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9257), + [2438] = { + [sym_property_delegate] = STATE(2570), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -308343,57 +307392,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6124), - [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(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_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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6062), + [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_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -308421,174 +307470,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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_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(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), + [2439] = { + [sym_primary_constructor] = STATE(3981), + [sym_class_body] = STATE(3441), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3304), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5474), + [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(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2440] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2441] = { + [sym_primary_constructor] = STATE(5225), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4688), + [sym_enum_class_body] = STATE(4714), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6168), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -308616,76 +307758,171 @@ 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(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2442] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2443] = { + [sym_primary_constructor] = STATE(3974), + [sym_class_body] = STATE(3573), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3324), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -308713,16 +307950,15 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2417] = { - [sym_type_constraints] = STATE(2474), - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9185), + [2444] = { + [sym_property_delegate] = STATE(2535), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -308732,56 +307968,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3944), + [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), @@ -308809,16 +308046,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2418] = { - [sym_property_delegate] = STATE(2560), - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9137), + [2445] = { + [sym_type_constraints] = STATE(2476), + [sym_property_delegate] = STATE(2734), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -308828,45 +308065,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(6132), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [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), - [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6172), + [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(6140), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -308894,124 +308142,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(1788), - [sym__automatic_semicolon] = ACTIONS(3169), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2420] = { - [sym_property_delegate] = STATE(2581), - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9444), + [2446] = { + [sym_type_constraints] = STATE(2490), + [sym_property_delegate] = STATE(2696), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -309021,57 +308161,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6174), + [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(6140), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -309099,303 +308238,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(3652), - [anon_sym_as] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4363), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3103), - [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(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(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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2424] = { - [sym_property_delegate] = STATE(2579), - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9444), + [2447] = { + [sym_type_constraints] = STATE(2513), + [sym_property_delegate] = STATE(2682), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -309405,26 +308257,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6176), [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(5960), + [anon_sym_by] = ACTIONS(6140), [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), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -309434,11 +308290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -309451,7 +308302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1802), [anon_sym_DASH] = ACTIONS(1802), [anon_sym_SLASH] = ACTIONS(1802), - [anon_sym_PERCENT] = 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), @@ -309487,299 +308338,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(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(3134), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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(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(3146), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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), - [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), - }, - [2428] = { - [sym_property_delegate] = STATE(2588), - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9444), + [2448] = { + [sym_property_delegate] = STATE(2585), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -309789,57 +308352,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(5990), + [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(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_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3942), + [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), @@ -309867,267 +308430,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2449] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), [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_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(3824), [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), + [2450] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3117), + [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(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_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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_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(3138), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2451] = { + [sym_primary_constructor] = STATE(3971), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -310155,304 +308718,687 @@ 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(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2452] = { + [sym_primary_constructor] = STATE(5208), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4645), + [sym_enum_class_body] = STATE(4798), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6180), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), + }, + [2453] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3824), [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), + [2454] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3140), + [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(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_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(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_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(3119), - [sym_safe_nav] = ACTIONS(3682), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3824), [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), + [2455] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3156), + [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(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_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2456] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), [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_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), [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__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3824), [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), + [2457] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2458] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2459] = { + [sym_property_delegate] = STATE(2548), + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -310462,56 +309408,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6182), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3928), + [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), @@ -310539,112 +309486,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2460] = { + [sym_property_delegate] = STATE(2564), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6056), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3188), - [sym__automatic_semicolon] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2461] = { + [sym_property_delegate] = STATE(2587), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -310654,30 +309600,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6152), + [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(6144), + [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(4102), - [anon_sym_get] = ACTIONS(6148), - [anon_sym_set] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(3940), + [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), @@ -310687,6 +309629,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -310699,7 +309646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1790), [anon_sym_as_QMARK] = ACTIONS(1792), [anon_sym_PLUS_PLUS] = ACTIONS(1792), [anon_sym_DASH_DASH] = ACTIONS(1792), @@ -310735,204 +309682,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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), + [2462] = { + [sym_property_delegate] = STATE(2574), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(5960), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2463] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1930), + [sym__in_operator] = STATE(1928), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1926), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1925), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4349), + [anon_sym_DOT_DOT] = ACTIONS(4351), + [anon_sym_QMARK_COLON] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_BANGin] = ACTIONS(4365), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3129), + [anon_sym_sealed] = ACTIONS(3129), + [anon_sym_annotation] = ACTIONS(3129), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_lateinit] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_internal] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_tailrec] = ACTIONS(3129), + [anon_sym_operator] = ACTIONS(3129), + [anon_sym_infix] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_external] = ACTIONS(3129), + [sym_property_modifier] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_open] = ACTIONS(3129), + [anon_sym_vararg] = ACTIONS(3129), + [anon_sym_noinline] = ACTIONS(3129), + [anon_sym_crossinline] = ACTIONS(3129), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(3824), [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), + [2464] = { + [sym_type_constraints] = STATE(2477), + [sym_property_delegate] = STATE(2729), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -310942,56 +309889,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6186), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311019,15 +309966,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2441] = { - [sym_property_delegate] = STATE(2574), - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9444), + [2465] = { + [sym_type_constraints] = STATE(2491), + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(4799), + [sym_setter] = STATE(4799), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -311037,57 +309985,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3366), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6158), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5960), - [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_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6188), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6190), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311115,208 +310062,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2466] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), [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_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), [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_safe_nav] = ACTIONS(3602), [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), + [2467] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -311326,56 +310174,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311403,687 +310251,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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(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(3123), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [2468] = { + [sym_property_delegate] = STATE(2634), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312093,29 +310270,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(6096), [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_by] = ACTIONS(6076), [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_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [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), @@ -312172,14 +310347,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2453] = { - [sym_property_delegate] = STATE(2586), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9444), + [2469] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312189,57 +310364,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5998), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312267,15 +310441,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2454] = { - [sym_property_delegate] = STATE(2534), - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9401), + [2470] = { + [sym_property_delegate] = STATE(2729), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312285,57 +310460,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6184), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6186), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312363,112 +310537,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2471] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [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(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), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3096), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [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), + [2472] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312478,56 +310649,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -312555,16 +310726,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2457] = { - [sym_type_constraints] = STATE(2503), - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9403), + [2473] = { + [sym_property_delegate] = STATE(2682), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312574,56 +310745,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6176), + [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(6140), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -312651,15 +310822,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2458] = { - [sym_property_delegate] = STATE(2561), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9401), + [2474] = { + [sym_property_delegate] = STATE(2665), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312669,57 +310840,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6084), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -312747,112 +310916,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2475] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9222), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3173), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2476] = { + [sym_property_delegate] = STATE(2695), + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312862,56 +311030,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6192), + [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_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -312939,15 +311107,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2461] = { - [sym_property_delegate] = STATE(2541), - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9401), + [2477] = { + [sym_property_delegate] = STATE(2726), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -312957,26 +311125,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_EQ] = ACTIONS(6160), [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_by] = ACTIONS(6140), [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), + [anon_sym_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -312986,11 +311158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -313003,7 +311170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = 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), @@ -313039,108 +311206,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2478] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [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), + [2479] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313150,56 +311314,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313227,111 +311391,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [2480] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [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(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), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [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(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2465] = { - [sym_property_delegate] = STATE(2552), - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9401), + [2481] = { + [sym_property_delegate] = STATE(2696), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313341,57 +311505,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6190), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_by] = ACTIONS(5960), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_DOT] = ACTIONS(1732), - [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), - [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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6174), + [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(6140), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -313419,14 +311582,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2466] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9170), + [2482] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313436,56 +311599,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1802), [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_DOT] = ACTIONS(1732), - [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), - [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313513,16 +311676,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2467] = { - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9403), + [2483] = { + [sym_property_delegate] = STATE(2652), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313532,56 +311695,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -313609,14 +311771,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), }, - [2468] = { - [sym_getter] = STATE(5177), - [sym_setter] = STATE(5177), - [sym_modifiers] = STATE(9170), + [2484] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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), + }, + [2485] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313626,56 +311884,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313703,16 +311961,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2469] = { - [sym_property_delegate] = STATE(2642), - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9185), + [2486] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313722,55 +311979,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313798,15 +312056,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2470] = { + [2487] = { [sym_getter] = STATE(5108), [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9170), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313816,56 +312074,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313893,16 +312151,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2471] = { - [sym_property_delegate] = STATE(2729), - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9403), + [2488] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -313912,56 +312169,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6194), - [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(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_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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(3868), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -313989,14 +312246,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2472] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9257), + [2489] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314006,56 +312264,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314083,15 +312341,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2473] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9257), + [2490] = { + [sym_property_delegate] = STATE(2687), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314101,56 +312360,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6164), + [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(6140), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -314178,16 +312437,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2474] = { - [sym_property_delegate] = STATE(2669), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9185), + [2491] = { + [sym_property_delegate] = STATE(2710), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314197,55 +312455,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6146), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6148), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314273,16 +312532,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2475] = { - [sym_property_delegate] = STATE(2730), - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9403), + [2492] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [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), + }, + [2493] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [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(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(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(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(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2494] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314292,39 +312739,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6156), + [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_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), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [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), @@ -314337,7 +312784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1802), [anon_sym_DASH] = ACTIONS(1802), [anon_sym_SLASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1802), [anon_sym_as_QMARK] = ACTIONS(1804), [anon_sym_PLUS_PLUS] = ACTIONS(1804), [anon_sym_DASH_DASH] = ACTIONS(1804), @@ -314370,108 +312817,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2495] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1816), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2477] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9170), + [2496] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [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), + }, + [2497] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [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(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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), + }, + [2498] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314481,56 +313119,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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(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), - [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3848), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314558,99 +313196,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2499] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(3169), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), [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_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -314658,94 +313296,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2500] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3119), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_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(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_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), @@ -314753,94 +313391,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2501] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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(3103), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), [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_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), [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_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -314848,11 +313486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2481] = { - [sym_property_delegate] = STATE(2630), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9302), + [2502] = { + [sym_getter] = STATE(5246), + [sym_setter] = STATE(5246), + [sym_modifiers] = STATE(9141), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314862,55 +313499,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3422), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6106), - [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_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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314938,15 +313576,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2482] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9170), + [2503] = { + [sym_property_delegate] = STATE(2671), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -314956,56 +313595,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6098), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -315033,15 +313671,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2483] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9170), + [2504] = { + [sym_property_delegate] = STATE(2642), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315051,56 +313690,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6094), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315128,15 +313766,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2484] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9170), + [2505] = { + [sym_property_delegate] = STATE(2694), + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315146,56 +313785,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6194), + [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_by] = ACTIONS(6140), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -315223,74 +313862,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2506] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3602), + [sym_multiline_comment] = ACTIONS(3), + }, + [2507] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9141), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(5986), + [anon_sym_set] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315318,99 +314051,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2508] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3150), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3148), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), [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_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), [anon_sym_expect] = ACTIONS(3092), [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), @@ -315418,10 +314151,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2487] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9170), + [2509] = { + [sym_property_delegate] = STATE(2648), + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315431,56 +314165,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6196), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -315508,16 +314241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2488] = { - [sym_property_delegate] = STATE(2634), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9302), + [2510] = { + [sym_property_delegate] = STATE(2600), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315527,55 +314260,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -315603,15 +314336,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2489] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9170), + [2511] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(3590), + [anon_sym_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), + [anon_sym_is] = ACTIONS(3612), + [anon_sym_BANGis] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), + [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(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(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), + }, + [2512] = { + [sym_getter] = STATE(3853), + [sym_setter] = STATE(3853), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315621,56 +314449,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315698,16 +314526,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2490] = { - [sym_property_delegate] = STATE(2673), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9185), + [2513] = { + [sym_property_delegate] = STATE(2734), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315717,55 +314545,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6172), + [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(6140), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -315793,16 +314622,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2491] = { - [sym_property_delegate] = STATE(2711), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9368), + [2514] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315812,56 +314639,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315889,14 +314716,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2492] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9170), + [2515] = { + [sym_property_delegate] = STATE(2613), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -315906,25 +314735,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6086), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6076), [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_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -315988,201 +314816,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2495] = { - [sym_property_delegate] = STATE(2636), - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9302), + [2516] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316192,55 +314829,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316268,15 +314906,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2496] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9257), + [2517] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316286,56 +314924,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316363,111 +315001,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2498] = { - [sym_property_delegate] = STATE(2638), - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9302), + [2518] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316477,55 +315019,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6196), - [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(3872), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -316553,15 +315096,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2499] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9257), + [2519] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316571,56 +315114,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -316648,111 +315191,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2501] = { - [sym_property_delegate] = STATE(2700), - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9368), + [2520] = { + [sym_property_delegate] = STATE(2708), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316762,28 +315210,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6168), + [anon_sym_EQ] = ACTIONS(6138), [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_by] = ACTIONS(6140), [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_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), [anon_sym_STAR] = ACTIONS(1792), [anon_sym_DASH_GT] = ACTIONS(1792), [sym_label] = ACTIONS(1792), @@ -316843,106 +315291,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2521] = { + [sym_property_delegate] = STATE(2674), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -316952,56 +315305,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6130), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317029,15 +315381,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2504] = { - [sym_property_delegate] = STATE(2685), - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9368), + [2522] = { + [sym_property_delegate] = STATE(2675), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317047,56 +315400,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6198), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6076), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -317124,14 +315476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2505] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9170), + [2523] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317141,56 +315494,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6040), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317218,15 +315571,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2506] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9170), + [2524] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317236,56 +315589,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), + [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), @@ -317313,15 +315666,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2507] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9257), + [2525] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317331,12 +315684,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -317346,10 +315700,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_where] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5982), - [anon_sym_set] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -317413,94 +315766,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2526] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3146), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3144), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_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(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_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), @@ -317508,105 +315861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2510] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9257), + [2527] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317616,12 +315874,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -317631,10 +315890,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -317698,189 +315956,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [2528] = { + [sym_indexing_suffix] = STATE(3555), + [sym_navigation_suffix] = STATE(3553), + [sym_call_suffix] = STATE(3552), + [sym_annotated_lambda] = STATE(3543), + [sym_type_arguments] = STATE(8246), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3533), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1842), + [sym__in_operator] = STATE(1843), + [sym__is_operator] = STATE(5917), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1845), + [sym__as_operator] = STATE(5918), + [sym__postfix_unary_operator] = STATE(3532), + [sym__member_access_operator] = STATE(7781), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1847), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), [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_DOT] = ACTIONS(3574), + [anon_sym_as] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(3184), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4595), [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_in] = ACTIONS(4597), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(4599), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4603), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(3182), [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_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_BANGin] = ACTIONS(4613), [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_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4595), [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_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(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_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), @@ -317888,10 +316051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3602), [sym_multiline_comment] = ACTIONS(3), }, - [2513] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9257), + [2529] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -317901,12 +316064,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -317916,10 +316080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -317983,865 +316146,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_as] = 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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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(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), - }, - [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(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_DOT] = ACTIONS(1732), - [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_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__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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(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_DOT] = ACTIONS(1732), - [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_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__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), - [sym_multiline_comment] = ACTIONS(3), - }, - [2523] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9257), + [2530] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -318851,12 +316159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), @@ -318866,10 +316175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(5982), - [anon_sym_set] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [anon_sym_STAR] = ACTIONS(1808), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -318933,10 +316241,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2524] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9257), + [2531] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9222), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -318946,12 +316254,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_EQ] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), @@ -318961,10 +316270,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6002), + [anon_sym_set] = ACTIONS(6004), [anon_sym_STAR] = ACTIONS(1808), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -319028,105 +316336,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), + [2532] = { + [sym_primary_constructor] = STATE(5443), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2653), + [sym_type_constraints] = STATE(4672), + [sym_enum_class_body] = STATE(4739), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5500), + [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(3346), - [sym__automatic_semicolon] = ACTIONS(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3248), + [sym_safe_nav] = ACTIONS(3248), [sym_multiline_comment] = ACTIONS(3), }, - [2526] = { - [sym_getter] = STATE(4034), - [sym_setter] = STATE(4034), - [sym_modifiers] = STATE(9257), + [2533] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2534] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3152), + [anon_sym_sealed] = ACTIONS(3152), + [anon_sym_annotation] = ACTIONS(3152), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_lateinit] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_internal] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_tailrec] = ACTIONS(3152), + [anon_sym_operator] = ACTIONS(3152), + [anon_sym_infix] = ACTIONS(3152), + [anon_sym_inline] = ACTIONS(3152), + [anon_sym_external] = ACTIONS(3152), + [sym_property_modifier] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_final] = ACTIONS(3152), + [anon_sym_open] = ACTIONS(3152), + [anon_sym_vararg] = ACTIONS(3152), + [anon_sym_noinline] = ACTIONS(3152), + [anon_sym_crossinline] = ACTIONS(3152), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2535] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -319136,28 +316631,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [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(5982), - [anon_sym_set] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(3928), + [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), @@ -319214,14 +316709,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3326), [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), }, - [2527] = { - [sym_getter] = STATE(4018), - [sym_setter] = STATE(4018), - [sym_modifiers] = STATE(9257), + [2536] = { + [sym_getter] = STATE(5358), + [sym_setter] = STATE(5358), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -319231,56 +316725,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -319308,16 +316789,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [2528] = { - [sym_property_delegate] = STATE(2684), - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9403), + [2537] = { + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -319327,56 +316819,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_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_SEMI] = ACTIONS(2062), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -319404,299 +316883,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), + [2538] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [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(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), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [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(3824), + [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(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(3824), [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), + [2539] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [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(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), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(3188), + [sym__automatic_semicolon] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(3824), [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), + [2540] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [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(3824), + [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(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2541] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [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_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [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_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), [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_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), [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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2532] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9401), + [2542] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -319706,56 +317289,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5970), [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_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319783,72 +317366,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2543] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3102), + [anon_sym_sealed] = ACTIONS(3102), + [anon_sym_annotation] = ACTIONS(3102), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_lateinit] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_internal] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_tailrec] = ACTIONS(3102), + [anon_sym_operator] = ACTIONS(3102), + [anon_sym_infix] = ACTIONS(3102), + [anon_sym_inline] = ACTIONS(3102), + [anon_sym_external] = ACTIONS(3102), + [sym_property_modifier] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_final] = ACTIONS(3102), + [anon_sym_open] = ACTIONS(3102), + [anon_sym_vararg] = ACTIONS(3102), + [anon_sym_noinline] = ACTIONS(3102), + [anon_sym_crossinline] = ACTIONS(3102), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2544] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2545] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3098), + [anon_sym_sealed] = ACTIONS(3098), + [anon_sym_annotation] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3098), + [anon_sym_lateinit] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_internal] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_tailrec] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_infix] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym_external] = ACTIONS(3098), + [sym_property_modifier] = ACTIONS(3098), + [anon_sym_abstract] = ACTIONS(3098), + [anon_sym_final] = ACTIONS(3098), + [anon_sym_open] = ACTIONS(3098), + [anon_sym_vararg] = ACTIONS(3098), + [anon_sym_noinline] = ACTIONS(3098), + [anon_sym_crossinline] = ACTIONS(3098), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2546] = { + [sym_primary_constructor] = STATE(4161), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2639), + [sym_type_constraints] = STATE(3827), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), [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_COLON] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -319876,15 +317741,15 @@ 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(3238), + [sym__automatic_semicolon] = ACTIONS(3238), + [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2534] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9401), + [2547] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -319894,56 +317759,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), [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_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319971,108 +317836,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2548] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3173), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2536] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9401), + [2549] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -320082,56 +317947,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), [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_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320159,14 +318024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2537] = { - [sym_getter] = STATE(5347), - [sym_setter] = STATE(5347), - [sym_modifiers] = STATE(9137), + [2550] = { + [sym_getter] = STATE(3559), + [sym_setter] = STATE(3559), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -320176,43 +318041,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320240,86 +318118,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), }, - [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), + [2551] = { + [sym_primary_constructor] = STATE(4148), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2629), + [sym_type_constraints] = STATE(3746), + [sym_enum_class_body] = STATE(3902), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [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_COLON] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -320347,108 +318211,297 @@ 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(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2552] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2540] = { - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_modifiers] = STATE(9137), + [2553] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3094), + [anon_sym_sealed] = ACTIONS(3094), + [anon_sym_annotation] = ACTIONS(3094), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [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(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2554] = { + [sym_primary_constructor] = STATE(4149), + [sym_class_body] = STATE(3902), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2626), + [sym_type_constraints] = STATE(3817), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2555] = { + [sym_getter] = STATE(5379), + [sym_setter] = STATE(5379), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -320458,43 +318511,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1790), [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_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(2054), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -320522,309 +318575,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), + [2556] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3110), + [anon_sym_sealed] = ACTIONS(3110), + [anon_sym_annotation] = ACTIONS(3110), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3110), + [anon_sym_lateinit] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_internal] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_tailrec] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_infix] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym_external] = ACTIONS(3110), + [sym_property_modifier] = ACTIONS(3110), + [anon_sym_abstract] = ACTIONS(3110), + [anon_sym_final] = ACTIONS(3110), + [anon_sym_open] = ACTIONS(3110), + [anon_sym_vararg] = ACTIONS(3110), + [anon_sym_noinline] = ACTIONS(3110), + [anon_sym_crossinline] = ACTIONS(3110), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3188), - [sym__automatic_semicolon] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(3824), [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(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(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), - [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), + [2557] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3167), + [anon_sym_sealed] = ACTIONS(3167), + [anon_sym_annotation] = ACTIONS(3167), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [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(3167), + [anon_sym_actual] = ACTIONS(3167), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2544] = { - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9401), + [2558] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -320834,56 +318793,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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(3938), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), [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), - [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_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), @@ -320911,390 +318870,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(1788), - [sym__automatic_semicolon] = ACTIONS(3162), - [sym_safe_nav] = ACTIONS(3682), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(1788), - [sym__automatic_semicolon] = ACTIONS(3146), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2559] = { + [sym_primary_constructor] = STATE(5437), + [sym_class_body] = STATE(4872), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2658), + [sym_type_constraints] = STATE(4630), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3142), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2549] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9401), + [2560] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -321304,56 +318981,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), [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_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321381,202 +319058,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2561] = { + [sym_primary_constructor] = STATE(5436), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2677), + [sym_type_constraints] = STATE(4685), + [sym_enum_class_body] = STATE(4872), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5500), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3119), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2552] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9401), + [2562] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -321586,56 +319169,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6058), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321663,14 +319246,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2553] = { - [sym_getter] = STATE(5416), - [sym_setter] = STATE(5416), - [sym_modifiers] = STATE(9137), + [2563] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -321680,43 +319263,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -321744,27 +319340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, - [2554] = { - [sym_getter] = STATE(5407), - [sym_setter] = STATE(5407), - [sym_modifiers] = STATE(9137), + [2564] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -321774,43 +319357,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1790), [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_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), - [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_RPAREN] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -321838,27 +319434,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), + [sym_multiline_comment] = ACTIONS(3), }, - [2555] = { - [sym_getter] = STATE(3464), - [sym_setter] = STATE(3464), - [sym_modifiers] = STATE(9401), + [2565] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -321868,56 +319451,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -321945,701 +319528,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [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(3316), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = 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_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(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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2566] = { + [sym_primary_constructor] = STATE(4187), + [sym_class_body] = STATE(3454), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2606), + [sym_type_constraints] = STATE(3316), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), + [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(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2567] = { + [sym_primary_constructor] = STATE(5434), + [sym_class_body] = STATE(4790), + [sym__class_parameters] = STATE(4636), + [sym_type_parameters] = STATE(2669), + [sym_type_constraints] = STATE(4629), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_COLON] = ACTIONS(6214), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5576), - [anon_sym_LBRACE] = ACTIONS(5578), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5580), + [anon_sym_LPAREN] = ACTIONS(5498), [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5490), + [anon_sym_LT] = ACTIONS(5472), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5500), [anon_sym_SEMI] = ACTIONS(3238), [anon_sym_get] = ACTIONS(3234), [anon_sym_set] = ACTIONS(3234), @@ -322701,39 +319720,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2568] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9150), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(5928), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [2569] = { + [sym_primary_constructor] = STATE(4157), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2617), + [sym_type_constraints] = STATE(3793), + [sym_enum_class_body] = STATE(4013), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_COLON] = ACTIONS(6216), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5822), + [anon_sym_LPAREN] = ACTIONS(5820), [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5822), [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_get] = ACTIONS(3244), [anon_sym_set] = ACTIONS(3244), @@ -322795,198 +319908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2570] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -322996,56 +319921,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -323073,14 +319998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2568] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9401), + [2571] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323090,56 +320015,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -323167,14 +320092,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2569] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9401), + [2572] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323184,56 +320109,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -323261,108 +320186,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2571] = { - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9444), + [2573] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323372,56 +320203,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [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), @@ -323449,14 +320280,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2572] = { - [sym_getter] = STATE(4827), - [sym_setter] = STATE(4827), - [sym_modifiers] = STATE(9444), + [2574] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323466,12 +320297,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), @@ -323480,10 +320312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(3932), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), [anon_sym_STAR] = ACTIONS(1814), [sym_label] = ACTIONS(1816), [anon_sym_in] = ACTIONS(1814), @@ -323547,39 +320378,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2575] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + }, + [2576] = { + [sym_primary_constructor] = STATE(5449), + [sym_class_body] = STATE(5097), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2624), + [sym_type_constraints] = STATE(4990), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_COLON] = ACTIONS(6218), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5768), - [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5806), [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5776), - [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3238), [anon_sym_get] = ACTIONS(3234), [anon_sym_set] = ACTIONS(3234), @@ -323641,10 +320566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [2574] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9444), + [2577] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323654,56 +320579,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323731,14 +320656,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2575] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9401), + [2578] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323748,56 +320673,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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(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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323825,72 +320750,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2579] = { + [sym_primary_constructor] = STATE(5439), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2621), + [sym_type_constraints] = STATE(5000), + [sym_enum_class_body] = STATE(5207), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [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_COLON] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -323918,15 +320843,15 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2577] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9444), + [2580] = { + [sym_getter] = STATE(4764), + [sym_setter] = STATE(4764), + [sym_modifiers] = STATE(9446), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -323936,56 +320861,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324013,72 +320938,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym_safe_nav] = ACTIONS(3424), [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), + [2581] = { + [sym_primary_constructor] = STATE(5432), + [sym_class_body] = STATE(5207), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2620), + [sym_type_constraints] = STATE(5050), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2582] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_as] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), [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_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), [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_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), [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_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), [anon_sym_suspend] = ACTIONS(3156), [anon_sym_sealed] = ACTIONS(3156), [anon_sym_annotation] = ACTIONS(3156), @@ -324108,13 +321127,13 @@ 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(3158), - [sym_safe_nav] = ACTIONS(3682), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [2579] = { - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9444), + [2583] = { + [sym_getter] = STATE(5409), + [sym_setter] = STATE(5409), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324124,56 +321143,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), [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_in] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324201,73 +321207,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [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), + [2584] = { + [sym_primary_constructor] = STATE(5475), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2619), + [sym_type_constraints] = STATE(4970), + [sym_enum_class_body] = STATE(5206), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6224), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2585] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), [sym_function_modifier] = STATE(5620), [sym_inheritance_modifier] = STATE(5620), [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3944), + [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), @@ -324295,14 +321408,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2581] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9444), + [2586] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9408), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_RPAREN] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = 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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), + }, + [2587] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324312,12 +321519,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -324326,10 +321534,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(3942), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -324393,104 +321600,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2588] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324500,12 +321613,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -324514,10 +321628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -324581,198 +321694,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2589] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3148), + [anon_sym_sealed] = ACTIONS(3148), + [anon_sym_annotation] = ACTIONS(3148), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_lateinit] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_internal] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_tailrec] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_infix] = ACTIONS(3148), + [anon_sym_inline] = ACTIONS(3148), + [anon_sym_external] = ACTIONS(3148), + [sym_property_modifier] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_final] = ACTIONS(3148), + [anon_sym_open] = ACTIONS(3148), + [anon_sym_vararg] = ACTIONS(3148), + [anon_sym_noinline] = ACTIONS(3148), + [anon_sym_crossinline] = ACTIONS(3148), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3150), + [sym_safe_nav] = ACTIONS(3824), [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), + [2590] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9446), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6050), + [anon_sym_set] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2586] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9444), + [2591] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [anon_sym_suspend] = ACTIONS(3106), + [anon_sym_sealed] = ACTIONS(3106), + [anon_sym_annotation] = ACTIONS(3106), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3106), + [anon_sym_lateinit] = ACTIONS(3106), + [anon_sym_public] = ACTIONS(3106), + [anon_sym_private] = ACTIONS(3106), + [anon_sym_internal] = ACTIONS(3106), + [anon_sym_protected] = ACTIONS(3106), + [anon_sym_tailrec] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_infix] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym_external] = ACTIONS(3106), + [sym_property_modifier] = ACTIONS(3106), + [anon_sym_abstract] = ACTIONS(3106), + [anon_sym_final] = ACTIONS(3106), + [anon_sym_open] = ACTIONS(3106), + [anon_sym_vararg] = ACTIONS(3106), + [anon_sym_noinline] = ACTIONS(3106), + [anon_sym_crossinline] = ACTIONS(3106), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2592] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324782,12 +321989,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -324796,10 +322004,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1792), [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_SEMI] = ACTIONS(3940), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -324863,10 +322070,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2587] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9444), + [2593] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(3824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2594] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9408), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324876,12 +322177,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -324890,10 +322192,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(6020), - [anon_sym_set] = ACTIONS(6022), + [anon_sym_get] = ACTIONS(5962), + [anon_sym_set] = ACTIONS(5964), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -324957,10 +322258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2588] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9444), + [2595] = { + [sym_getter] = STATE(5360), + [sym_setter] = STATE(5360), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -324970,56 +322271,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_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(2042), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -325047,143 +322335,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2596] = { + [sym_indexing_suffix] = STATE(3848), + [sym_navigation_suffix] = STATE(3851), + [sym_call_suffix] = STATE(3863), + [sym_annotated_lambda] = STATE(3864), + [sym_type_arguments] = STATE(8198), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3865), + [sym__equality_operator] = STATE(1447), + [sym__comparison_operator] = STATE(1448), + [sym__in_operator] = STATE(1449), + [sym__is_operator] = STATE(6110), + [sym__additive_operator] = STATE(1450), + [sym__multiplicative_operator] = STATE(1451), + [sym__as_operator] = STATE(6114), + [sym__postfix_unary_operator] = STATE(3868), + [sym__member_access_operator] = STATE(7776), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1453), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4834), + [sym_label] = ACTIONS(3812), + [anon_sym_in] = ACTIONS(4836), + [anon_sym_DOT_DOT] = ACTIONS(4838), + [anon_sym_QMARK_COLON] = ACTIONS(4840), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4844), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [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(4850), + [anon_sym_GT_EQ] = ACTIONS(4850), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(3834), + [anon_sym_BANGis] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(4854), + [anon_sym_DASH] = ACTIONS(4854), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_as_QMARK] = ACTIONS(3840), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_BANG_BANG] = ACTIONS(3842), + [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(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2597] = { + [sym_primary_constructor] = STATE(4183), + [sym_class_body] = STATE(3389), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2602), + [sym_type_constraints] = STATE(3298), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [2598] = { + [sym_primary_constructor] = STATE(4170), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2609), + [sym_type_constraints] = STATE(3325), + [sym_enum_class_body] = STATE(3372), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(5472), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5474), + [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), + }, + [2599] = { + [sym_primary_constructor] = STATE(4191), + [sym__class_parameters] = STATE(3296), + [sym_type_parameters] = STATE(2605), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3454), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3200), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6218), + [anon_sym_COLON] = ACTIONS(6230), [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5822), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(5472), [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5474), [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), @@ -325235,14 +322725,13 @@ 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), }, - [2591] = { - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9444), + [2600] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -325252,56 +322741,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -325329,14 +322816,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2592] = { - [sym_getter] = STATE(5349), - [sym_setter] = STATE(5349), - [sym_modifiers] = STATE(9137), + [2601] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -325346,43 +322834,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -325410,180 +322909,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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(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(3115), - [sym_safe_nav] = ACTIONS(3682), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2602] = { + [sym_primary_constructor] = STATE(4192), + [sym_class_body] = STATE(3441), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3304), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_LBRACK] = 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_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), - [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(6232), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -325611,261 +323003,258 @@ 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(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2603] = { + [sym_type_constraints] = STATE(2749), + [sym_property_delegate] = STATE(2849), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [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(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6234), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6238), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), + [2604] = { + [sym_type_constraints] = STATE(2742), + [sym_property_delegate] = STATE(2870), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9378), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [2605] = { + [sym_primary_constructor] = STATE(4184), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_LBRACK] = 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_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), - [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(6250), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -325893,73 +323282,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_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2606] = { + [sym_primary_constructor] = STATE(4176), + [sym_class_body] = STATE(3573), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3324), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5474), + [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), @@ -325987,73 +323375,258 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2607] = { + [sym_type_constraints] = STATE(2747), + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9378), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4633), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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), + }, + [2608] = { + [sym_getter] = STATE(3853), + [sym_setter] = STATE(3853), + [sym_modifiers] = STATE(9313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + }, + [2609] = { + [sym_primary_constructor] = STATE(4155), + [sym__class_parameters] = STATE(3296), + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym_modifiers] = STATE(9919), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [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_COLON] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5470), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -326081,16 +323654,14 @@ 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(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [2600] = { - [sym_type_constraints] = STATE(2721), - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9415), + [2610] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326100,27 +323671,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6232), + [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_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), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), [anon_sym_DOT_DOT] = ACTIONS(1804), @@ -326129,6 +323697,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -326141,7 +323714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1802), [anon_sym_DASH] = ACTIONS(1802), [anon_sym_SLASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1802), [anon_sym_as_QMARK] = ACTIONS(1804), [anon_sym_PLUS_PLUS] = ACTIONS(1804), [anon_sym_DASH_DASH] = ACTIONS(1804), @@ -326178,10 +323751,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2601] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9185), + [2611] = { + [sym_primary_constructor] = STATE(4205), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2701), + [sym_type_constraints] = STATE(3746), + [sym_enum_class_body] = STATE(3902), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2612] = { + [sym_type_constraints] = STATE(2739), + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9378), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6262), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [2613] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326191,12 +323950,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_EQ] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), @@ -326204,10 +323964,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [anon_sym_STAR] = ACTIONS(1802), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -326271,12 +324030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2602] = { - [sym_type_constraints] = STATE(2712), - [sym_property_delegate] = STATE(2808), - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9447), + [2614] = { + [sym_getter] = STATE(5317), + [sym_setter] = STATE(5317), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326286,52 +324043,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3422), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6240), - [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(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_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_LBRACK] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326359,108 +324106,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - [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), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), }, - [2604] = { - [sym_getter] = STATE(5183), - [sym_setter] = STATE(5183), - [sym_modifiers] = STATE(9185), + [2615] = { + [sym_type_constraints] = STATE(2699), + [sym_property_delegate] = STATE(2787), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326470,54 +324138,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -326545,73 +324211,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3326), [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1816), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2616] = { + [sym_primary_constructor] = STATE(5506), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2714), + [sym_type_constraints] = STATE(5000), + [sym_enum_class_body] = STATE(5207), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), [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_COLON] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -326639,72 +324304,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(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [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), + [2617] = { + [sym_primary_constructor] = STATE(4160), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), [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_COLON] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), [anon_sym_suspend] = ACTIONS(3218), [anon_sym_sealed] = ACTIONS(3220), [anon_sym_annotation] = ACTIONS(3220), @@ -326732,16 +324397,15 @@ 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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [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), + [2618] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326751,53 +324415,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326825,14 +324490,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2608] = { - [sym_getter] = STATE(5393), - [sym_setter] = STATE(5393), - [sym_modifiers] = STATE(9137), + [2619] = { + [sym_primary_constructor] = STATE(5466), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5004), + [sym_enum_class_body] = STATE(5121), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6276), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2620] = { + [sym_primary_constructor] = STATE(5472), + [sym_class_body] = STATE(5249), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(4986), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2621] = { + [sym_primary_constructor] = STATE(5456), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5249), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2622] = { + [sym_type_constraints] = STATE(2690), + [sym_property_delegate] = STATE(2767), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326842,42 +324789,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3338), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = 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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6284), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326905,29 +324862,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), }, - [2609] = { - [sym_type_constraints] = STATE(2742), - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9117), + [2623] = { + [sym_type_constraints] = STATE(2753), + [sym_property_delegate] = STATE(2820), + [sym_getter] = STATE(4799), + [sym_setter] = STATE(4799), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -326937,53 +324882,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3366), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = 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_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(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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6286), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6288), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327011,72 +324956,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2624] = { + [sym_primary_constructor] = STATE(5446), + [sym_class_body] = STATE(5184), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5011), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5810), + [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), @@ -327104,14 +325048,15 @@ 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(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [2611] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9185), + [2625] = { + [sym_getter] = STATE(5413), + [sym_setter] = STATE(5413), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -327121,54 +325066,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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(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), - [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_LBRACK] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327196,259 +325129,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), + [2626] = { + [sym_primary_constructor] = STATE(4156), + [sym_class_body] = STATE(4023), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3794), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -327476,107 +325234,110 @@ 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(3274), - [sym_safe_nav] = ACTIONS(3274), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2627] = { + [sym_primary_constructor] = STATE(5510), + [sym_class_body] = STATE(5207), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2686), + [sym_type_constraints] = STATE(5050), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5810), + [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(3360), - [sym_safe_nav] = ACTIONS(3360), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2616] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9185), + [2628] = { + [sym_type_constraints] = STATE(2715), + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -327586,24 +325347,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6296), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6266), [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6090), - [anon_sym_set] = ACTIONS(6092), - [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), [anon_sym_DOT_DOT] = ACTIONS(1810), @@ -327612,11 +325376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -327629,7 +325388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1808), [anon_sym_DASH] = ACTIONS(1808), [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = 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), @@ -327666,160 +325425,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), + [2629] = { + [sym_primary_constructor] = STATE(4152), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6302), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -327847,15 +325513,17 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2619] = { - [sym_getter] = STATE(5394), - [sym_setter] = STATE(5394), - [sym_modifiers] = STATE(9137), + [2630] = { + [sym_type_constraints] = STATE(2688), + [sym_property_delegate] = STATE(2795), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -327865,42 +325533,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6304), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4401), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -327928,29 +325606,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), }, - [2620] = { - [sym_type_constraints] = STATE(2745), - [sym_property_delegate] = STATE(2873), - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9194), + [2631] = { + [sym_type_constraints] = STATE(2704), + [sym_property_delegate] = STATE(2809), + [sym_getter] = STATE(3921), + [sym_setter] = STATE(3921), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -327960,53 +325626,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6306), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6308), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328034,14 +325699,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2621] = { - [sym_getter] = STATE(5347), - [sym_setter] = STATE(5347), - [sym_modifiers] = STATE(9137), + [2632] = { + [sym_getter] = STATE(5379), + [sym_setter] = STATE(5379), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328051,8 +325717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), @@ -328062,8 +325728,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), [anon_sym_this] = ACTIONS(1790), [anon_sym_super] = ACTIONS(1790), [anon_sym_STAR] = ACTIONS(1792), @@ -328131,10 +325797,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1792), }, - [2622] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9185), + [2633] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328144,54 +325810,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -328219,108 +325885,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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(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), - [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), + [2634] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9158), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2624] = { - [sym_getter] = STATE(5416), - [sym_setter] = STATE(5416), - [sym_modifiers] = STATE(9137), + [2635] = { + [sym_getter] = STATE(5246), + [sym_setter] = STATE(5246), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328330,42 +325996,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328393,29 +326071,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), }, - [2625] = { - [sym_type_constraints] = STATE(2691), - [sym_property_delegate] = STATE(2781), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9415), + [2636] = { + [sym_type_constraints] = STATE(2713), + [sym_property_delegate] = STATE(2768), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328425,52 +326091,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6310), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -328498,17 +326164,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2626] = { - [sym_type_constraints] = STATE(2713), - [sym_property_delegate] = STATE(2790), - [sym_getter] = STATE(3907), - [sym_setter] = STATE(3907), - [sym_modifiers] = STATE(9415), + [2637] = { + [sym_getter] = STATE(5409), + [sym_setter] = STATE(5409), + [sym_modifiers] = STATE(9150), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_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(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), + }, + [2638] = { + [sym_type_constraints] = STATE(2711), + [sym_property_delegate] = STATE(2798), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328518,52 +326277,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6312), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328591,72 +326350,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2639] = { + [sym_primary_constructor] = STATE(4154), + [sym_class_body] = STATE(3874), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3715), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_COMMA] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -328684,15 +326443,17 @@ 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(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [2628] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9302), + [2640] = { + [sym_type_constraints] = STATE(2737), + [sym_property_delegate] = STATE(2823), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328702,54 +326463,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -328777,15 +326537,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2629] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9302), + [2641] = { + [sym_getter] = STATE(5360), + [sym_setter] = STATE(5360), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328795,54 +326554,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_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(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -328870,15 +326617,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), }, - [2630] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9302), + [2642] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328888,54 +326647,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), @@ -328963,15 +326722,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2631] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9302), + [2643] = { + [sym_type_constraints] = STATE(2712), + [sym_property_delegate] = STATE(2801), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -328981,24 +326742,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6320), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6266), [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), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), [anon_sym_DOT_DOT] = ACTIONS(1792), @@ -329007,11 +326771,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -329024,7 +326783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = 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), @@ -329061,10 +326820,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2632] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9302), + [2644] = { + [sym_primary_constructor] = STATE(4210), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2724), + [sym_type_constraints] = STATE(3827), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6322), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2645] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329074,12 +326926,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -329087,10 +326940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1792), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(6082), - [anon_sym_set] = ACTIONS(6084), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -329154,103 +327006,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2646] = { + [sym_primary_constructor] = STATE(4201), + [sym_class_body] = STATE(3902), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2707), + [sym_type_constraints] = STATE(3817), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_where] = ACTIONS(5822), + [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(1804), - [sym__automatic_semicolon] = ACTIONS(1804), - [sym_safe_nav] = ACTIONS(1804), + [sym__backtick_identifier] = ACTIONS(3206), + [sym__automatic_semicolon] = ACTIONS(3206), + [sym_safe_nav] = ACTIONS(3206), [sym_multiline_comment] = ACTIONS(3), }, - [2634] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9302), + [2647] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329260,54 +327112,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329335,15 +327187,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2635] = { - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9302), + [2648] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329353,54 +327205,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329428,15 +327280,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2636] = { - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9302), + [2649] = { + [sym_primary_constructor] = STATE(4199), + [sym__class_parameters] = STATE(3826), + [sym_type_parameters] = STATE(2735), + [sym_type_constraints] = STATE(3793), + [sym_enum_class_body] = STATE(4013), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3244), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3244), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(5808), + [anon_sym_GT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2650] = { + [sym_getter] = STATE(5358), + [sym_setter] = STATE(5358), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329446,54 +327391,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_fun] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -329521,15 +327454,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9302), + [2651] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329539,54 +327484,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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(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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329614,15 +327559,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2638] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9302), + [2652] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329632,54 +327577,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4018), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -329707,15 +327652,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2639] = { - [sym_getter] = STATE(4034), - [sym_setter] = STATE(4034), - [sym_modifiers] = STATE(9302), + [2653] = { + [sym_primary_constructor] = STATE(5447), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4688), + [sym_enum_class_body] = STATE(4714), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5500), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2654] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329725,12 +327763,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_EQ] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), @@ -329738,10 +327777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), [anon_sym_STAR] = ACTIONS(1814), [sym_label] = ACTIONS(1816), [anon_sym_in] = ACTIONS(1814), @@ -329805,10 +327843,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2640] = { - [sym_getter] = STATE(4018), - [sym_setter] = STATE(4018), - [sym_modifiers] = STATE(9302), + [2655] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -329818,54 +327856,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6130), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329893,108 +327931,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2642] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9185), + [2656] = { + [sym_type_constraints] = STATE(2719), + [sym_property_delegate] = STATE(2783), + [sym_getter] = STATE(5125), + [sym_setter] = STATE(5125), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330004,54 +327951,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330079,108 +328024,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2644] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9185), + [2657] = { + [sym_type_constraints] = STATE(2743), + [sym_property_delegate] = STATE(2847), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330190,54 +328044,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -330265,73 +328118,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2658] = { + [sym_primary_constructor] = STATE(5442), + [sym_class_body] = STATE(4798), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4665), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -330359,16 +328211,16 @@ 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(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2646] = { - [sym_type_constraints] = STATE(2703), - [sym_property_delegate] = STATE(2794), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9447), + [2659] = { + [sym_type_constraints] = STATE(2741), + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330378,52 +328230,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6338), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -330451,15 +328304,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2647] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9185), + [2660] = { + [sym_type_constraints] = STATE(2703), + [sym_property_delegate] = STATE(2773), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330469,54 +328323,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -330544,15 +328396,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2648] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9185), + [2661] = { + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9150), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330562,54 +328414,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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_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(5910), + [anon_sym_set] = ACTIONS(5912), + [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), @@ -330637,296 +328477,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - }, - [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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(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), - [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), + [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), }, - [2652] = { - [sym_type_constraints] = STATE(2750), - [sym_property_delegate] = STATE(2836), - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9117), + [2662] = { + [sym_type_constraints] = STATE(2745), + [sym_property_delegate] = STATE(2862), + [sym_getter] = STATE(3407), + [sym_setter] = STATE(3407), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -330936,53 +328509,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6342), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(6344), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331010,42 +328583,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2663] = { + [sym_primary_constructor] = STATE(5498), + [sym_class_body] = STATE(5097), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2698), + [sym_type_constraints] = STATE(4990), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3234), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_COLON] = ACTIONS(6346), [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3234), [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5822), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3238), [anon_sym_get] = ACTIONS(3234), [anon_sym_set] = ACTIONS(3234), @@ -331107,198 +328680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(3238), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - [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), - }, - [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(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), - [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), - }, - [2656] = { - [sym_type_constraints] = STATE(2733), - [sym_property_delegate] = STATE(2802), - [sym_getter] = STATE(5144), - [sym_setter] = STATE(5144), - [sym_modifiers] = STATE(9447), + [2664] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -331308,52 +328693,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331381,110 +328768,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2665] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9313), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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(3290), - [sym__automatic_semicolon] = ACTIONS(3290), - [sym_safe_nav] = ACTIONS(3290), + [sym__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2666] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -331494,52 +328879,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -331567,17 +328954,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2659] = { - [sym_type_constraints] = STATE(2709), - [sym_property_delegate] = STATE(2770), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9415), + [2667] = { + [sym_getter] = STATE(5394), + [sym_setter] = STATE(5394), + [sym_modifiers] = STATE(9150), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(5910), + [anon_sym_set] = ACTIONS(5912), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), + }, + [2668] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -331587,52 +329065,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -331660,17 +329140,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2660] = { - [sym_type_constraints] = STATE(2743), - [sym_property_delegate] = STATE(2875), - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9194), + [2669] = { + [sym_primary_constructor] = STATE(5435), + [sym_class_body] = STATE(4880), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4686), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5500), + [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), + }, + [2670] = { + [sym_type_constraints] = STATE(2750), + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -331680,26 +329253,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_EQ] = ACTIONS(6350), [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_by] = ACTIONS(6236), [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_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -331758,12 +329331,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2671] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -331773,53 +329344,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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(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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -331847,42 +329419,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2672] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9158), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [2673] = { + [sym_primary_constructor] = STATE(5518), + [sym__class_parameters] = STATE(4992), + [sym_type_parameters] = STATE(2691), + [sym_type_constraints] = STATE(4970), + [sym_enum_class_body] = STATE(5206), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [sym__alpha_identifier] = ACTIONS(3244), [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_COLON] = ACTIONS(6352), [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DOT] = ACTIONS(3244), [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5820), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5822), - [anon_sym_LT] = ACTIONS(5774), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(5808), [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(3244), + [anon_sym_where] = ACTIONS(5810), [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_get] = ACTIONS(3244), [anon_sym_set] = ACTIONS(3244), @@ -331944,196 +329610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2665] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9185), + [2674] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332143,12 +329623,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -332156,10 +329637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4050), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), [anon_sym_STAR] = ACTIONS(1790), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -332223,10 +329703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2666] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9185), + [2675] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332236,54 +329716,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332311,72 +329791,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2676] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_modifiers] = STATE(9158), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + }, + [2677] = { + [sym_primary_constructor] = STATE(5438), + [sym__class_parameters] = STATE(4636), + [sym_type_constraints] = STATE(4645), + [sym_enum_class_body] = STATE(4798), + [sym_modifiers] = STATE(10128), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [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_COLON] = ACTIONS(6354), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5498), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5500), + [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), @@ -332404,15 +329978,14 @@ 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(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2668] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9302), + [2678] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9158), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332422,54 +329995,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6094), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332497,15 +330070,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2669] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9185), + [2679] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9313), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332515,54 +330088,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6078), + [anon_sym_set] = ACTIONS(6080), + [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), @@ -332590,110 +330163,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [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), + [2680] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332703,27 +330181,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [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_COMMA] = 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_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), [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), @@ -332781,12 +330260,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2672] = { - [sym_type_constraints] = STATE(2683), - [sym_property_delegate] = STATE(2788), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9447), + [2681] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332796,52 +330273,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6186), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332869,15 +330348,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2673] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9185), + [2682] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332887,54 +330365,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -332962,15 +330440,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2674] = { - [sym_getter] = STATE(5349), - [sym_setter] = STATE(5349), - [sym_modifiers] = STATE(9137), + [2683] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -332980,42 +330457,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -333043,215 +330532,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(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), - [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), - }, - [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(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), - [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2677] = { - [sym_type_constraints] = STATE(2714), - [sym_property_delegate] = STATE(2786), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9415), + [2684] = { + [sym_type_constraints] = STATE(2764), + [sym_property_delegate] = STATE(2884), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333261,26 +330551,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_EQ] = ACTIONS(6356), [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_by] = ACTIONS(6358), [anon_sym_LT] = ACTIONS(1790), [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_get] = ACTIONS(6236), - [anon_sym_set] = ACTIONS(6238), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -333339,10 +330628,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2678] = { - [sym_getter] = STATE(5373), - [sym_setter] = STATE(5373), - [sym_modifiers] = STATE(9137), + [2685] = { + [sym_type_constraints] = STATE(2756), + [sym_property_delegate] = STATE(2940), + [sym_getter] = STATE(5125), + [sym_setter] = STATE(5125), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333352,42 +330643,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6364), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6366), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), + [sym_multiline_comment] = ACTIONS(3), + }, + [2686] = { + [sym_primary_constructor] = STATE(5517), + [sym_class_body] = STATE(5249), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(4986), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6372), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2687] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9296), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [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_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4094), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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] = ACTIONS(1814), + [anon_sym_BANG_BANG] = ACTIONS(1816), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333415,27 +330900,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2679] = { - [sym_getter] = STATE(5368), - [sym_setter] = STATE(5368), - [sym_modifiers] = STATE(9137), + [2688] = { + [sym_property_delegate] = STATE(2787), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333445,42 +330918,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -333508,27 +330991,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), + [sym_multiline_comment] = ACTIONS(3), }, - [2680] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9368), + [2689] = { + [sym_type_constraints] = STATE(2759), + [sym_property_delegate] = STATE(2889), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6374), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6376), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [2690] = { + [sym_property_delegate] = STATE(2795), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333538,31 +331102,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6304), [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(6266), [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_SEMI] = ACTIONS(4401), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), [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), @@ -333614,13 +331176,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2681] = { - [sym_getter] = STATE(4827), - [sym_setter] = STATE(4827), - [sym_modifiers] = STATE(9403), + [2691] = { + [sym_primary_constructor] = STATE(5528), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5004), + [sym_enum_class_body] = STATE(5121), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6378), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5810), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2692] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333630,13 +331285,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1814), [anon_sym_as] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1816), [anon_sym_RBRACE] = ACTIONS(1816), @@ -333646,10 +331302,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), [anon_sym_STAR] = ACTIONS(1816), [anon_sym_DASH_GT] = ACTIONS(1816), [sym_label] = ACTIONS(1816), @@ -333709,103 +331364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2683] = { - [sym_property_delegate] = STATE(2783), - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9447), + [2693] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333815,52 +331377,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1822), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [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(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(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), - [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_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_DASH_GT] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333888,15 +331452,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2684] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9403), + [2694] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333906,54 +331469,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), [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_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333981,14 +331544,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2685] = { - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9368), + [2695] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -333998,54 +331561,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334073,14 +331636,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2686] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9368), + [2696] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334090,13 +331653,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -334106,10 +331670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4096), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), [anon_sym_STAR] = ACTIONS(1810), [anon_sym_DASH_GT] = ACTIONS(1810), [sym_label] = ACTIONS(1810), @@ -334169,194 +331732,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2689] = { - [sym_getter] = STATE(3458), - [sym_setter] = STATE(3458), - [sym_modifiers] = STATE(9368), + [2697] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334366,54 +331745,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_DASH_GT] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334441,107 +331820,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2698] = { + [sym_primary_constructor] = STATE(5505), + [sym_class_body] = STATE(5184), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5011), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6380), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5804), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5810), + [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(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(3280), + [sym__automatic_semicolon] = ACTIONS(3280), + [sym_safe_nav] = ACTIONS(3280), [sym_multiline_comment] = ACTIONS(3), }, - [2691] = { - [sym_property_delegate] = STATE(2770), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9415), + [2699] = { + [sym_property_delegate] = STATE(2773), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334551,52 +331930,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -334624,15 +332003,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2692] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9403), + [2700] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334642,54 +332021,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6148), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334717,106 +332096,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [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), - [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), + [2701] = { + [sym_primary_constructor] = STATE(4224), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6382), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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(3346), - [sym_safe_nav] = ACTIONS(3346), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2694] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9403), + [2702] = { + [sym_type_constraints] = STATE(2754), + [sym_property_delegate] = STATE(2962), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334826,54 +332207,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6384), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -334901,16 +332279,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2695] = { - [sym_type_constraints] = STATE(2762), - [sym_property_delegate] = STATE(2943), - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9392), + [2703] = { + [sym_property_delegate] = STATE(2776), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -334920,51 +332298,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -334992,15 +332371,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2696] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9368), + [2704] = { + [sym_property_delegate] = STATE(2798), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335010,54 +332390,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6312), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335085,14 +332463,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2697] = { - [sym_getter] = STATE(4728), - [sym_setter] = STATE(4728), - [sym_modifiers] = STATE(9403), + [2705] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335102,54 +332481,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335177,15 +332556,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2698] = { - [sym_property_delegate] = STATE(2788), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9447), + [2706] = { + [sym_getter] = STATE(4764), + [sym_setter] = STATE(4764), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335195,52 +332573,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335268,71 +332648,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2707] = { + [sym_primary_constructor] = STATE(4206), + [sym_class_body] = STATE(4023), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3794), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), [anon_sym_AT] = ACTIONS(3202), - [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_COLON] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), @@ -335360,15 +332739,15 @@ 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(3282), - [sym__automatic_semicolon] = ACTIONS(3282), - [sym_safe_nav] = ACTIONS(3282), + [sym__backtick_identifier] = ACTIONS(3296), + [sym__automatic_semicolon] = ACTIONS(3296), + [sym_safe_nav] = ACTIONS(3296), [sym_multiline_comment] = ACTIONS(3), }, - [2700] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9368), + [2708] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335378,13 +332757,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -335394,10 +332774,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4102), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), [anon_sym_STAR] = ACTIONS(1804), [anon_sym_DASH_GT] = ACTIONS(1804), [sym_label] = ACTIONS(1804), @@ -335457,102 +332836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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), - }, - [2702] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9368), + [2709] = { + [sym_getter] = STATE(3559), + [sym_setter] = STATE(3559), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335562,54 +332849,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_DASH_GT] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335637,15 +332924,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2703] = { - [sym_property_delegate] = STATE(2792), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9447), + [2710] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335655,29 +332941,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [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_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(4417), - [anon_sym_get] = ACTIONS(6244), - [anon_sym_set] = ACTIONS(6246), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), [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), @@ -335729,106 +333017,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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), - }, - [2705] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9368), + [2711] = { + [sym_property_delegate] = STATE(2801), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -335838,31 +333034,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6320), [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(6266), [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_SEMI] = ACTIONS(4482), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), [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), @@ -335914,107 +333108,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2712] = { + [sym_property_delegate] = STATE(2768), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336024,25 +333126,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_EQ] = ACTIONS(6310), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(6360), + [anon_sym_COMMA] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6266), [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_where] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -336101,10 +333204,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2708] = { - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9403), + [2713] = { + [sym_property_delegate] = STATE(2792), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336114,54 +333218,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -336189,15 +333291,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2709] = { - [sym_property_delegate] = STATE(2786), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9415), + [2714] = { + [sym_primary_constructor] = STATE(5489), + [sym__class_parameters] = STATE(4992), + [sym_type_constraints] = STATE(5042), + [sym_enum_class_body] = STATE(5249), + [sym_modifiers] = STATE(9530), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_constructor] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5828), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(5806), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5810), + [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), + }, + [2715] = { + [sym_property_delegate] = STATE(2790), + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336207,52 +333402,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = 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_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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6392), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_where] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -336280,107 +333475,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2711] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9368), + [2716] = { + [sym_type_constraints] = STATE(2761), + [sym_property_delegate] = STATE(2926), + [sym_getter] = STATE(3921), + [sym_setter] = STATE(3921), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336390,54 +333495,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3366), [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_LBRACK] = ACTIONS(3368), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(6394), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6396), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_QMARK_COLON] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336465,15 +333567,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3368), + [sym__automatic_semicolon] = ACTIONS(3368), + [sym_safe_nav] = ACTIONS(3368), [sym_multiline_comment] = ACTIONS(3), }, - [2712] = { - [sym_property_delegate] = STATE(2794), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9447), + [2717] = { + [sym_type_constraints] = STATE(2755), + [sym_property_delegate] = STATE(2936), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336483,52 +333587,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6398), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -336556,16 +333659,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2713] = { - [sym_property_delegate] = STATE(2781), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9415), + [2718] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336575,52 +333677,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -336648,16 +333752,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2714] = { - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9415), + [2719] = { + [sym_property_delegate] = STATE(2767), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336667,52 +333770,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6266), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6284), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336740,17 +333843,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2715] = { - [sym_type_constraints] = STATE(2766), - [sym_property_delegate] = STATE(2929), - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9392), + [2720] = { + [sym_type_constraints] = STATE(2762), + [sym_property_delegate] = STATE(2938), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336760,51 +333863,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(6402), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336832,17 +333935,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2716] = { - [sym_type_constraints] = STATE(2758), - [sym_property_delegate] = STATE(2912), - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9392), + [2721] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336852,51 +333953,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336924,15 +334028,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2717] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9403), + [2722] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -336942,13 +334045,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -336958,10 +334062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), [anon_sym_STAR] = ACTIONS(1804), [anon_sym_DASH_GT] = ACTIONS(1804), [sym_label] = ACTIONS(1804), @@ -337021,12 +334124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2718] = { - [sym_type_constraints] = STATE(2760), - [sym_property_delegate] = STATE(2954), - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9310), + [2723] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337036,51 +334137,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337108,15 +334212,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2719] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9368), + [2724] = { + [sym_primary_constructor] = STATE(4207), + [sym_class_body] = STATE(3874), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3715), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6404), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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), + }, + [2725] = { + [sym_type_constraints] = STATE(2760), + [sym_property_delegate] = STATE(2888), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337126,54 +334323,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6406), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -337201,14 +334395,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2720] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9403), + [2726] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337218,13 +334413,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -337234,10 +334430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4088), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), [anon_sym_STAR] = ACTIONS(1804), [anon_sym_DASH_GT] = ACTIONS(1804), [sym_label] = ACTIONS(1804), @@ -337297,11 +334492,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2727] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337311,52 +334505,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = 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_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(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_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -337384,15 +334580,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2722] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9368), + [2728] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337402,54 +334597,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337477,106 +334672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2724] = { - [sym_getter] = STATE(4834), - [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9403), + [2729] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337586,54 +334689,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(4114), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -337661,200 +334764,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [2730] = { + [sym_type_constraints] = STATE(2765), + [sym_property_delegate] = STATE(2906), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337864,51 +334783,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3358), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6408), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -337936,17 +334855,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [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), + [2731] = { + [sym_type_constraints] = STATE(2766), + [sym_property_delegate] = STATE(2952), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -337956,51 +334875,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(5205), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -338028,15 +334947,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [2729] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9403), + [2732] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9296), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338046,54 +334965,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1790), [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(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), - [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_LBRACK] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6156), + [anon_sym_set] = ACTIONS(6158), + [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), @@ -338121,14 +335040,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2730] = { - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9403), + [2733] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338138,54 +335057,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -338213,14 +335132,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2731] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9403), + [2734] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9147), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338230,54 +335149,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4116), + [anon_sym_get] = ACTIONS(6142), + [anon_sym_set] = ACTIONS(6144), + [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), @@ -338305,14 +335224,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2732] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9403), + [2735] = { + [sym_primary_constructor] = STATE(4213), + [sym__class_parameters] = STATE(3826), + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym_modifiers] = STATE(10052), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(6412), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_constructor] = ACTIONS(5816), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(5820), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [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(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [2736] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4045), + [anon_sym_fun] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4047), + [anon_sym_sealed] = ACTIONS(4047), + [anon_sym_annotation] = ACTIONS(4047), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4047), + [anon_sym_lateinit] = ACTIONS(4047), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_internal] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_tailrec] = ACTIONS(4047), + [anon_sym_operator] = ACTIONS(4047), + [anon_sym_infix] = ACTIONS(4047), + [anon_sym_inline] = ACTIONS(4047), + [anon_sym_external] = ACTIONS(4047), + [sym_property_modifier] = ACTIONS(4047), + [anon_sym_abstract] = ACTIONS(4047), + [anon_sym_final] = ACTIONS(4047), + [anon_sym_open] = ACTIONS(4047), + [anon_sym_vararg] = ACTIONS(4047), + [anon_sym_noinline] = ACTIONS(4047), + [anon_sym_crossinline] = ACTIONS(4047), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + }, + [2737] = { + [sym_property_delegate] = STATE(2812), + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9378), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), + }, + [2738] = { + [sym_annotated_lambda] = STATE(3067), + [sym_lambda_literal] = STATE(3182), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_fun] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_this] = ACTIONS(3978), + [anon_sym_super] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3978), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_null] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3980), + [anon_sym_continue_AT] = ACTIONS(3980), + [anon_sym_break_AT] = ACTIONS(3980), + [anon_sym_this_AT] = ACTIONS(3980), + [anon_sym_super_AT] = ACTIONS(3980), + [sym_real_literal] = ACTIONS(3980), + [sym_integer_literal] = ACTIONS(3978), + [sym_hex_literal] = ACTIONS(3980), + [sym_bin_literal] = ACTIONS(3980), + [anon_sym_true] = ACTIONS(3978), + [anon_sym_false] = ACTIONS(3978), + [anon_sym_SQUOTE] = ACTIONS(3980), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3980), + }, + [2739] = { + [sym_property_delegate] = STATE(2870), + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338322,28 +335607,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6244), [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(6236), [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_SEMI] = ACTIONS(4651), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), [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), @@ -338401,11 +335684,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2733] = { - [sym_property_delegate] = STATE(2808), - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9447), + [2740] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4045), + [anon_sym_fun] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4045), + [anon_sym_sealed] = ACTIONS(4045), + [anon_sym_annotation] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4045), + [anon_sym_lateinit] = ACTIONS(4045), + [anon_sym_public] = ACTIONS(4045), + [anon_sym_private] = ACTIONS(4045), + [anon_sym_internal] = ACTIONS(4045), + [anon_sym_protected] = ACTIONS(4045), + [anon_sym_tailrec] = ACTIONS(4045), + [anon_sym_operator] = ACTIONS(4045), + [anon_sym_infix] = ACTIONS(4045), + [anon_sym_inline] = ACTIONS(4045), + [anon_sym_external] = ACTIONS(4045), + [sym_property_modifier] = ACTIONS(4045), + [anon_sym_abstract] = ACTIONS(4045), + [anon_sym_final] = ACTIONS(4045), + [anon_sym_open] = ACTIONS(4045), + [anon_sym_vararg] = ACTIONS(4045), + [anon_sym_noinline] = ACTIONS(4045), + [anon_sym_crossinline] = ACTIONS(4045), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + }, + [2741] = { + [sym_property_delegate] = STATE(2847), + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338415,52 +335789,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(6240), - [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(3344), - [anon_sym_DOT] = 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_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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6334), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -338488,17 +335862,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2734] = { - [sym_type_constraints] = STATE(2761), - [sym_property_delegate] = STATE(2932), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9310), + [2742] = { + [sym_property_delegate] = STATE(2877), + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338508,51 +335880,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4633), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -338580,17 +335953,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2735] = { - [sym_type_constraints] = STATE(2757), - [sym_property_delegate] = STATE(2948), - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9310), + [2743] = { + [sym_property_delegate] = STATE(2826), + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338600,51 +335971,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [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_where] = ACTIONS(5824), - [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6416), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -338672,198 +336044,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), + [2744] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4037), + [anon_sym_fun] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4039), + [anon_sym_sealed] = ACTIONS(4039), + [anon_sym_annotation] = ACTIONS(4039), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4039), + [anon_sym_lateinit] = ACTIONS(4039), + [anon_sym_public] = ACTIONS(4039), + [anon_sym_private] = ACTIONS(4039), + [anon_sym_internal] = ACTIONS(4039), + [anon_sym_protected] = ACTIONS(4039), + [anon_sym_tailrec] = ACTIONS(4039), + [anon_sym_operator] = ACTIONS(4039), + [anon_sym_infix] = ACTIONS(4039), + [anon_sym_inline] = ACTIONS(4039), + [anon_sym_external] = ACTIONS(4039), + [sym_property_modifier] = ACTIONS(4039), + [anon_sym_abstract] = ACTIONS(4039), + [anon_sym_final] = ACTIONS(4039), + [anon_sym_open] = ACTIONS(4039), + [anon_sym_vararg] = ACTIONS(4039), + [anon_sym_noinline] = ACTIONS(4039), + [anon_sym_crossinline] = ACTIONS(4039), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), }, - [2738] = { - [sym_property_delegate] = STATE(2875), - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9194), + [2745] = { + [sym_property_delegate] = STATE(2849), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -338873,52 +336153,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6234), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6238), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338946,106 +336226,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2746] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4037), + [anon_sym_fun] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4037), + [anon_sym_sealed] = ACTIONS(4037), + [anon_sym_annotation] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4037), + [anon_sym_lateinit] = ACTIONS(4037), + [anon_sym_public] = ACTIONS(4037), + [anon_sym_private] = ACTIONS(4037), + [anon_sym_internal] = ACTIONS(4037), + [anon_sym_protected] = ACTIONS(4037), + [anon_sym_tailrec] = ACTIONS(4037), + [anon_sym_operator] = ACTIONS(4037), + [anon_sym_infix] = ACTIONS(4037), + [anon_sym_inline] = ACTIONS(4037), + [anon_sym_external] = ACTIONS(4037), + [sym_property_modifier] = ACTIONS(4037), + [anon_sym_abstract] = ACTIONS(4037), + [anon_sym_final] = ACTIONS(4037), + [anon_sym_open] = ACTIONS(4037), + [anon_sym_vararg] = ACTIONS(4037), + [anon_sym_noinline] = ACTIONS(4037), + [anon_sym_crossinline] = ACTIONS(4037), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), }, - [2740] = { - [sym_property_delegate] = STATE(2877), - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9194), + [2747] = { + [sym_property_delegate] = STATE(2823), + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339055,52 +336335,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6318), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -339128,106 +336408,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2748] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), }, - [2742] = { - [sym_property_delegate] = STATE(2836), - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9117), + [2749] = { + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339237,52 +336517,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -339310,15 +336590,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2743] = { - [sym_property_delegate] = STATE(2873), - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9194), + [2750] = { + [sym_property_delegate] = STATE(2863), + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339328,25 +336608,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6282), + [anon_sym_EQ] = ACTIONS(6338), [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_by] = ACTIONS(6236), [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_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -339405,102 +336685,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2751] = { + [sym_annotated_lambda] = STATE(3114), + [sym_lambda_literal] = STATE(3182), + [sym_annotation] = STATE(8357), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8357), + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_object] = ACTIONS(4020), + [anon_sym_fun] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_this] = ACTIONS(4020), + [anon_sym_super] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4020), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4022), + [anon_sym_continue_AT] = ACTIONS(4022), + [anon_sym_break_AT] = ACTIONS(4022), + [anon_sym_this_AT] = ACTIONS(4022), + [anon_sym_super_AT] = ACTIONS(4022), + [sym_real_literal] = ACTIONS(4022), + [sym_integer_literal] = ACTIONS(4020), + [sym_hex_literal] = ACTIONS(4022), + [sym_bin_literal] = ACTIONS(4022), + [anon_sym_true] = ACTIONS(4020), + [anon_sym_false] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4022), }, - [2745] = { - [sym_property_delegate] = STATE(2871), - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9194), + [2752] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), + }, + [2753] = { + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339510,52 +336881,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6414), - [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6236), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6262), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339583,15 +336954,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2746] = { - [sym_property_delegate] = STATE(2863), - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9117), + [2754] = { + [sym_property_delegate] = STATE(2888), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339601,52 +336972,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6406), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -339674,15 +337043,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2747] = { - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9117), + [2755] = { + [sym_property_delegate] = STATE(2946), + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339692,52 +337062,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = 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_RPAREN] = ACTIONS(3346), - [anon_sym_by] = ACTIONS(6256), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6418), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -339765,106 +337133,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), - }, - [2749] = { - [sym_property_delegate] = STATE(2820), - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9117), + [2756] = { + [sym_property_delegate] = STATE(2889), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339874,52 +337152,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6374), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6376), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339947,15 +337223,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2750] = { - [sym_property_delegate] = STATE(2841), - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9117), + [2757] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4037), + [anon_sym_fun] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4037), + [anon_sym_sealed] = ACTIONS(4037), + [anon_sym_annotation] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4037), + [anon_sym_lateinit] = ACTIONS(4037), + [anon_sym_public] = ACTIONS(4037), + [anon_sym_private] = ACTIONS(4037), + [anon_sym_internal] = ACTIONS(4037), + [anon_sym_protected] = ACTIONS(4037), + [anon_sym_tailrec] = ACTIONS(4037), + [anon_sym_operator] = ACTIONS(4037), + [anon_sym_infix] = ACTIONS(4037), + [anon_sym_inline] = ACTIONS(4037), + [anon_sym_external] = ACTIONS(4037), + [sym_property_modifier] = ACTIONS(4037), + [anon_sym_abstract] = ACTIONS(4037), + [anon_sym_final] = ACTIONS(4037), + [anon_sym_open] = ACTIONS(4037), + [anon_sym_vararg] = ACTIONS(4037), + [anon_sym_noinline] = ACTIONS(4037), + [anon_sym_crossinline] = ACTIONS(4037), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + }, + [2758] = { + [sym_catch_block] = STATE(2788), + [sym_finally_block] = STATE(3112), + [aux_sym_try_expression_repeat1] = STATE(2788), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6420), + [anon_sym_finally] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), + }, + [2759] = { + [sym_property_delegate] = STATE(2952), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -339965,29 +337422,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6346), + [anon_sym_EQ] = ACTIONS(6410), [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_by] = ACTIONS(6358), [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_SEMI] = ACTIONS(5205), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), [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), @@ -340039,105 +337494,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2760] = { + [sym_property_delegate] = STATE(2941), + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340147,52 +337512,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_as] = 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_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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(6424), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -340220,106 +337583,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2761] = { + [sym_property_delegate] = STATE(2938), + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340329,50 +337602,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6402), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340400,16 +337673,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2755] = { - [sym_property_delegate] = STATE(2967), - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9392), + [2762] = { + [sym_property_delegate] = STATE(2884), + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340419,50 +337692,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_as] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(6356), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -340490,106 +337763,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2763] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4045), + [anon_sym_fun] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4045), + [anon_sym_sealed] = ACTIONS(4045), + [anon_sym_annotation] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4045), + [anon_sym_lateinit] = ACTIONS(4045), + [anon_sym_public] = ACTIONS(4045), + [anon_sym_private] = ACTIONS(4045), + [anon_sym_internal] = ACTIONS(4045), + [anon_sym_protected] = ACTIONS(4045), + [anon_sym_tailrec] = ACTIONS(4045), + [anon_sym_operator] = ACTIONS(4045), + [anon_sym_infix] = ACTIONS(4045), + [anon_sym_inline] = ACTIONS(4045), + [anon_sym_external] = ACTIONS(4045), + [sym_property_modifier] = ACTIONS(4045), + [anon_sym_abstract] = ACTIONS(4045), + [anon_sym_final] = ACTIONS(4045), + [anon_sym_open] = ACTIONS(4045), + [anon_sym_vararg] = ACTIONS(4045), + [anon_sym_noinline] = ACTIONS(4045), + [anon_sym_crossinline] = ACTIONS(4045), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), }, - [2757] = { - [sym_property_delegate] = STATE(2932), - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9310), + [2764] = { + [sym_property_delegate] = STATE(2906), + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340599,50 +337872,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_as] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), [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_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -340670,16 +337943,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2758] = { - [sym_property_delegate] = STATE(2891), - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9392), + [2765] = { + [sym_property_delegate] = STATE(2936), + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340689,50 +337962,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(6418), - [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(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_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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1808), + [anon_sym_EQ] = ACTIONS(6398), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_by] = ACTIONS(6358), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -340760,106 +338033,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2760] = { - [sym_property_delegate] = STATE(2959), - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9310), + [2766] = { + [sym_property_delegate] = STATE(2962), + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340869,24 +338052,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(6378), + [anon_sym_EQ] = ACTIONS(6384), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_by] = ACTIONS(6360), + [anon_sym_by] = ACTIONS(6358), [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_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -340945,11 +338128,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2767] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -340959,24 +338141,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [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_COMMA] = ACTIONS(1792), [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_where] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(4401), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -341035,11 +338217,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2768] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -341049,50 +338230,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -341120,106 +338301,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2769] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4190), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), }, - [2764] = { - [sym_property_delegate] = STATE(2961), - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9310), + [2770] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -341229,50 +338408,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -341300,373 +338479,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2771] = { + [aux_sym_user_type_repeat1] = STATE(2779), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(6426), + [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_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_AMP] = ACTIONS(4122), + [sym__quest] = 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_data] = ACTIONS(4122), + [anon_sym_inner] = ACTIONS(4122), + [anon_sym_value] = ACTIONS(4122), + [anon_sym_expect] = ACTIONS(4122), + [anon_sym_actual] = ACTIONS(4122), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1804), - [sym__automatic_semicolon] = ACTIONS(1804), - [sym_safe_nav] = ACTIONS(1804), + [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), }, - [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), + [2772] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), [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), + [2773] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -341676,50 +338675,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4478), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -341747,15 +338746,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2770] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9415), + [2774] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -341765,50 +338764,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341836,371 +338835,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, [2775] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9447), + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342210,50 +338853,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342281,15 +338924,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, [2776] = { - [sym_getter] = STATE(5177), - [sym_setter] = STATE(5177), - [sym_modifiers] = STATE(9447), + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342299,50 +338942,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342370,15 +339013,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, [2777] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9415), + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342388,50 +339031,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342459,15 +339102,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, [2778] = { - [sym_getter] = STATE(5183), - [sym_setter] = STATE(5183), - [sym_modifiers] = STATE(9447), + [aux_sym_user_type_repeat1] = STATE(2771), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6429), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4139), + [sym__quest] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), + }, + [2779] = { + [aux_sym_user_type_repeat1] = STATE(2779), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(6432), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), + }, + [2780] = { + [sym_getter] = STATE(5246), + [sym_setter] = STATE(5246), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342477,50 +339298,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342548,15 +339369,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3326), [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1816), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2779] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9415), + [2781] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + }, + [2782] = { + [sym_type_arguments] = STATE(2861), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_as] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_by] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(6435), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_where] = ACTIONS(4159), + [anon_sym_object] = ACTIONS(4159), + [anon_sym_fun] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_this] = ACTIONS(4159), + [anon_sym_super] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [sym_label] = ACTIONS(4159), + [anon_sym_in] = ACTIONS(4159), + [anon_sym_DOT_DOT] = ACTIONS(4161), + [anon_sym_QMARK_COLON] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4159), + [anon_sym_when] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_throw] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), + [anon_sym_EQ_EQ] = ACTIONS(4159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_BANGin] = ACTIONS(4161), + [anon_sym_is] = ACTIONS(4159), + [anon_sym_BANGis] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_as_QMARK] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_BANG_BANG] = ACTIONS(4161), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4161), + [anon_sym_continue_AT] = ACTIONS(4161), + [anon_sym_break_AT] = ACTIONS(4161), + [anon_sym_this_AT] = ACTIONS(4161), + [anon_sym_super_AT] = ACTIONS(4161), + [sym_real_literal] = ACTIONS(4161), + [sym_integer_literal] = ACTIONS(4159), + [sym_hex_literal] = ACTIONS(4161), + [sym_bin_literal] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [anon_sym_SQUOTE] = ACTIONS(4161), + [sym__backtick_identifier] = ACTIONS(4161), + [sym__automatic_semicolon] = ACTIONS(4161), + [sym_safe_nav] = ACTIONS(4161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4161), + }, + [2783] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342566,50 +339565,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6284), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342637,15 +339636,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2780] = { - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9415), + [2784] = { + [sym_getter] = STATE(3853), + [sym_setter] = STATE(3853), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342655,50 +339654,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3422), [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(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_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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342726,15 +339725,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2781] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9415), + [2785] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342744,50 +339743,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -342815,15 +339814,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2782] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9447), + [2786] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342833,50 +339832,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1790), [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(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), - [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), @@ -342904,15 +339903,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2783] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9447), + [2787] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -342922,12 +339921,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -342936,10 +339936,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1808), [anon_sym_GT] = ACTIONS(1808), [anon_sym_where] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(6244), - [anon_sym_set] = ACTIONS(6246), + [anon_sym_SEMI] = ACTIONS(4484), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -342998,99 +339997,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2788] = { + [sym_catch_block] = STATE(2788), + [aux_sym_try_expression_repeat1] = STATE(2788), + [sym__alpha_identifier] = ACTIONS(4146), + [anon_sym_AT] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4146), + [anon_sym_object] = ACTIONS(4146), + [anon_sym_fun] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_get] = ACTIONS(4146), + [anon_sym_set] = ACTIONS(4146), + [anon_sym_this] = ACTIONS(4146), + [anon_sym_super] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [sym_label] = ACTIONS(4146), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_QMARK_COLON] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_else] = ACTIONS(4146), + [anon_sym_when] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_catch] = ACTIONS(6437), + [anon_sym_finally] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_BANGin] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4146), + [anon_sym_BANGis] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_as_QMARK] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_BANG_BANG] = ACTIONS(4148), + [anon_sym_data] = ACTIONS(4146), + [anon_sym_inner] = ACTIONS(4146), + [anon_sym_value] = ACTIONS(4146), + [anon_sym_expect] = ACTIONS(4146), + [anon_sym_actual] = ACTIONS(4146), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4148), + [anon_sym_continue_AT] = ACTIONS(4148), + [anon_sym_break_AT] = ACTIONS(4148), + [anon_sym_this_AT] = ACTIONS(4148), + [anon_sym_super_AT] = ACTIONS(4148), + [sym_real_literal] = ACTIONS(4148), + [sym_integer_literal] = ACTIONS(4146), + [sym_hex_literal] = ACTIONS(4148), + [sym_bin_literal] = ACTIONS(4148), + [anon_sym_true] = ACTIONS(4146), + [anon_sym_false] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4148), + [sym__backtick_identifier] = ACTIONS(4148), + [sym__automatic_semicolon] = ACTIONS(4148), + [sym_safe_nav] = ACTIONS(4148), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4148), }, - [2785] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9447), + [2789] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343100,50 +340099,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1822), [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(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), - [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343171,15 +340170,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2786] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9415), + [2790] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343189,50 +340188,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4460), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343260,15 +340259,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2787] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9415), + [2791] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343278,50 +340277,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343349,15 +340348,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2788] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9447), + [2792] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343367,50 +340366,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1814), [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(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), - [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -343438,104 +340437,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2793] = { + [sym_type_constraints] = STATE(2919), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6440), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2790] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9415), + [2794] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343545,50 +340544,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343616,104 +340615,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [2792] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9447), + [2795] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9452), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343723,12 +340633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -343737,10 +340648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4447), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -343799,10 +340709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2793] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9447), + [2796] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343812,50 +340722,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -343883,15 +340793,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2794] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9447), + [2797] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9452), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6268), + [anon_sym_set] = ACTIONS(6270), + [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), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), + [sym_multiline_comment] = ACTIONS(3), + }, + [2798] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -343901,12 +340900,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -343915,10 +340915,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_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_SEMI] = ACTIONS(4482), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -343977,188 +340976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2799] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344168,50 +340989,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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(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), - [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -344239,104 +341060,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2800] = { + [sym_annotated_lambda] = STATE(3588), + [sym_lambda_literal] = STATE(3533), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_RBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_RPAREN] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4022), + [sym_label] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), }, - [2799] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9415), + [2801] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344346,139 +341167,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1802), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(4480), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -344506,15 +341238,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3326), [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1816), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2801] = { - [sym_getter] = STATE(4018), - [sym_setter] = STATE(4018), - [sym_modifiers] = STATE(9415), + [2802] = { + [sym_type_constraints] = STATE(2922), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6446), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [2803] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [sym__quest] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [2804] = { + [sym_type_constraints] = STATE(2914), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6448), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [2805] = { + [sym_type_constraints] = STATE(2928), + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6450), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [2806] = { + [sym_type_constraints] = STATE(2930), + [sym_function_body] = STATE(3200), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_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), + }, + [2807] = { + [sym_annotated_lambda] = STATE(3429), + [sym_lambda_literal] = STATE(3533), + [sym_annotation] = STATE(8356), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8356), + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_RBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_RPAREN] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3980), + [sym_label] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), + [sym_multiline_comment] = ACTIONS(3), + }, + [2808] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344524,50 +341790,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [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), @@ -344595,15 +341861,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2802] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9447), + [2809] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344613,50 +341879,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344684,104 +341950,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [2804] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9447), + [2810] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9429), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344791,12 +341968,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -344805,10 +341983,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_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_get] = ACTIONS(6298), + [anon_sym_set] = ACTIONS(6300), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -344867,99 +342044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [2806] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9447), + [2811] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -344969,50 +342057,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -345040,104 +342128,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4155), }, - [2808] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9447), + [2812] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -345147,50 +342145,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345218,545 +342216,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), + [sym__alpha_identifier] = ACTIONS(4200), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_RBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_as] = ACTIONS(4200), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_RPAREN] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4200), + [anon_sym_where] = ACTIONS(4200), + [anon_sym_object] = ACTIONS(4200), + [anon_sym_fun] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4200), + [anon_sym_set] = ACTIONS(4200), + [anon_sym_this] = ACTIONS(4200), + [anon_sym_super] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_DASH_GT] = ACTIONS(4202), + [sym_label] = ACTIONS(4200), + [anon_sym_in] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_null] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_else] = ACTIONS(4200), + [anon_sym_when] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4200), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4200), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4200), + [anon_sym_inner] = ACTIONS(4200), + [anon_sym_value] = ACTIONS(4200), + [anon_sym_expect] = ACTIONS(4200), + [anon_sym_actual] = ACTIONS(4200), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4200), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4200), + [anon_sym_false] = ACTIONS(4200), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym__backtick_identifier] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), }, [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(6458), - [anon_sym_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [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(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), - }, - [2815] = { - [sym_getter] = STATE(3464), - [sym_setter] = STATE(3464), - [sym_modifiers] = STATE(9117), + [sym_getter] = STATE(4764), + [sym_setter] = STATE(4764), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -345766,50 +342321,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345837,366 +342392,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [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), + [2815] = { + [sym_type_constraints] = STATE(2922), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [2820] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9117), + [2816] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346206,50 +342497,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -346277,102 +342568,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2817] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4035), + [sym__quest] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [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(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [2822] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9117), + [2818] = { + [sym_function_body] = STATE(3117), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(6454), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), + }, + [2819] = { + [sym_catch_block] = STATE(2950), + [sym_finally_block] = STATE(3539), + [aux_sym_try_expression_repeat1] = STATE(2950), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6456), + [anon_sym_finally] = ACTIONS(6458), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + }, + [2820] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346382,50 +342849,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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), - [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6262), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346453,14 +342920,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2823] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9117), + [2821] = { + [sym_getter] = STATE(3405), + [sym_setter] = STATE(3405), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346470,12 +342937,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -346483,10 +342951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4710), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -346545,274 +343012,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2822] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4037), + [anon_sym_var] = ACTIONS(4037), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4037), + [anon_sym_fun] = ACTIONS(4037), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4039), + [anon_sym_sealed] = ACTIONS(4039), + [anon_sym_annotation] = ACTIONS(4039), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4039), + [anon_sym_lateinit] = ACTIONS(4039), + [anon_sym_public] = ACTIONS(4039), + [anon_sym_private] = ACTIONS(4039), + [anon_sym_internal] = ACTIONS(4039), + [anon_sym_protected] = ACTIONS(4039), + [anon_sym_tailrec] = ACTIONS(4039), + [anon_sym_operator] = ACTIONS(4039), + [anon_sym_infix] = ACTIONS(4039), + [anon_sym_inline] = ACTIONS(4039), + [anon_sym_external] = ACTIONS(4039), + [sym_property_modifier] = ACTIONS(4039), + [anon_sym_abstract] = ACTIONS(4039), + [anon_sym_final] = ACTIONS(4039), + [anon_sym_open] = ACTIONS(4039), + [anon_sym_vararg] = ACTIONS(4039), + [anon_sym_noinline] = ACTIONS(4039), + [anon_sym_crossinline] = ACTIONS(4039), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), }, - [2827] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9117), + [2823] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346822,50 +343113,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4629), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -346893,14 +343184,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2828] = { - [sym_getter] = STATE(3536), - [sym_setter] = STATE(3536), - [sym_modifiers] = STATE(9117), + [2824] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(6460), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [2825] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346910,50 +343289,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346981,14 +343360,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2829] = { - [sym_getter] = STATE(3469), - [sym_setter] = STATE(3469), - [sym_modifiers] = STATE(9117), + [2826] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -346998,50 +343377,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347069,102 +343448,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2827] = { + [sym_type_constraints] = STATE(3179), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2831] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9194), + [2828] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [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_object] = ACTIONS(4311), + [anon_sym_fun] = 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), + }, + [2829] = { + [sym_getter] = STATE(4698), + [sym_setter] = STATE(4698), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -347174,12 +343641,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -347187,10 +343655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4651), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -347249,362 +343716,978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, + [2830] = { + [aux_sym_nullable_type_repeat1] = STATE(2850), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [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_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [sym__quest] = ACTIONS(6466), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4269), + }, + [2831] = { + [sym_type_constraints] = STATE(3123), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6468), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, [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), + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6470), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [2833] = { - [sym_function_body] = STATE(3258), - [sym__block] = STATE(3082), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [2834] = { [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_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6474), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_this] = ACTIONS(4275), - [anon_sym_super] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4281), [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_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), [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_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), [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), - }, - [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [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), + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6478), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, [2836] = { - [sym_getter] = STATE(3510), - [sym_setter] = STATE(3510), - [sym_modifiers] = STATE(9117), + [sym_type_constraints] = STATE(2919), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [2837] = { + [sym_function_body] = STATE(3202), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6480), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [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_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), + }, + [2838] = { + [sym_class_body] = STATE(3260), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6482), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [2839] = { + [sym_type_constraints] = STATE(2988), + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6484), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [2840] = { + [sym_class_body] = STATE(3220), + [sym_type_constraints] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [2841] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -347614,50 +344697,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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(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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -347685,366 +344768,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2842] = { + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = 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(3216), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, - [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), + [2843] = { + [sym_class_body] = STATE(3211), + [sym_type_constraints] = STATE(3059), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(6486), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_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(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), + [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(4249), + [sym__string_start] = ACTIONS(4319), }, - [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), + [2844] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(2971), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), }, - [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), + [2845] = { + [sym_getter] = STATE(4818), + [sym_setter] = STATE(4818), + [sym_modifiers] = STATE(9378), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [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(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), }, - [2841] = { - [sym_getter] = STATE(3492), - [sym_setter] = STATE(3492), - [sym_modifiers] = STATE(9117), + [2846] = { + [sym_getter] = STATE(3559), + [sym_setter] = STATE(3559), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -348054,50 +345137,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348125,15 +345208,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [2842] = { - [aux_sym_nullable_type_repeat1] = STATE(2838), + [2847] = { + [sym_getter] = STATE(3595), + [sym_setter] = STATE(3595), + [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(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4706), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), + }, + [2848] = { + [sym_type_constraints] = STATE(2914), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [2849] = { + [sym_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [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(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), + }, + [2850] = { + [aux_sym_nullable_type_repeat1] = STATE(2851), [sym__alpha_identifier] = ACTIONS(4204), [anon_sym_AT] = ACTIONS(4206), [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(4204), [anon_sym_as] = ACTIONS(4204), [anon_sym_EQ] = ACTIONS(4204), [anon_sym_LBRACE] = ACTIONS(4206), @@ -348146,13 +345494,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__quest] = ACTIONS(6488), [anon_sym_STAR] = ACTIONS(4204), [sym_label] = ACTIONS(4204), [anon_sym_in] = ACTIONS(4204), @@ -348217,1418 +345564,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym_nullable_type_repeat1] = STATE(2851), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [sym__quest] = ACTIONS(6490), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), }, [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_getter] = STATE(3599), + [sym_setter] = STATE(3599), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -349638,12 +345665,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1792), @@ -349651,10 +345679,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(6266), - [anon_sym_set] = ACTIONS(6268), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -349713,187 +345740,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2853] = { [sym__alpha_identifier] = ACTIONS(4222), [anon_sym_AT] = ACTIONS(4224), [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), [anon_sym_as] = ACTIONS(4222), [anon_sym_EQ] = ACTIONS(4222), [anon_sym_LBRACE] = ACTIONS(4224), @@ -349906,13 +345757,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP] = ACTIONS(6493), + [sym__quest] = ACTIONS(4222), [anon_sym_STAR] = ACTIONS(4222), [sym_label] = ACTIONS(4222), [anon_sym_in] = ACTIONS(4222), @@ -349977,98 +345828,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), - }, - [2864] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9194), + [2854] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -350078,50 +345841,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [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), @@ -350149,278 +345912,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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(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(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), + [2855] = { + [sym_type_constraints] = STATE(3272), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [2856] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4192), + [sym__quest] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [2857] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4045), + [anon_sym_interface] = ACTIONS(4045), + [anon_sym_enum] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4045), + [anon_sym_var] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4045), + [anon_sym_fun] = ACTIONS(4045), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4047), + [anon_sym_sealed] = ACTIONS(4047), + [anon_sym_annotation] = ACTIONS(4047), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4047), + [anon_sym_lateinit] = ACTIONS(4047), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_internal] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_tailrec] = ACTIONS(4047), + [anon_sym_operator] = ACTIONS(4047), + [anon_sym_infix] = ACTIONS(4047), + [anon_sym_inline] = ACTIONS(4047), + [anon_sym_external] = ACTIONS(4047), + [sym_property_modifier] = ACTIONS(4047), + [anon_sym_abstract] = ACTIONS(4047), + [anon_sym_final] = ACTIONS(4047), + [anon_sym_open] = ACTIONS(4047), + [anon_sym_vararg] = ACTIONS(4047), + [anon_sym_noinline] = ACTIONS(4047), + [anon_sym_crossinline] = ACTIONS(4047), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [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), + [2858] = { + [sym_type_constraints] = STATE(2894), + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3216), + [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), + [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), }, - [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), + [2859] = { + [sym_type_constraints] = STATE(3199), + [sym_function_body] = STATE(3200), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_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), }, - [2868] = { + [2860] = { [sym_getter] = STATE(4834), [sym_setter] = STATE(4834), - [sym_modifiers] = STATE(9194), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -350430,50 +346369,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -350501,102 +346440,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2869] = { - [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), + [2861] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_by] = ACTIONS(4307), + [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_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_AMP] = ACTIONS(4307), + [sym__quest] = 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), - [sym__backtick_identifier] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [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), }, - [2870] = { - [sym_getter] = STATE(3477), - [sym_setter] = STATE(3477), - [sym_modifiers] = STATE(9117), + [2862] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -350606,50 +346545,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6238), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350677,14 +346616,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2871] = { - [sym_getter] = STATE(4842), - [sym_setter] = STATE(4842), - [sym_modifiers] = STATE(9194), + [2863] = { + [sym_getter] = STATE(3471), + [sym_setter] = STATE(3471), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -350694,100 +346633,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [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(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), - [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), - }, - [2872] = { - [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(3316), - [anon_sym_LBRACK] = ACTIONS(1810), [anon_sym_as] = ACTIONS(1808), [anon_sym_LBRACE] = ACTIONS(1810), [anon_sym_RBRACE] = ACTIONS(1810), @@ -350795,10 +346647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(6258), - [anon_sym_set] = ACTIONS(6260), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -350857,10 +346708,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2873] = { - [sym_getter] = STATE(4769), - [sym_setter] = STATE(4769), - [sym_modifiers] = STATE(9194), + [2864] = { + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), + }, + [2865] = { + [aux_sym_nullable_type_repeat1] = STATE(2850), + [sym__alpha_identifier] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4323), + [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_COMMA] = ACTIONS(4325), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_GT] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_object] = ACTIONS(4323), + [anon_sym_fun] = ACTIONS(4323), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [anon_sym_this] = ACTIONS(4323), + [anon_sym_super] = ACTIONS(4323), + [sym__quest] = ACTIONS(6466), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4323), + [anon_sym_DOT_DOT] = ACTIONS(4325), + [anon_sym_QMARK_COLON] = ACTIONS(4325), + [anon_sym_AMP_AMP] = ACTIONS(4325), + [anon_sym_PIPE_PIPE] = ACTIONS(4325), + [anon_sym_null] = ACTIONS(4323), + [anon_sym_if] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4323), + [anon_sym_when] = ACTIONS(4323), + [anon_sym_try] = ACTIONS(4323), + [anon_sym_throw] = ACTIONS(4323), + [anon_sym_return] = ACTIONS(4323), + [anon_sym_continue] = ACTIONS(4323), + [anon_sym_break] = ACTIONS(4323), + [anon_sym_COLON_COLON] = ACTIONS(4325), + [anon_sym_PLUS_EQ] = ACTIONS(4325), + [anon_sym_DASH_EQ] = ACTIONS(4325), + [anon_sym_STAR_EQ] = ACTIONS(4325), + [anon_sym_SLASH_EQ] = ACTIONS(4325), + [anon_sym_PERCENT_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), + [anon_sym_LT_EQ] = ACTIONS(4325), + [anon_sym_GT_EQ] = ACTIONS(4325), + [anon_sym_BANGin] = ACTIONS(4325), + [anon_sym_is] = ACTIONS(4323), + [anon_sym_BANGis] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4323), + [anon_sym_inner] = ACTIONS(4323), + [anon_sym_value] = ACTIONS(4323), + [anon_sym_expect] = ACTIONS(4323), + [anon_sym_actual] = ACTIONS(4323), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4325), + [anon_sym_continue_AT] = ACTIONS(4325), + [anon_sym_break_AT] = ACTIONS(4325), + [anon_sym_this_AT] = ACTIONS(4325), + [anon_sym_super_AT] = ACTIONS(4325), + [sym_real_literal] = ACTIONS(4325), + [sym_integer_literal] = ACTIONS(4323), + [sym_hex_literal] = ACTIONS(4325), + [sym_bin_literal] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4325), + [sym__backtick_identifier] = ACTIONS(4325), + [sym__automatic_semicolon] = ACTIONS(4325), + [sym_safe_nav] = ACTIONS(4325), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4325), + }, + [2866] = { + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -350870,50 +346897,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350941,102 +346968,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2874] = { - [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [2867] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(6499), + [sym__quest] = ACTIONS(4222), + [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), - [sym__backtick_identifier] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [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), }, - [2875] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9194), + [2868] = { + [sym_type_arguments] = STATE(3038), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_by] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(6501), + [anon_sym_where] = ACTIONS(4159), + [anon_sym_object] = ACTIONS(4159), + [anon_sym_fun] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_this] = ACTIONS(4159), + [anon_sym_super] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4161), + [sym__quest] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4161), + [sym_label] = ACTIONS(4159), + [anon_sym_in] = ACTIONS(4159), + [anon_sym_null] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_else] = ACTIONS(4159), + [anon_sym_when] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_throw] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_BANGin] = ACTIONS(4161), + [anon_sym_is] = ACTIONS(4159), + [anon_sym_BANGis] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG] = ACTIONS(4159), + [anon_sym_suspend] = ACTIONS(4159), + [anon_sym_sealed] = ACTIONS(4159), + [anon_sym_annotation] = ACTIONS(4159), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_override] = ACTIONS(4159), + [anon_sym_lateinit] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_private] = ACTIONS(4159), + [anon_sym_internal] = ACTIONS(4159), + [anon_sym_protected] = ACTIONS(4159), + [anon_sym_tailrec] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_infix] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_external] = ACTIONS(4159), + [sym_property_modifier] = ACTIONS(4159), + [anon_sym_abstract] = ACTIONS(4159), + [anon_sym_final] = ACTIONS(4159), + [anon_sym_open] = ACTIONS(4159), + [anon_sym_vararg] = ACTIONS(4159), + [anon_sym_noinline] = ACTIONS(4159), + [anon_sym_crossinline] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4161), + [anon_sym_continue_AT] = ACTIONS(4161), + [anon_sym_break_AT] = ACTIONS(4161), + [anon_sym_this_AT] = ACTIONS(4161), + [anon_sym_super_AT] = ACTIONS(4161), + [sym_real_literal] = ACTIONS(4161), + [sym_integer_literal] = ACTIONS(4159), + [sym_hex_literal] = ACTIONS(4161), + [sym_bin_literal] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [anon_sym_SQUOTE] = ACTIONS(4161), + [sym__backtick_identifier] = ACTIONS(4161), + [sym__automatic_semicolon] = ACTIONS(4161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4161), + }, + [2869] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [2870] = { + [sym_getter] = STATE(4834), + [sym_setter] = STATE(4834), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351046,12 +347249,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), [anon_sym_as] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1804), [anon_sym_RBRACE] = ACTIONS(1804), @@ -351059,10 +347263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(4633), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), [anon_sym_STAR] = ACTIONS(1804), [sym_label] = ACTIONS(1804), [anon_sym_in] = ACTIONS(1802), @@ -351121,10 +347324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2876] = { - [sym_getter] = STATE(4734), - [sym_setter] = STATE(4734), - [sym_modifiers] = STATE(9194), + [2871] = { + [sym_getter] = STATE(3571), + [sym_setter] = STATE(3571), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351134,50 +347337,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351205,14 +347408,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2877] = { - [sym_getter] = STATE(4867), - [sym_setter] = STATE(4867), - [sym_modifiers] = STATE(9194), + [2872] = { + [sym_type_constraints] = STATE(3236), + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [2873] = { + [sym_type_constraints] = STATE(2903), + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [2874] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351222,50 +347601,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1808), [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(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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -351293,14 +347672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, - [2878] = { - [sym_getter] = STATE(3458), - [sym_setter] = STATE(3458), - [sym_modifiers] = STATE(9117), + [2875] = { + [sym_getter] = STATE(3582), + [sym_setter] = STATE(3582), + [sym_modifiers] = STATE(9107), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351310,50 +347689,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6240), + [anon_sym_set] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351381,14 +347760,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2879] = { - [sym_getter] = STATE(4710), - [sym_setter] = STATE(4710), - [sym_modifiers] = STATE(9194), + [2876] = { + [sym_getter] = STATE(4891), + [sym_setter] = STATE(4891), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351398,50 +347777,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351469,14 +347848,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2880] = { - [sym_getter] = STATE(3498), - [sym_setter] = STATE(3498), - [sym_modifiers] = STATE(9117), + [2877] = { + [sym_getter] = STATE(4810), + [sym_setter] = STATE(4810), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -351486,50 +347865,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(4631), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), + [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), @@ -351557,449 +347936,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [2881] = { - [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_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__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [2878] = { + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_by] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_object] = ACTIONS(4263), + [anon_sym_fun] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_this] = ACTIONS(4263), + [anon_sym_super] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [sym__quest] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [sym_label] = ACTIONS(4263), + [anon_sym_in] = ACTIONS(4263), + [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(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_else] = ACTIONS(4263), + [anon_sym_when] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_throw] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [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(4263), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4263), + [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(4263), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_as_QMARK] = ACTIONS(4265), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_BANG_BANG] = ACTIONS(4265), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [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(4263), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [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), }, - [2886] = { - [sym_getter] = STATE(4034), - [sym_setter] = STATE(4034), - [sym_modifiers] = STATE(9392), + [2879] = { + [sym_getter] = STATE(4854), + [sym_setter] = STATE(4854), + [sym_modifiers] = STATE(9378), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -352009,25 +348041,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1814), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), [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(6364), - [anon_sym_set] = ACTIONS(6366), + [anon_sym_get] = ACTIONS(6246), + [anon_sym_set] = ACTIONS(6248), [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), @@ -352079,14 +348113,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3326), [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), }, - [2887] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9310), + [2880] = { + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4247), + [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_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [sym__quest] = ACTIONS(4247), + [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), + }, + [2881] = { + [sym_class_body] = STATE(3241), + [sym_type_constraints] = STATE(3016), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), + }, + [2882] = { + [sym_type_constraints] = STATE(3027), + [sym_enum_class_body] = STATE(3129), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [2883] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -352096,345 +348391,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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(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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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(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), }, - [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), - }, - [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), + [2884] = { + [sym_getter] = STATE(3989), + [sym_setter] = STATE(3989), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(4828), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), }, - [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), + [2885] = { + [sym_getter] = STATE(3853), + [sym_setter] = STATE(3853), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -352444,48 +348565,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352513,102 +348634,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2886] = { + [sym_class_body] = STATE(3220), + [sym_type_constraints] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [2887] = { + [sym_type_constraints] = STATE(2988), + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [2888] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(5183), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), + [sym__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2893] = { - [sym_getter] = STATE(4018), - [sym_setter] = STATE(4018), - [sym_modifiers] = STATE(9392), + [2889] = { + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -352618,48 +348913,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(5205), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -352687,15 +348982,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2894] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9392), + [2890] = { + [sym_type_arguments] = STATE(6557), + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_DASH_GT] = ACTIONS(4186), + [sym_label] = ACTIONS(4186), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2891] = { + [aux_sym_user_type_repeat1] = STATE(2945), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6507), + [anon_sym_EQ] = ACTIONS(4141), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4141), + [sym__quest] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(4141), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), + }, + [2892] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [sym__quest] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + }, + [2893] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -352705,48 +349261,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352774,711 +349330,972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, + [2894] = { + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, [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), + [sym_type_arguments] = STATE(6557), + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6509), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4186), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(6511), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [sym__quest] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4186), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4186), + [anon_sym_continue_AT] = ACTIONS(4186), + [anon_sym_break_AT] = ACTIONS(4186), + [anon_sym_this_AT] = ACTIONS(4186), + [anon_sym_super_AT] = ACTIONS(4186), + [sym_real_literal] = ACTIONS(4186), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4186), + [sym_bin_literal] = ACTIONS(4186), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4186), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4186), }, [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), + [aux_sym_user_type_repeat1] = STATE(2771), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6513), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), }, [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), + [sym_class_body] = STATE(3252), + [sym_type_constraints] = STATE(2983), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), }, [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_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), + [sym_type_constraints] = STATE(3174), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), }, [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), + [aux_sym_user_type_repeat1] = STATE(2917), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_RBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6522), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_RPAREN] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4139), + [sym__quest] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4141), + [sym_label] = ACTIONS(4141), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_while] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), [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), + [sym_getter] = STATE(5238), + [sym_setter] = STATE(5238), + [sym_modifiers] = STATE(9459), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), }, [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), + [sym_type_constraints] = STATE(3092), + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), }, [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), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4190), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), }, [2903] = { - [sym_getter] = STATE(4033), - [sym_setter] = STATE(4033), - [sym_modifiers] = STATE(9392), + [sym_function_body] = STATE(3087), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [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_fun] = 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), + }, + [2904] = { + [sym_type_constraints] = STATE(3039), + [sym_enum_class_body] = STATE(3098), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), + }, + [2905] = { + [sym_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -353488,22 +350305,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1808), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), [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_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), [anon_sym_STAR] = ACTIONS(1810), [sym_label] = ACTIONS(1810), [anon_sym_in] = ACTIONS(1808), @@ -353562,551 +350379,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_getter] = STATE(4000), + [sym_setter] = STATE(4000), + [sym_modifiers] = STATE(9103), + [sym__modifier] = STATE(5620), + [sym_class_modifier] = STATE(5620), + [sym_member_modifier] = STATE(5620), + [sym_visibility_modifier] = STATE(5620), + [sym_function_modifier] = STATE(5620), + [sym_inheritance_modifier] = STATE(5620), + [sym_parameter_modifier] = STATE(5620), + [sym_platform_modifier] = STATE(5620), + [sym_annotation] = STATE(5620), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), + [aux_sym_modifiers_repeat1] = STATE(5620), + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), }, [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_type_constraints] = STATE(3105), + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3216), + [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), + [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(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), + [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(4218), + [sym__string_start] = ACTIONS(4305), }, [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), + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = 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_fun] = 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), }, [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_class_body] = STATE(3211), + [sym_type_constraints] = STATE(3059), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_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), }, [2910] = { - [aux_sym_user_type_repeat1] = STATE(2905), + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4173), + [sym__quest] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), + }, + [2911] = { + [sym_type_constraints] = STATE(3061), + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6530), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_RBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_DASH_GT] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [2912] = { + [sym_type_constraints] = STATE(3037), + [sym_enum_class_body] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), + }, + [2913] = { + [sym_type_constraints] = STATE(3120), + [sym_function_body] = STATE(3503), + [sym__block] = STATE(3403), [sym__alpha_identifier] = ACTIONS(4153), [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6532), [anon_sym_LBRACK] = ACTIONS(4155), [anon_sym_RBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), [anon_sym_as] = ACTIONS(4153), - [anon_sym_EQ] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), [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_where] = ACTIONS(5474), [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), @@ -354171,97 +351075,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2914] = { + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2912] = { - [sym_getter] = STATE(3978), - [sym_setter] = STATE(3978), - [sym_modifiers] = STATE(9392), + [2915] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -354271,48 +351175,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -354340,1407 +351244,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(6364), - [anon_sym_set] = ACTIONS(6366), - [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), + [2916] = { + [sym_class_body] = STATE(3129), + [sym_type_constraints] = STATE(3035), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [2917] = { + [aux_sym_user_type_repeat1] = STATE(2932), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_RBRACK] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(6534), + [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_SEMI] = ACTIONS(4124), + [anon_sym_get] = ACTIONS(4122), + [anon_sym_set] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [sym__quest] = 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(1734), - [sym__automatic_semicolon] = ACTIONS(1734), - [sym_safe_nav] = ACTIONS(1734), + [sym__backtick_identifier] = ACTIONS(4124), + [sym_safe_nav] = ACTIONS(4124), [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), + [2918] = { + [sym_type_constraints] = STATE(2988), + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6537), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, - [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), + [2919] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [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), + [2920] = { + [sym_type_constraints] = STATE(3148), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6539), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), }, [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_class_body] = STATE(3211), + [sym_type_constraints] = STATE(3059), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_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(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), + [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(4441), + [sym__string_start] = ACTIONS(4319), }, - [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), + [2922] = { + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [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(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), + [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(4155), + [sym__string_start] = ACTIONS(4305), }, - [2929] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9392), + [2923] = { + [sym_getter] = STATE(5108), + [sym_setter] = STATE(5108), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -355750,48 +351871,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -355819,15 +351940,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [2930] = { - [sym_getter] = STATE(3902), - [sym_setter] = STATE(3902), - [sym_modifiers] = STATE(9392), + [2924] = { + [sym_getter] = STATE(5246), + [sym_setter] = STATE(5246), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -355837,48 +351958,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3422), [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_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -355906,102 +352027,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2925] = { + [sym_type_constraints] = STATE(3123), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [2932] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9310), + [2926] = { + [sym_getter] = STATE(3881), + [sym_setter] = STATE(3881), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -356011,48 +352132,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(3338), [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(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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6402), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -356080,537 +352201,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), - }, - [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), + [2927] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_catch] = ACTIONS(4393), + [anon_sym_finally] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), }, - [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), + [2928] = { + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), }, - [2939] = { - [sym_getter] = STATE(5108), - [sym_setter] = STATE(5108), - [sym_modifiers] = STATE(9310), + [2929] = { + [sym_getter] = STATE(3837), + [sym_setter] = STATE(3837), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -356620,48 +352393,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -356689,276 +352462,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2930] = { + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [2943] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9392), + [2931] = { + [sym_getter] = STATE(5240), + [sym_setter] = STATE(5240), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -356968,48 +352567,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1822), [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_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1824), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357037,15 +352636,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [2944] = { - [sym_getter] = STATE(3849), - [sym_setter] = STATE(3849), - [sym_modifiers] = STATE(9392), + [2932] = { + [aux_sym_user_type_repeat1] = STATE(2932), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(6541), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + }, + [2933] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(6544), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [2934] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [2935] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -357055,48 +352915,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1790), + [sym__alpha_identifier] = ACTIONS(1814), [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_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(1816), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -357124,276 +352984,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [sym_multiline_comment] = ACTIONS(3), }, - [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_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [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(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), - }, - [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), - }, - [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), - }, - [2948] = { - [sym_getter] = STATE(5134), - [sym_setter] = STATE(5134), - [sym_modifiers] = STATE(9310), + [2936] = { + [sym_getter] = STATE(3877), + [sym_setter] = STATE(3877), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -357403,65 +353002,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1814), [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_SEMI] = ACTIONS(4956), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -357472,276 +353071,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1816), + [sym__automatic_semicolon] = ACTIONS(1816), + [sym_safe_nav] = ACTIONS(1816), [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), - }, - [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), + [2937] = { + [sym_value_arguments] = STATE(3194), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(6546), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), }, - [2952] = { - [sym_getter] = STATE(5152), - [sym_setter] = STATE(5152), - [sym_modifiers] = STATE(9310), + [2938] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -357751,22 +353176,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(3316), [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [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(6380), - [anon_sym_set] = ACTIONS(6382), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), [anon_sym_STAR] = ACTIONS(1792), [sym_label] = ACTIONS(1792), [anon_sym_in] = ACTIONS(1790), @@ -357825,10 +353250,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(1792), [sym_multiline_comment] = ACTIONS(3), }, - [2953] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9310), + [2939] = { + [sym_type_constraints] = STATE(3179), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [2940] = { + [sym_getter] = STATE(5220), + [sym_setter] = STATE(5220), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -357838,48 +353350,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(3338), [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_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(6376), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357907,15 +353419,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), [sym_multiline_comment] = ACTIONS(3), }, - [2954] = { - [sym_getter] = STATE(5244), - [sym_setter] = STATE(5244), - [sym_modifiers] = STATE(9310), + [2941] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -357925,48 +353437,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1802), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -357994,276 +353506,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [2942] = { + [sym_type_arguments] = STATE(2998), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_as] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_by] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(6548), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_where] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_DASH_GT] = ACTIONS(4161), + [sym_label] = ACTIONS(4161), + [anon_sym_in] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4159), + [anon_sym_DOT_DOT] = ACTIONS(4161), + [anon_sym_QMARK_COLON] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_else] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), + [anon_sym_EQ_EQ] = ACTIONS(4159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_BANGin] = ACTIONS(4161), + [anon_sym_is] = ACTIONS(4159), + [anon_sym_BANGis] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_as_QMARK] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG_BANG] = ACTIONS(4161), + [anon_sym_suspend] = ACTIONS(4159), + [anon_sym_sealed] = ACTIONS(4159), + [anon_sym_annotation] = ACTIONS(4159), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_override] = ACTIONS(4159), + [anon_sym_lateinit] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_private] = ACTIONS(4159), + [anon_sym_internal] = ACTIONS(4159), + [anon_sym_protected] = ACTIONS(4159), + [anon_sym_tailrec] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_infix] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_external] = ACTIONS(4159), + [sym_property_modifier] = ACTIONS(4159), + [anon_sym_abstract] = ACTIONS(4159), + [anon_sym_final] = ACTIONS(4159), + [anon_sym_open] = ACTIONS(4159), + [anon_sym_vararg] = ACTIONS(4159), + [anon_sym_noinline] = ACTIONS(4159), + [anon_sym_crossinline] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4161), + [sym_safe_nav] = ACTIONS(4161), [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), + [2943] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358273,48 +353611,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(1804), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -358342,15 +353680,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [2959] = { - [sym_getter] = STATE(5221), - [sym_setter] = STATE(5221), - [sym_modifiers] = STATE(9310), + [2944] = { + [sym_getter] = STATE(5216), + [sym_setter] = STATE(5216), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358360,48 +353698,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1732), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -358429,15 +353767,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2960] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9310), + [2945] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(4124), + [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_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_AMP] = ACTIONS(4124), + [sym__quest] = ACTIONS(4124), + [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), + }, + [2946] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358447,48 +353872,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1734), [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(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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -358516,15 +353941,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2961] = { - [sym_getter] = STATE(5198), - [sym_setter] = STATE(5198), - [sym_modifiers] = STATE(9310), + [2947] = { + [sym_getter] = STATE(3867), + [sym_setter] = STATE(3867), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358534,48 +353959,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1808), + [sym__alpha_identifier] = ACTIONS(1790), [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_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_SEMI] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [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), @@ -358603,102 +354028,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2948] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_where] = ACTIONS(4468), + [anon_sym_object] = ACTIONS(4468), + [anon_sym_fun] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_get] = ACTIONS(4468), + [anon_sym_set] = ACTIONS(4468), + [anon_sym_this] = ACTIONS(4468), + [anon_sym_super] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [sym_label] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_QMARK_COLON] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_null] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_finally] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_BANGin] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4468), + [anon_sym_BANGis] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_PERCENT] = ACTIONS(4468), + [anon_sym_as_QMARK] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_BANG_BANG] = ACTIONS(4470), + [anon_sym_data] = ACTIONS(4468), + [anon_sym_inner] = ACTIONS(4468), + [anon_sym_value] = ACTIONS(4468), + [anon_sym_expect] = ACTIONS(4468), + [anon_sym_actual] = ACTIONS(4468), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4470), + [anon_sym_continue_AT] = ACTIONS(4470), + [anon_sym_break_AT] = ACTIONS(4470), + [anon_sym_this_AT] = ACTIONS(4470), + [anon_sym_super_AT] = ACTIONS(4470), + [sym_real_literal] = ACTIONS(4470), + [sym_integer_literal] = ACTIONS(4468), + [sym_hex_literal] = ACTIONS(4470), + [sym_bin_literal] = ACTIONS(4470), + [anon_sym_true] = ACTIONS(4468), + [anon_sym_false] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4470), + [sym__backtick_identifier] = ACTIONS(4470), + [sym__automatic_semicolon] = ACTIONS(4470), + [sym_safe_nav] = ACTIONS(4470), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4470), + }, + [2949] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_as] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_where] = ACTIONS(4472), + [anon_sym_object] = ACTIONS(4472), + [anon_sym_fun] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_get] = ACTIONS(4472), + [anon_sym_set] = ACTIONS(4472), + [anon_sym_this] = ACTIONS(4472), + [anon_sym_super] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [sym_label] = ACTIONS(4472), + [anon_sym_in] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4474), + [anon_sym_QMARK_COLON] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_null] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_when] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_finally] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_PERCENT_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4474), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4474), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_BANGin] = ACTIONS(4474), + [anon_sym_is] = ACTIONS(4472), + [anon_sym_BANGis] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_as_QMARK] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_BANG_BANG] = ACTIONS(4474), + [anon_sym_data] = ACTIONS(4472), + [anon_sym_inner] = ACTIONS(4472), + [anon_sym_value] = ACTIONS(4472), + [anon_sym_expect] = ACTIONS(4472), + [anon_sym_actual] = ACTIONS(4472), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4474), + [anon_sym_continue_AT] = ACTIONS(4474), + [anon_sym_break_AT] = ACTIONS(4474), + [anon_sym_this_AT] = ACTIONS(4474), + [anon_sym_super_AT] = ACTIONS(4474), + [sym_real_literal] = ACTIONS(4474), + [sym_integer_literal] = ACTIONS(4472), + [sym_hex_literal] = ACTIONS(4474), + [sym_bin_literal] = ACTIONS(4474), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4474), + [sym__backtick_identifier] = ACTIONS(4474), + [sym__automatic_semicolon] = ACTIONS(4474), + [sym_safe_nav] = ACTIONS(4474), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4474), + }, + [2950] = { + [sym_catch_block] = STATE(2950), + [aux_sym_try_expression_repeat1] = STATE(2950), + [sym__alpha_identifier] = ACTIONS(4146), + [anon_sym_AT] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_RPAREN] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_get] = ACTIONS(4146), + [anon_sym_set] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_DASH_GT] = ACTIONS(4148), + [sym_label] = ACTIONS(4148), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_while] = ACTIONS(4146), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_QMARK_COLON] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4146), + [anon_sym_catch] = ACTIONS(6552), + [anon_sym_finally] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_BANGin] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4146), + [anon_sym_BANGis] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_as_QMARK] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4148), + [anon_sym_suspend] = ACTIONS(4146), + [anon_sym_sealed] = ACTIONS(4146), + [anon_sym_annotation] = ACTIONS(4146), + [anon_sym_data] = ACTIONS(4146), + [anon_sym_inner] = ACTIONS(4146), + [anon_sym_value] = ACTIONS(4146), + [anon_sym_override] = ACTIONS(4146), + [anon_sym_lateinit] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_internal] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_tailrec] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_infix] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym_external] = ACTIONS(4146), + [sym_property_modifier] = ACTIONS(4146), + [anon_sym_abstract] = ACTIONS(4146), + [anon_sym_final] = ACTIONS(4146), + [anon_sym_open] = ACTIONS(4146), + [anon_sym_vararg] = ACTIONS(4146), + [anon_sym_noinline] = ACTIONS(4146), + [anon_sym_crossinline] = ACTIONS(4146), + [anon_sym_expect] = ACTIONS(4146), + [anon_sym_actual] = ACTIONS(4146), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4148), + [sym_safe_nav] = ACTIONS(4148), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), }, - [2963] = { - [sym_getter] = STATE(3851), - [sym_setter] = STATE(3851), - [sym_modifiers] = STATE(9392), + [2951] = { + [sym_type_constraints] = STATE(3272), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [2952] = { + [sym_getter] = STATE(5145), + [sym_setter] = STATE(5145), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358708,48 +354394,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3344), + [sym__alpha_identifier] = ACTIONS(1802), [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_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_SEMI] = ACTIONS(5203), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -358777,102 +354463,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [2953] = { + [sym_type_constraints] = STATE(3011), + [sym_enum_class_body] = STATE(3241), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, - [2965] = { - [sym_getter] = STATE(5183), - [sym_setter] = STATE(5183), - [sym_modifiers] = STATE(9310), + [2954] = { + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [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_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_object] = ACTIONS(4495), + [anon_sym_fun] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(6555), + [anon_sym_L] = ACTIONS(6557), + [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), + }, + [2955] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [2956] = { + [sym_class_body] = STATE(3260), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [2957] = { + [sym_function_body] = STATE(3225), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), + }, + [2958] = { + [sym_function_body] = STATE(3263), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6442), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [2959] = { + [sym_class_body] = STATE(3248), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), + }, + [2960] = { + [sym_getter] = STATE(3828), + [sym_setter] = STATE(3828), + [sym_modifiers] = STATE(9103), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358882,48 +355090,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1814), + [sym__alpha_identifier] = ACTIONS(1734), [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_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(6360), + [anon_sym_set] = ACTIONS(6362), + [anon_sym_STAR] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -358951,15 +355159,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3326), [anon_sym_actual] = ACTIONS(3326), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1816), - [sym__automatic_semicolon] = ACTIONS(1816), - [sym_safe_nav] = ACTIONS(1816), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [2966] = { - [sym_getter] = STATE(5177), - [sym_setter] = STATE(5177), - [sym_modifiers] = STATE(9310), + [2961] = { + [sym_class_body] = STATE(3208), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [2962] = { + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -358969,48 +355264,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(3420), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -359038,15 +355333,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), + [sym_multiline_comment] = ACTIONS(3), + }, + [2963] = { + [sym_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), + }, + [2964] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(2971), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [2965] = { + [sym_type_constraints] = STATE(3138), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6563), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, + [2966] = { + [sym_class_body] = STATE(3260), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, [2967] = { - [sym_getter] = STATE(3958), - [sym_setter] = STATE(3958), - [sym_modifiers] = STATE(9392), + [sym_getter] = STATE(5103), + [sym_setter] = STATE(5103), + [sym_modifiers] = STATE(9459), [sym__modifier] = STATE(5620), [sym_class_modifier] = STATE(5620), [sym_member_modifier] = STATE(5620), @@ -359056,48 +355699,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parameter_modifier] = STATE(5620), [sym_platform_modifier] = STATE(5620), [sym_annotation] = STATE(5620), - [sym__single_annotation] = STATE(5789), - [sym__multi_annotation] = STATE(5789), + [sym__single_annotation] = STATE(5796), + [sym__multi_annotation] = STATE(5796), [aux_sym_modifiers_repeat1] = STATE(5620), - [sym__alpha_identifier] = ACTIONS(1796), + [sym__alpha_identifier] = ACTIONS(1808), [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_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1808), + [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_SEMI] = ACTIONS(1810), + [anon_sym_get] = ACTIONS(6368), + [anon_sym_set] = ACTIONS(6370), + [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), @@ -359125,4421 +355768,2013 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(1810), + [sym__automatic_semicolon] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [sym_multiline_comment] = ACTIONS(3), }, [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, [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), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [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), + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_catch] = ACTIONS(4403), + [anon_sym_finally] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), }, [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), + [sym_type_constraints] = STATE(3174), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), }, [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), + [sym_class_body] = STATE(3211), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [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_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_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), }, [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), + [sym_class_body] = STATE(3386), + [sym_type_constraints] = STATE(3358), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6567), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), }, [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), - [sym__backtick_identifier] = ACTIONS(4239), - [sym_safe_nav] = ACTIONS(4239), + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, [2974] = { - [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), + [sym_type_constraints] = STATE(3341), + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(6569), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), }, [2975] = { - [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_type_constraints] = STATE(3138), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4309), }, [2976] = { - [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_type_constraints] = STATE(3131), + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_DASH_GT] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, [2977] = { - [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), + [sym__alpha_identifier] = ACTIONS(4625), + [anon_sym_AT] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_where] = ACTIONS(4625), + [anon_sym_object] = ACTIONS(4625), + [anon_sym_fun] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_get] = ACTIONS(4625), + [anon_sym_set] = ACTIONS(4625), + [anon_sym_this] = ACTIONS(4625), + [anon_sym_super] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4625), + [sym_label] = ACTIONS(4625), + [anon_sym_in] = ACTIONS(4625), + [anon_sym_DOT_DOT] = ACTIONS(4627), + [anon_sym_QMARK_COLON] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_null] = ACTIONS(4625), + [anon_sym_if] = ACTIONS(4625), + [anon_sym_else] = ACTIONS(4625), + [anon_sym_when] = ACTIONS(4625), + [anon_sym_try] = ACTIONS(4625), + [anon_sym_throw] = ACTIONS(4625), + [anon_sym_return] = ACTIONS(4625), + [anon_sym_continue] = ACTIONS(4625), + [anon_sym_break] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_BANGin] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4625), + [anon_sym_BANGis] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4625), + [anon_sym_PERCENT] = ACTIONS(4625), + [anon_sym_as_QMARK] = ACTIONS(4627), + [anon_sym_PLUS_PLUS] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4625), + [anon_sym_BANG_BANG] = ACTIONS(4627), + [anon_sym_data] = ACTIONS(4625), + [anon_sym_inner] = ACTIONS(4625), + [anon_sym_value] = ACTIONS(4625), + [anon_sym_expect] = ACTIONS(4625), + [anon_sym_actual] = ACTIONS(4625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4627), + [anon_sym_continue_AT] = ACTIONS(4627), + [anon_sym_break_AT] = ACTIONS(4627), + [anon_sym_this_AT] = ACTIONS(4627), + [anon_sym_super_AT] = ACTIONS(4627), + [sym_real_literal] = ACTIONS(4627), + [sym_integer_literal] = ACTIONS(4625), + [sym_hex_literal] = ACTIONS(4627), + [sym_bin_literal] = ACTIONS(4627), + [anon_sym_true] = ACTIONS(4625), + [anon_sym_false] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4627), + [sym__backtick_identifier] = ACTIONS(4627), + [sym__automatic_semicolon] = ACTIONS(4627), + [sym_safe_nav] = ACTIONS(4627), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4627), }, [2978] = { - [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), + [sym_enum_class_body] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), }, [2979] = { - [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), + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_object] = ACTIONS(4515), + [anon_sym_fun] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_this] = ACTIONS(4515), + [anon_sym_super] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4515), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_null] = ACTIONS(4515), + [anon_sym_if] = ACTIONS(4515), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_when] = ACTIONS(4515), + [anon_sym_try] = ACTIONS(4515), + [anon_sym_throw] = ACTIONS(4515), + [anon_sym_return] = ACTIONS(4515), + [anon_sym_continue] = ACTIONS(4515), + [anon_sym_break] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4517), + [anon_sym_continue_AT] = ACTIONS(4517), + [anon_sym_break_AT] = ACTIONS(4517), + [anon_sym_this_AT] = ACTIONS(4517), + [anon_sym_super_AT] = ACTIONS(4517), + [sym_real_literal] = ACTIONS(4517), + [sym_integer_literal] = ACTIONS(4515), + [sym_hex_literal] = ACTIONS(4517), + [sym_bin_literal] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4517), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4517), }, [2980] = { - [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), + [sym_class_body] = STATE(3178), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), }, [2981] = { - [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), + [sym_class_body] = STATE(3254), + [sym__alpha_identifier] = ACTIONS(4724), + [anon_sym_AT] = ACTIONS(4726), + [anon_sym_LBRACK] = ACTIONS(4726), + [anon_sym_DOT] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_where] = ACTIONS(4724), + [anon_sym_object] = ACTIONS(4724), + [anon_sym_fun] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4724), + [anon_sym_set] = ACTIONS(4724), + [anon_sym_this] = ACTIONS(4724), + [anon_sym_super] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4724), + [anon_sym_DOT_DOT] = ACTIONS(4726), + [anon_sym_QMARK_COLON] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_null] = ACTIONS(4724), + [anon_sym_if] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4724), + [anon_sym_when] = ACTIONS(4724), + [anon_sym_try] = ACTIONS(4724), + [anon_sym_throw] = ACTIONS(4724), + [anon_sym_return] = ACTIONS(4724), + [anon_sym_continue] = ACTIONS(4724), + [anon_sym_break] = ACTIONS(4724), + [anon_sym_COLON_COLON] = ACTIONS(4726), + [anon_sym_PLUS_EQ] = ACTIONS(4726), + [anon_sym_DASH_EQ] = ACTIONS(4726), + [anon_sym_STAR_EQ] = ACTIONS(4726), + [anon_sym_SLASH_EQ] = ACTIONS(4726), + [anon_sym_PERCENT_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), + [anon_sym_LT_EQ] = ACTIONS(4726), + [anon_sym_GT_EQ] = ACTIONS(4726), + [anon_sym_BANGin] = ACTIONS(4726), + [anon_sym_is] = ACTIONS(4724), + [anon_sym_BANGis] = ACTIONS(4726), + [anon_sym_PLUS] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4724), + [anon_sym_SLASH] = ACTIONS(4724), + [anon_sym_PERCENT] = ACTIONS(4724), + [anon_sym_as_QMARK] = ACTIONS(4726), + [anon_sym_PLUS_PLUS] = ACTIONS(4726), + [anon_sym_DASH_DASH] = ACTIONS(4726), + [anon_sym_BANG] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4724), + [anon_sym_inner] = ACTIONS(4724), + [anon_sym_value] = ACTIONS(4724), + [anon_sym_expect] = ACTIONS(4724), + [anon_sym_actual] = ACTIONS(4724), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4726), + [anon_sym_continue_AT] = ACTIONS(4726), + [anon_sym_break_AT] = ACTIONS(4726), + [anon_sym_this_AT] = ACTIONS(4726), + [anon_sym_super_AT] = ACTIONS(4726), + [sym_real_literal] = ACTIONS(4726), + [sym_integer_literal] = ACTIONS(4724), + [sym_hex_literal] = ACTIONS(4726), + [sym_bin_literal] = ACTIONS(4726), + [anon_sym_true] = ACTIONS(4724), + [anon_sym_false] = ACTIONS(4724), + [anon_sym_SQUOTE] = ACTIONS(4726), + [sym__backtick_identifier] = ACTIONS(4726), + [sym__automatic_semicolon] = ACTIONS(4726), + [sym_safe_nav] = ACTIONS(4726), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4726), }, [2982] = { - [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__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4728), + [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_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_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), }, [2983] = { - [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), + [sym_class_body] = STATE(3248), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), }, [2984] = { - [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_class_body] = STATE(3573), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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), }, [2985] = { - [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), + [sym_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, [2986] = { - [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_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5614), + [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(5474), + [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), }, [2987] = { - [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(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), + [aux_sym__delegation_specifiers_repeat1] = STATE(3001), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(6571), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), }, [2988] = { - [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), + [sym_enum_class_body] = STATE(3241), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, [2989] = { - [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(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_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__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__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__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_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] = { - [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_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(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__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_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(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - }, - [3001] = { - [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_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__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_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_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_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_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__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(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__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(6573), + [sym__quest] = ACTIONS(4222), + [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), - [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__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), [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), + [2990] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [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_SEMI] = ACTIONS(4269), + [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(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(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), + [anon_sym_return_AT] = ACTIONS(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4269), }, - [3019] = { + [2991] = { + [sym_class_body] = STATE(3567), + [sym_type_constraints] = STATE(3317), [sym__alpha_identifier] = ACTIONS(4317), [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(6575), [anon_sym_LBRACK] = ACTIONS(4319), [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), [anon_sym_as] = ACTIONS(4317), [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(5468), [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_where] = ACTIONS(5474), [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), @@ -363604,1474 +357839,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2992] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), }, - [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), + [2993] = { + [sym__alpha_identifier] = ACTIONS(4511), + [anon_sym_AT] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_as] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_object] = ACTIONS(4511), + [anon_sym_fun] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4511), + [anon_sym_set] = ACTIONS(4511), + [anon_sym_this] = ACTIONS(4511), + [anon_sym_super] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4511), + [sym_label] = ACTIONS(4511), + [anon_sym_in] = ACTIONS(4511), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_QMARK_COLON] = ACTIONS(4513), + [anon_sym_AMP_AMP] = ACTIONS(4513), + [anon_sym_PIPE_PIPE] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(4511), + [anon_sym_if] = ACTIONS(4511), + [anon_sym_else] = ACTIONS(4511), + [anon_sym_when] = ACTIONS(4511), + [anon_sym_try] = ACTIONS(4511), + [anon_sym_throw] = ACTIONS(4511), + [anon_sym_return] = ACTIONS(4511), + [anon_sym_continue] = ACTIONS(4511), + [anon_sym_break] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(4513), + [anon_sym_PLUS_EQ] = ACTIONS(4513), + [anon_sym_DASH_EQ] = ACTIONS(4513), + [anon_sym_STAR_EQ] = ACTIONS(4513), + [anon_sym_SLASH_EQ] = ACTIONS(4513), + [anon_sym_PERCENT_EQ] = ACTIONS(4513), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4513), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4513), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4513), + [anon_sym_is] = ACTIONS(4511), + [anon_sym_BANGis] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4511), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_as_QMARK] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_BANG_BANG] = ACTIONS(4513), + [anon_sym_data] = ACTIONS(4511), + [anon_sym_inner] = ACTIONS(4511), + [anon_sym_value] = ACTIONS(4511), + [anon_sym_expect] = ACTIONS(4511), + [anon_sym_actual] = ACTIONS(4511), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4513), + [anon_sym_continue_AT] = ACTIONS(4513), + [anon_sym_break_AT] = ACTIONS(4513), + [anon_sym_this_AT] = ACTIONS(4513), + [anon_sym_super_AT] = ACTIONS(4513), + [sym_real_literal] = ACTIONS(4513), + [sym_integer_literal] = ACTIONS(4511), + [sym_hex_literal] = ACTIONS(4513), + [sym_bin_literal] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4511), + [anon_sym_false] = ACTIONS(4511), + [anon_sym_SQUOTE] = ACTIONS(4513), + [sym__backtick_identifier] = ACTIONS(4513), + [sym__automatic_semicolon] = ACTIONS(4513), + [sym_safe_nav] = ACTIONS(4513), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4513), + }, + [2994] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_object] = ACTIONS(4680), + [anon_sym_fun] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_this] = ACTIONS(4680), + [anon_sym_super] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_when] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4680), + [anon_sym_throw] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_continue] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4682), + [anon_sym_continue_AT] = ACTIONS(4682), + [anon_sym_break_AT] = ACTIONS(4682), + [anon_sym_this_AT] = ACTIONS(4682), + [anon_sym_super_AT] = ACTIONS(4682), + [sym_real_literal] = ACTIONS(4682), + [sym_integer_literal] = ACTIONS(4680), + [sym_hex_literal] = ACTIONS(4682), + [sym_bin_literal] = ACTIONS(4682), + [anon_sym_true] = ACTIONS(4680), + [anon_sym_false] = ACTIONS(4680), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4682), + }, + [2995] = { + [sym_class_body] = STATE(3441), + [sym_type_constraints] = STATE(3304), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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), }, - [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), + [2996] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6577), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), }, - [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(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(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_multiline_comment] = ACTIONS(3), - }, - [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), + [2997] = { + [aux_sym_nullable_type_repeat1] = STATE(3047), [sym__alpha_identifier] = ACTIONS(4204), [anon_sym_AT] = ACTIONS(4206), [anon_sym_LBRACK] = ACTIONS(4206), [anon_sym_RBRACK] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(4204), [anon_sym_as] = ACTIONS(4204), [anon_sym_EQ] = ACTIONS(4204), [anon_sym_LBRACE] = ACTIONS(4206), @@ -365083,11 +358287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__quest] = ACTIONS(6579), [anon_sym_STAR] = ACTIONS(4204), [anon_sym_DASH_GT] = ACTIONS(4206), [sym_label] = ACTIONS(4206), @@ -365152,269 +358355,2162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [2998] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_RBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_by] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4307), + [sym__quest] = 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), }, - [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), - [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), + [2999] = { + [aux_sym_type_constraints_repeat1] = STATE(3032), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(6581), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_object] = ACTIONS(4503), + [anon_sym_fun] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_this] = ACTIONS(4503), + [anon_sym_super] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4503), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_null] = ACTIONS(4503), + [anon_sym_if] = ACTIONS(4503), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_try] = ACTIONS(4503), + [anon_sym_throw] = ACTIONS(4503), + [anon_sym_return] = ACTIONS(4503), + [anon_sym_continue] = ACTIONS(4503), + [anon_sym_break] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4505), + [anon_sym_continue_AT] = ACTIONS(4505), + [anon_sym_break_AT] = ACTIONS(4505), + [anon_sym_this_AT] = ACTIONS(4505), + [anon_sym_super_AT] = ACTIONS(4505), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4503), + [anon_sym_false] = ACTIONS(4503), + [anon_sym_SQUOTE] = ACTIONS(4505), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4505), }, - [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), + [3000] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(6546), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), }, - [3041] = { + [3001] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3001), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(6583), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), + }, + [3002] = { + [sym_class_body] = STATE(3241), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), + }, + [3003] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), + [sym_multiline_comment] = ACTIONS(3), + }, + [3004] = { + [sym__alpha_identifier] = ACTIONS(4661), + [anon_sym_AT] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_as] = ACTIONS(4661), + [anon_sym_EQ] = ACTIONS(4661), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_object] = ACTIONS(4661), + [anon_sym_fun] = ACTIONS(4661), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_get] = ACTIONS(4661), + [anon_sym_set] = ACTIONS(4661), + [anon_sym_this] = ACTIONS(4661), + [anon_sym_super] = ACTIONS(4661), + [anon_sym_STAR] = ACTIONS(4661), + [sym_label] = ACTIONS(4661), + [anon_sym_in] = ACTIONS(4661), + [anon_sym_DOT_DOT] = ACTIONS(4663), + [anon_sym_QMARK_COLON] = ACTIONS(4663), + [anon_sym_AMP_AMP] = ACTIONS(4663), + [anon_sym_PIPE_PIPE] = ACTIONS(4663), + [anon_sym_null] = ACTIONS(4661), + [anon_sym_if] = ACTIONS(4661), + [anon_sym_else] = ACTIONS(4661), + [anon_sym_when] = ACTIONS(4661), + [anon_sym_try] = ACTIONS(4661), + [anon_sym_throw] = ACTIONS(4661), + [anon_sym_return] = ACTIONS(4661), + [anon_sym_continue] = ACTIONS(4661), + [anon_sym_break] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4663), + [anon_sym_PLUS_EQ] = ACTIONS(4663), + [anon_sym_DASH_EQ] = ACTIONS(4663), + [anon_sym_STAR_EQ] = ACTIONS(4663), + [anon_sym_SLASH_EQ] = ACTIONS(4663), + [anon_sym_PERCENT_EQ] = ACTIONS(4663), + [anon_sym_BANG_EQ] = ACTIONS(4661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), + [anon_sym_EQ_EQ] = ACTIONS(4661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), + [anon_sym_LT_EQ] = ACTIONS(4663), + [anon_sym_GT_EQ] = ACTIONS(4663), + [anon_sym_BANGin] = ACTIONS(4663), + [anon_sym_is] = ACTIONS(4661), + [anon_sym_BANGis] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4661), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4661), + [anon_sym_PERCENT] = ACTIONS(4661), + [anon_sym_as_QMARK] = ACTIONS(4663), + [anon_sym_PLUS_PLUS] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4663), + [anon_sym_BANG] = ACTIONS(4661), + [anon_sym_BANG_BANG] = ACTIONS(4663), + [anon_sym_data] = ACTIONS(4661), + [anon_sym_inner] = ACTIONS(4661), + [anon_sym_value] = ACTIONS(4661), + [anon_sym_expect] = ACTIONS(4661), + [anon_sym_actual] = ACTIONS(4661), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4663), + [anon_sym_continue_AT] = ACTIONS(4663), + [anon_sym_break_AT] = ACTIONS(4663), + [anon_sym_this_AT] = ACTIONS(4663), + [anon_sym_super_AT] = ACTIONS(4663), + [sym_real_literal] = ACTIONS(4663), + [sym_integer_literal] = ACTIONS(4661), + [sym_hex_literal] = ACTIONS(4663), + [sym_bin_literal] = ACTIONS(4663), + [anon_sym_true] = ACTIONS(4661), + [anon_sym_false] = ACTIONS(4661), + [anon_sym_SQUOTE] = ACTIONS(4663), + [sym__backtick_identifier] = ACTIONS(4663), + [sym__automatic_semicolon] = ACTIONS(4663), + [sym_safe_nav] = ACTIONS(4663), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4663), + }, + [3005] = { + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [3006] = { + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_DASH_GT] = ACTIONS(4173), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + }, + [3007] = { + [sym__alpha_identifier] = ACTIONS(4657), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_as] = ACTIONS(4657), + [anon_sym_EQ] = ACTIONS(4657), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_object] = ACTIONS(4657), + [anon_sym_fun] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4657), + [anon_sym_set] = ACTIONS(4657), + [anon_sym_this] = ACTIONS(4657), + [anon_sym_super] = ACTIONS(4657), + [anon_sym_STAR] = ACTIONS(4657), + [sym_label] = ACTIONS(4657), + [anon_sym_in] = ACTIONS(4657), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_null] = ACTIONS(4657), + [anon_sym_if] = ACTIONS(4657), + [anon_sym_else] = ACTIONS(4657), + [anon_sym_when] = ACTIONS(4657), + [anon_sym_try] = ACTIONS(4657), + [anon_sym_throw] = ACTIONS(4657), + [anon_sym_return] = ACTIONS(4657), + [anon_sym_continue] = ACTIONS(4657), + [anon_sym_break] = ACTIONS(4657), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4657), + [anon_sym_BANGis] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_as_QMARK] = ACTIONS(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4657), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [anon_sym_data] = ACTIONS(4657), + [anon_sym_inner] = ACTIONS(4657), + [anon_sym_value] = ACTIONS(4657), + [anon_sym_expect] = ACTIONS(4657), + [anon_sym_actual] = ACTIONS(4657), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4659), + [anon_sym_continue_AT] = ACTIONS(4659), + [anon_sym_break_AT] = ACTIONS(4659), + [anon_sym_this_AT] = ACTIONS(4659), + [anon_sym_super_AT] = ACTIONS(4659), + [sym_real_literal] = ACTIONS(4659), + [sym_integer_literal] = ACTIONS(4657), + [sym_hex_literal] = ACTIONS(4659), + [sym_bin_literal] = ACTIONS(4659), + [anon_sym_true] = ACTIONS(4657), + [anon_sym_false] = ACTIONS(4657), + [anon_sym_SQUOTE] = ACTIONS(4659), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4659), + }, + [3008] = { + [sym_function_body] = STATE(3481), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_DASH_GT] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + }, + [3009] = { + [sym_class_body] = STATE(3140), + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_as] = ACTIONS(4653), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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_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), + }, + [3010] = { + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_RBRACK] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4247), + [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_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [sym__quest] = ACTIONS(4247), + [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), + }, + [3011] = { + [sym_enum_class_body] = STATE(3129), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [3012] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_DASH_GT] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [3013] = { + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_RPAREN] = ACTIONS(4265), + [anon_sym_by] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [sym__quest] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_DASH_GT] = ACTIONS(4265), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4263), + [anon_sym_while] = ACTIONS(4263), + [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(4263), + [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(4263), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), + [anon_sym_EQ_EQ] = ACTIONS(4263), + [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(4263), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [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(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_annotation] = ACTIONS(4263), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_lateinit] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_tailrec] = ACTIONS(4263), + [anon_sym_operator] = ACTIONS(4263), + [anon_sym_infix] = ACTIONS(4263), + [anon_sym_inline] = ACTIONS(4263), + [anon_sym_external] = ACTIONS(4263), + [sym_property_modifier] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_final] = ACTIONS(4263), + [anon_sym_open] = ACTIONS(4263), + [anon_sym_vararg] = ACTIONS(4263), + [anon_sym_noinline] = ACTIONS(4263), + [anon_sym_crossinline] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4265), + [sym_safe_nav] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + }, + [3014] = { + [sym_function_body] = STATE(3500), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [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_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), + }, + [3015] = { + [sym_type_constraints] = STATE(3135), + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), + }, + [3016] = { + [sym_class_body] = STATE(3129), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [3017] = { + [sym_type_constraints] = STATE(3148), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3018] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_object] = ACTIONS(4525), + [anon_sym_fun] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_this] = ACTIONS(4525), + [anon_sym_super] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_null] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_when] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4525), + [anon_sym_throw] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_AT] = ACTIONS(4527), + [anon_sym_this_AT] = ACTIONS(4527), + [anon_sym_super_AT] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4527), + [sym_integer_literal] = ACTIONS(4525), + [sym_hex_literal] = ACTIONS(4527), + [sym_bin_literal] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4525), + [anon_sym_false] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4527), + }, + [3019] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_object] = ACTIONS(4519), + [anon_sym_fun] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_this] = ACTIONS(4519), + [anon_sym_super] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4519), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4519), + [anon_sym_if] = ACTIONS(4519), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_when] = ACTIONS(4519), + [anon_sym_try] = ACTIONS(4519), + [anon_sym_throw] = ACTIONS(4519), + [anon_sym_return] = ACTIONS(4519), + [anon_sym_continue] = ACTIONS(4519), + [anon_sym_break] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4521), + [anon_sym_continue_AT] = ACTIONS(4521), + [anon_sym_break_AT] = ACTIONS(4521), + [anon_sym_this_AT] = ACTIONS(4521), + [anon_sym_super_AT] = ACTIONS(4521), + [sym_real_literal] = ACTIONS(4521), + [sym_integer_literal] = ACTIONS(4519), + [sym_hex_literal] = ACTIONS(4521), + [sym_bin_literal] = ACTIONS(4521), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [anon_sym_SQUOTE] = ACTIONS(4521), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4521), + }, + [3020] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [3021] = { + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_by] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), + [anon_sym_object] = ACTIONS(4263), + [anon_sym_fun] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4265), + [anon_sym_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_this] = ACTIONS(4263), + [anon_sym_super] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [sym__quest] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4263), + [anon_sym_in] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_else] = ACTIONS(4263), + [anon_sym_when] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_throw] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_BANGin] = ACTIONS(4265), + [anon_sym_is] = ACTIONS(4263), + [anon_sym_BANGis] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_suspend] = ACTIONS(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_annotation] = ACTIONS(4263), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_lateinit] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_tailrec] = ACTIONS(4263), + [anon_sym_operator] = ACTIONS(4263), + [anon_sym_infix] = ACTIONS(4263), + [anon_sym_inline] = ACTIONS(4263), + [anon_sym_external] = ACTIONS(4263), + [sym_property_modifier] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_final] = ACTIONS(4263), + [anon_sym_open] = ACTIONS(4263), + [anon_sym_vararg] = ACTIONS(4263), + [anon_sym_noinline] = ACTIONS(4263), + [anon_sym_crossinline] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [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(4263), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), + [sym__automatic_semicolon] = ACTIONS(4265), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), + }, + [3022] = { + [sym_enum_class_body] = STATE(3115), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), + }, + [3023] = { [sym__alpha_identifier] = ACTIONS(4577), [anon_sym_AT] = ACTIONS(4579), [anon_sym_COLON] = ACTIONS(4577), [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_DOT] = ACTIONS(4577), [anon_sym_as] = ACTIONS(4577), [anon_sym_EQ] = ACTIONS(4577), [anon_sym_LBRACE] = ACTIONS(4579), @@ -365426,7 +360522,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -365496,147 +360591,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3024] = { + [sym_function_body] = STATE(3202), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = 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), }, - [3043] = { - [aux_sym_nullable_type_repeat1] = STATE(3032), + [3025] = { [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_DOT] = ACTIONS(4247), + [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_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_object] = ACTIONS(4247), + [anon_sym_fun] = 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_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [sym__quest] = ACTIONS(4249), + [anon_sym_STAR] = ACTIONS(4249), + [sym_label] = ACTIONS(4247), [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_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_BANG] = ACTIONS(4249), + [anon_sym_BANG] = ACTIONS(4247), [anon_sym_suspend] = ACTIONS(4247), [anon_sym_sealed] = ACTIONS(4247), [anon_sym_annotation] = ACTIONS(4247), @@ -365664,1232 +360746,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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), - }, - [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), - }, - [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(6601), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [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_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(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__automatic_semicolon] = ACTIONS(4249), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [sym__string_start] = ACTIONS(4249), }, - [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), + [3026] = { + [sym_import_list] = STATE(3026), + [sym_import_header] = STATE(8654), + [aux_sym_source_file_repeat2] = STATE(3026), + [aux_sym_import_list_repeat1] = STATE(8654), + [ts_builtin_sym_end] = ACTIONS(6596), + [sym__alpha_identifier] = ACTIONS(6598), + [anon_sym_AT] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_import] = ACTIONS(6600), + [anon_sym_typealias] = ACTIONS(6598), + [anon_sym_class] = ACTIONS(6598), + [anon_sym_interface] = ACTIONS(6598), + [anon_sym_enum] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6596), + [anon_sym_LPAREN] = ACTIONS(6596), + [anon_sym_val] = ACTIONS(6598), + [anon_sym_var] = ACTIONS(6598), + [anon_sym_object] = ACTIONS(6598), + [anon_sym_fun] = ACTIONS(6598), + [anon_sym_get] = ACTIONS(6598), + [anon_sym_set] = ACTIONS(6598), + [anon_sym_this] = ACTIONS(6598), + [anon_sym_super] = ACTIONS(6598), + [anon_sym_STAR] = ACTIONS(6596), + [sym_label] = ACTIONS(6598), + [anon_sym_for] = ACTIONS(6598), + [anon_sym_while] = ACTIONS(6598), + [anon_sym_do] = ACTIONS(6598), + [anon_sym_null] = ACTIONS(6598), + [anon_sym_if] = ACTIONS(6598), + [anon_sym_when] = ACTIONS(6598), + [anon_sym_try] = ACTIONS(6598), + [anon_sym_throw] = ACTIONS(6598), + [anon_sym_return] = ACTIONS(6598), + [anon_sym_continue] = ACTIONS(6598), + [anon_sym_break] = ACTIONS(6598), + [anon_sym_COLON_COLON] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_BANG] = ACTIONS(6596), + [anon_sym_suspend] = ACTIONS(6598), + [anon_sym_sealed] = ACTIONS(6598), + [anon_sym_annotation] = ACTIONS(6598), + [anon_sym_data] = ACTIONS(6598), + [anon_sym_inner] = ACTIONS(6598), + [anon_sym_value] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_lateinit] = ACTIONS(6598), + [anon_sym_public] = ACTIONS(6598), + [anon_sym_private] = ACTIONS(6598), + [anon_sym_internal] = ACTIONS(6598), + [anon_sym_protected] = ACTIONS(6598), + [anon_sym_tailrec] = ACTIONS(6598), + [anon_sym_operator] = ACTIONS(6598), + [anon_sym_infix] = ACTIONS(6598), + [anon_sym_inline] = ACTIONS(6598), + [anon_sym_external] = ACTIONS(6598), + [sym_property_modifier] = ACTIONS(6598), + [anon_sym_abstract] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_open] = ACTIONS(6598), + [anon_sym_vararg] = ACTIONS(6598), + [anon_sym_noinline] = ACTIONS(6598), + [anon_sym_crossinline] = ACTIONS(6598), + [anon_sym_expect] = ACTIONS(6598), + [anon_sym_actual] = ACTIONS(6598), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6596), + [anon_sym_continue_AT] = ACTIONS(6596), + [anon_sym_break_AT] = ACTIONS(6596), + [anon_sym_this_AT] = ACTIONS(6596), + [anon_sym_super_AT] = ACTIONS(6596), + [sym_real_literal] = ACTIONS(6596), + [sym_integer_literal] = ACTIONS(6598), + [sym_hex_literal] = ACTIONS(6596), + [sym_bin_literal] = ACTIONS(6596), + [anon_sym_true] = ACTIONS(6598), + [anon_sym_false] = ACTIONS(6598), + [anon_sym_SQUOTE] = ACTIONS(6596), + [sym__backtick_identifier] = ACTIONS(6596), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6596), }, - [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), + [3027] = { + [sym_enum_class_body] = STATE(3111), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [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), + [3028] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = 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_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_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), - [sym__backtick_identifier] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [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), }, - [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), - }, - [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), - }, - [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), + [3029] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [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_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4721), + [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(4721), + [anon_sym_QMARK_COLON] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4721), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_BANGin] = ACTIONS(4721), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4721), + [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(4721), + [anon_sym_continue_AT] = ACTIONS(4721), + [anon_sym_break_AT] = ACTIONS(4721), + [anon_sym_this_AT] = ACTIONS(4721), + [anon_sym_super_AT] = ACTIONS(4721), + [sym_real_literal] = ACTIONS(4721), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4721), + [sym_bin_literal] = ACTIONS(4721), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4721), + [sym__backtick_identifier] = ACTIONS(4721), + [sym__automatic_semicolon] = ACTIONS(4721), + [sym_safe_nav] = ACTIONS(4721), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4721), }, - [3058] = { + [3030] = { [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4765), - [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), [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_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), [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_SEMI] = ACTIONS(4764), [anon_sym_get] = ACTIONS(4762), [anon_sym_set] = ACTIONS(4762), [anon_sym_this] = ACTIONS(4762), @@ -366897,10 +361131,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), [anon_sym_null] = ACTIONS(4762), [anon_sym_if] = ACTIONS(4762), [anon_sym_else] = ACTIONS(4762), @@ -366910,763 +361144,681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), [anon_sym_BANG_EQ] = ACTIONS(4762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4765), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), [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_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), [anon_sym_is] = ACTIONS(4762), - [anon_sym_BANGis] = ACTIONS(4765), + [anon_sym_BANGis] = ACTIONS(4764), [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_as_QMARK] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), [anon_sym_BANG] = ACTIONS(4762), - [anon_sym_BANG_BANG] = ACTIONS(4765), + [anon_sym_BANG_BANG] = ACTIONS(4764), [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), + [anon_sym_return_AT] = ACTIONS(4764), + [anon_sym_continue_AT] = ACTIONS(4764), + [anon_sym_break_AT] = ACTIONS(4764), + [anon_sym_this_AT] = ACTIONS(4764), + [anon_sym_super_AT] = ACTIONS(4764), + [anon_sym_AT2] = ACTIONS(6603), + [sym_real_literal] = ACTIONS(4764), [sym_integer_literal] = ACTIONS(4762), - [sym_hex_literal] = ACTIONS(4765), - [sym_bin_literal] = ACTIONS(4765), + [sym_hex_literal] = ACTIONS(4764), + [sym_bin_literal] = ACTIONS(4764), [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), + [anon_sym_SQUOTE] = ACTIONS(4764), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), [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), + [sym__string_start] = ACTIONS(4764), }, - [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), + [3031] = { + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4173), + [sym__quest] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4171), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4171), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), }, - [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), + [3032] = { + [aux_sym_type_constraints_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [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(6581), + [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_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(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), + [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(4218), + [sym__string_start] = ACTIONS(4441), }, - [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), - [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), + [3033] = { + [sym__alpha_identifier] = ACTIONS(4643), + [anon_sym_AT] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(4645), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_LT] = ACTIONS(4643), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_where] = ACTIONS(4643), + [anon_sym_object] = ACTIONS(4643), + [anon_sym_fun] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_get] = ACTIONS(4643), + [anon_sym_set] = ACTIONS(4643), + [anon_sym_this] = ACTIONS(4643), + [anon_sym_super] = ACTIONS(4643), + [anon_sym_STAR] = ACTIONS(4643), + [sym_label] = ACTIONS(4643), + [anon_sym_in] = ACTIONS(4643), + [anon_sym_DOT_DOT] = ACTIONS(4645), + [anon_sym_QMARK_COLON] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_null] = ACTIONS(4643), + [anon_sym_if] = ACTIONS(4643), + [anon_sym_else] = ACTIONS(4643), + [anon_sym_when] = ACTIONS(4643), + [anon_sym_try] = ACTIONS(4643), + [anon_sym_throw] = ACTIONS(4643), + [anon_sym_return] = ACTIONS(4643), + [anon_sym_continue] = ACTIONS(4643), + [anon_sym_break] = ACTIONS(4643), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PLUS_EQ] = ACTIONS(4645), + [anon_sym_DASH_EQ] = ACTIONS(4645), + [anon_sym_STAR_EQ] = ACTIONS(4645), + [anon_sym_SLASH_EQ] = ACTIONS(4645), + [anon_sym_PERCENT_EQ] = ACTIONS(4645), + [anon_sym_BANG_EQ] = ACTIONS(4643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4645), + [anon_sym_EQ_EQ] = ACTIONS(4643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4645), + [anon_sym_LT_EQ] = ACTIONS(4645), + [anon_sym_GT_EQ] = ACTIONS(4645), + [anon_sym_BANGin] = ACTIONS(4645), + [anon_sym_is] = ACTIONS(4643), + [anon_sym_BANGis] = ACTIONS(4645), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_as_QMARK] = ACTIONS(4645), + [anon_sym_PLUS_PLUS] = ACTIONS(4645), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_BANG] = ACTIONS(4643), + [anon_sym_BANG_BANG] = ACTIONS(4645), + [anon_sym_data] = ACTIONS(4643), + [anon_sym_inner] = ACTIONS(4643), + [anon_sym_value] = ACTIONS(4643), + [anon_sym_expect] = ACTIONS(4643), + [anon_sym_actual] = ACTIONS(4643), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4645), + [anon_sym_continue_AT] = ACTIONS(4645), + [anon_sym_break_AT] = ACTIONS(4645), + [anon_sym_this_AT] = ACTIONS(4645), + [anon_sym_super_AT] = ACTIONS(4645), + [sym_real_literal] = ACTIONS(4645), + [sym_integer_literal] = ACTIONS(4643), + [sym_hex_literal] = ACTIONS(4645), + [sym_bin_literal] = ACTIONS(4645), + [anon_sym_true] = ACTIONS(4643), + [anon_sym_false] = ACTIONS(4643), + [anon_sym_SQUOTE] = ACTIONS(4645), + [sym__backtick_identifier] = ACTIONS(4645), + [sym__automatic_semicolon] = ACTIONS(4645), + [sym_safe_nav] = ACTIONS(4645), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4645), }, - [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), + [3034] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_by] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_object] = ACTIONS(4672), + [anon_sym_fun] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_this] = ACTIONS(4672), + [anon_sym_super] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_when] = ACTIONS(4672), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_throw] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4674), + [anon_sym_continue_AT] = ACTIONS(4674), + [anon_sym_break_AT] = ACTIONS(4674), + [anon_sym_this_AT] = ACTIONS(4674), + [anon_sym_super_AT] = ACTIONS(4674), + [sym_real_literal] = ACTIONS(4674), + [sym_integer_literal] = ACTIONS(4672), + [sym_hex_literal] = ACTIONS(4674), + [sym_bin_literal] = ACTIONS(4674), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4674), }, - [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), - [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), + [3035] = { + [sym_class_body] = STATE(3111), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [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), + [3036] = { + [sym__alpha_identifier] = ACTIONS(4748), + [anon_sym_AT] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [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_fun] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(4751), + [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(4751), + [anon_sym_QMARK_COLON] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_BANGin] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4748), + [anon_sym_BANGis] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_BANG] = ACTIONS(4748), + [anon_sym_BANG_BANG] = ACTIONS(4751), + [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(4751), + [anon_sym_continue_AT] = ACTIONS(4751), + [anon_sym_break_AT] = ACTIONS(4751), + [anon_sym_this_AT] = ACTIONS(4751), + [anon_sym_super_AT] = ACTIONS(4751), + [sym_real_literal] = ACTIONS(4751), + [sym_integer_literal] = ACTIONS(4748), + [sym_hex_literal] = ACTIONS(4751), + [sym_bin_literal] = ACTIONS(4751), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_SQUOTE] = ACTIONS(4751), + [sym__backtick_identifier] = ACTIONS(4751), + [sym__automatic_semicolon] = ACTIONS(4751), + [sym_safe_nav] = ACTIONS(4751), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4751), }, - [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), + [3037] = { + [sym_enum_class_body] = STATE(3098), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), }, - [3067] = { - [sym_function_body] = STATE(3132), - [sym__block] = STATE(3082), + [3038] = { [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_DOT] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4309), [anon_sym_RBRACE] = ACTIONS(4309), [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4307), - [anon_sym_GT] = ACTIONS(4307), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_by] = 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), + [anon_sym_AMP] = ACTIONS(4309), + [sym__quest] = ACTIONS(4309), + [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), @@ -367677,32 +361829,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -367720,5114 +361878,5305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [3039] = { + [sym_enum_class_body] = STATE(3093), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_object] = ACTIONS(4635), + [anon_sym_fun] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_this] = ACTIONS(4635), + [anon_sym_super] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_null] = ACTIONS(4635), + [anon_sym_if] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_when] = ACTIONS(4635), + [anon_sym_try] = ACTIONS(4635), + [anon_sym_throw] = ACTIONS(4635), + [anon_sym_return] = ACTIONS(4635), + [anon_sym_continue] = ACTIONS(4635), + [anon_sym_break] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4637), + [anon_sym_continue_AT] = ACTIONS(4637), + [anon_sym_break_AT] = ACTIONS(4637), + [anon_sym_this_AT] = ACTIONS(4637), + [anon_sym_super_AT] = ACTIONS(4637), + [sym_real_literal] = ACTIONS(4637), + [sym_integer_literal] = ACTIONS(4635), + [sym_hex_literal] = ACTIONS(4637), + [sym_bin_literal] = ACTIONS(4637), + [anon_sym_true] = ACTIONS(4635), + [anon_sym_false] = ACTIONS(4635), + [anon_sym_SQUOTE] = ACTIONS(4637), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4637), }, - [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), + [3040] = { + [sym_enum_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = 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_fun] = 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), }, - [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), + [3041] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_object] = ACTIONS(4694), + [anon_sym_fun] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_this] = ACTIONS(4694), + [anon_sym_super] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4694), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_if] = ACTIONS(4694), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_when] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_throw] = ACTIONS(4694), + [anon_sym_return] = ACTIONS(4694), + [anon_sym_continue] = ACTIONS(4694), + [anon_sym_break] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4696), + [anon_sym_continue_AT] = ACTIONS(4696), + [anon_sym_break_AT] = ACTIONS(4696), + [anon_sym_this_AT] = ACTIONS(4696), + [anon_sym_super_AT] = ACTIONS(4696), + [sym_real_literal] = ACTIONS(4696), + [sym_integer_literal] = ACTIONS(4694), + [sym_hex_literal] = ACTIONS(4696), + [sym_bin_literal] = ACTIONS(4696), + [anon_sym_true] = ACTIONS(4694), + [anon_sym_false] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4696), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4696), + }, + [3042] = { + [sym_function_body] = STATE(3117), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [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_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), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), }, - [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), + [3043] = { + [aux_sym_type_constraints_repeat1] = STATE(3043), + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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(6607), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = ACTIONS(4453), + [anon_sym_object] = ACTIONS(4453), + [anon_sym_fun] = 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), + }, + [3044] = { + [aux_sym_nullable_type_repeat1] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_RBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_RPAREN] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [sym__quest] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4269), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(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__backtick_identifier] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4972), - }, - [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), - [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), }, - [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), - [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), - }, - [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), - }, - [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), - }, - [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), + [3045] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_RBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(6612), + [sym__quest] = ACTIONS(4222), + [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), - [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__backtick_identifier] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), - }, - [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), + [3046] = { + [sym_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4916), }, - [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), + [3047] = { + [aux_sym_nullable_type_repeat1] = STATE(3047), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [sym__quest] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_label] = ACTIONS(4236), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_while] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), + [3048] = { + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, - [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), + [3049] = { + [aux_sym_nullable_type_repeat1] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_RBRACK] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4323), + [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_COMMA] = ACTIONS(4325), + [anon_sym_RPAREN] = ACTIONS(4325), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_GT] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [sym__quest] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_DASH_GT] = ACTIONS(4325), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4323), + [anon_sym_while] = ACTIONS(4323), + [anon_sym_DOT_DOT] = ACTIONS(4325), + [anon_sym_QMARK_COLON] = ACTIONS(4325), + [anon_sym_AMP_AMP] = ACTIONS(4325), + [anon_sym_PIPE_PIPE] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4323), + [anon_sym_COLON_COLON] = ACTIONS(4325), + [anon_sym_PLUS_EQ] = ACTIONS(4325), + [anon_sym_DASH_EQ] = ACTIONS(4325), + [anon_sym_STAR_EQ] = ACTIONS(4325), + [anon_sym_SLASH_EQ] = ACTIONS(4325), + [anon_sym_PERCENT_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), + [anon_sym_LT_EQ] = ACTIONS(4325), + [anon_sym_GT_EQ] = ACTIONS(4325), + [anon_sym_BANGin] = ACTIONS(4325), + [anon_sym_is] = ACTIONS(4323), + [anon_sym_BANGis] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4325), + [anon_sym_suspend] = ACTIONS(4323), + [anon_sym_sealed] = ACTIONS(4323), + [anon_sym_annotation] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4323), + [anon_sym_inner] = ACTIONS(4323), + [anon_sym_value] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_lateinit] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_internal] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_tailrec] = ACTIONS(4323), + [anon_sym_operator] = ACTIONS(4323), + [anon_sym_infix] = ACTIONS(4323), + [anon_sym_inline] = ACTIONS(4323), + [anon_sym_external] = ACTIONS(4323), + [sym_property_modifier] = ACTIONS(4323), + [anon_sym_abstract] = ACTIONS(4323), + [anon_sym_final] = ACTIONS(4323), + [anon_sym_open] = ACTIONS(4323), + [anon_sym_vararg] = ACTIONS(4323), + [anon_sym_noinline] = ACTIONS(4323), + [anon_sym_crossinline] = ACTIONS(4323), + [anon_sym_expect] = ACTIONS(4323), + [anon_sym_actual] = ACTIONS(4323), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4325), + [sym_safe_nav] = ACTIONS(4325), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5045), - }, - [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), - }, - [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), }, - [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), + [3050] = { + [sym__alpha_identifier] = ACTIONS(4647), + [anon_sym_AT] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [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_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_where] = ACTIONS(4647), + [anon_sym_object] = ACTIONS(4647), + [anon_sym_fun] = 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_data] = ACTIONS(4647), + [anon_sym_inner] = ACTIONS(4647), + [anon_sym_value] = 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), }, - [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), + [3051] = { + [sym_class_body] = STATE(3233), + [sym__alpha_identifier] = ACTIONS(4621), + [anon_sym_AT] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_where] = ACTIONS(4621), + [anon_sym_object] = ACTIONS(4621), + [anon_sym_fun] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_get] = ACTIONS(4621), + [anon_sym_set] = ACTIONS(4621), + [anon_sym_this] = ACTIONS(4621), + [anon_sym_super] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4621), + [sym_label] = ACTIONS(4621), + [anon_sym_in] = ACTIONS(4621), + [anon_sym_DOT_DOT] = ACTIONS(4623), + [anon_sym_QMARK_COLON] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_null] = ACTIONS(4621), + [anon_sym_if] = ACTIONS(4621), + [anon_sym_else] = ACTIONS(4621), + [anon_sym_when] = ACTIONS(4621), + [anon_sym_try] = ACTIONS(4621), + [anon_sym_throw] = ACTIONS(4621), + [anon_sym_return] = ACTIONS(4621), + [anon_sym_continue] = ACTIONS(4621), + [anon_sym_break] = ACTIONS(4621), + [anon_sym_COLON_COLON] = ACTIONS(4623), + [anon_sym_PLUS_EQ] = ACTIONS(4623), + [anon_sym_DASH_EQ] = ACTIONS(4623), + [anon_sym_STAR_EQ] = ACTIONS(4623), + [anon_sym_SLASH_EQ] = ACTIONS(4623), + [anon_sym_PERCENT_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_BANGin] = ACTIONS(4623), + [anon_sym_is] = ACTIONS(4621), + [anon_sym_BANGis] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_as_QMARK] = ACTIONS(4623), + [anon_sym_PLUS_PLUS] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4621), + [anon_sym_BANG_BANG] = ACTIONS(4623), + [anon_sym_data] = ACTIONS(4621), + [anon_sym_inner] = ACTIONS(4621), + [anon_sym_value] = ACTIONS(4621), + [anon_sym_expect] = ACTIONS(4621), + [anon_sym_actual] = ACTIONS(4621), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4623), + [anon_sym_continue_AT] = ACTIONS(4623), + [anon_sym_break_AT] = ACTIONS(4623), + [anon_sym_this_AT] = ACTIONS(4623), + [anon_sym_super_AT] = ACTIONS(4623), + [sym_real_literal] = ACTIONS(4623), + [sym_integer_literal] = ACTIONS(4621), + [sym_hex_literal] = ACTIONS(4623), + [sym_bin_literal] = ACTIONS(4623), + [anon_sym_true] = ACTIONS(4621), + [anon_sym_false] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4623), + [sym__backtick_identifier] = ACTIONS(4623), + [sym__automatic_semicolon] = ACTIONS(4623), + [sym_safe_nav] = ACTIONS(4623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4623), }, - [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), + [3052] = { + [sym_annotated_lambda] = STATE(3890), + [sym_lambda_literal] = STATE(3865), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4820), - }, - [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), - }, - [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), }, - [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), + [3053] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2987), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), + [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(6571), + [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_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(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), + [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(5069), + [sym__string_start] = ACTIONS(4686), }, - [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), + [3054] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3001), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), }, - [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), + [3055] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4581), + [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_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(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), + [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_L] = ACTIONS(6617), + [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(4820), - }, - [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), - }, - [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), + [sym__string_start] = ACTIONS(4583), }, - [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), + [3056] = { + [sym_annotated_lambda] = STATE(3957), + [sym_lambda_literal] = STATE(3865), + [sym_annotation] = STATE(8354), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8354), + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), - }, - [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(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), + [3057] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [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_by] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_object] = ACTIONS(4714), + [anon_sym_fun] = 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), }, - [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), + [3058] = { + [sym_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), }, - [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), + [3059] = { + [sym_class_body] = STATE(3252), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), }, - [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), + [3060] = { + [sym_type_constraints] = STATE(3341), + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [3061] = { + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3062] = { + [sym__alpha_identifier] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_RBRACK] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_as] = ACTIONS(4371), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_constructor] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4371), + [anon_sym_where] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_get] = ACTIONS(4371), + [anon_sym_set] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4371), + [anon_sym_DASH_GT] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4371), + [anon_sym_while] = ACTIONS(4371), + [anon_sym_DOT_DOT] = ACTIONS(4373), + [anon_sym_QMARK_COLON] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_PIPE_PIPE] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_PLUS_EQ] = ACTIONS(4373), + [anon_sym_DASH_EQ] = ACTIONS(4373), + [anon_sym_STAR_EQ] = ACTIONS(4373), + [anon_sym_SLASH_EQ] = ACTIONS(4373), + [anon_sym_PERCENT_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), + [anon_sym_LT_EQ] = ACTIONS(4373), + [anon_sym_GT_EQ] = ACTIONS(4373), + [anon_sym_BANGin] = ACTIONS(4373), + [anon_sym_is] = ACTIONS(4371), + [anon_sym_BANGis] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4371), + [anon_sym_sealed] = ACTIONS(4371), + [anon_sym_annotation] = ACTIONS(4371), + [anon_sym_data] = ACTIONS(4371), + [anon_sym_inner] = ACTIONS(4371), + [anon_sym_value] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_lateinit] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_internal] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_tailrec] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_infix] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym_external] = ACTIONS(4371), + [sym_property_modifier] = ACTIONS(4371), + [anon_sym_abstract] = ACTIONS(4371), + [anon_sym_final] = ACTIONS(4371), + [anon_sym_open] = ACTIONS(4371), + [anon_sym_vararg] = ACTIONS(4371), + [anon_sym_noinline] = ACTIONS(4371), + [anon_sym_crossinline] = ACTIONS(4371), + [anon_sym_expect] = ACTIONS(4371), + [anon_sym_actual] = ACTIONS(4371), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4373), + [sym_safe_nav] = ACTIONS(4373), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3063] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [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_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), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [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), }, - [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), + [3064] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6619), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [3065] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_DOT] = ACTIONS(4870), + [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_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(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), + [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(4976), + [sym__string_start] = ACTIONS(4872), }, - [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), + [3066] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_DOT] = ACTIONS(4866), + [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_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(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), + [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(5041), + [sym__string_start] = ACTIONS(4868), }, - [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), + [3067] = { + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_object] = ACTIONS(4020), + [anon_sym_fun] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_this] = ACTIONS(4020), + [anon_sym_super] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4020), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_when] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4022), + [anon_sym_continue_AT] = ACTIONS(4022), + [anon_sym_break_AT] = ACTIONS(4022), + [anon_sym_this_AT] = ACTIONS(4022), + [anon_sym_super_AT] = ACTIONS(4022), + [sym_real_literal] = ACTIONS(4022), + [sym_integer_literal] = ACTIONS(4020), + [sym_hex_literal] = ACTIONS(4022), + [sym_bin_literal] = ACTIONS(4022), + [anon_sym_true] = ACTIONS(4020), + [anon_sym_false] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4022), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4022), + }, + [3068] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6623), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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), + [3069] = { + [sym_class_body] = STATE(3446), + [sym_type_constraints] = STATE(3354), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_DASH_GT] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_while] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3070] = { + [sym_catch_block] = STATE(3355), + [sym_finally_block] = STATE(3952), + [aux_sym_try_expression_repeat1] = STATE(3355), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_catch] = ACTIONS(6627), + [anon_sym_finally] = ACTIONS(6629), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5087), }, - [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), + [3071] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_fun] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_super] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3135), + [anon_sym_continue_AT] = ACTIONS(3135), + [anon_sym_break_AT] = ACTIONS(3135), + [anon_sym_this_AT] = ACTIONS(3135), + [anon_sym_super_AT] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [sym_hex_literal] = ACTIONS(3135), + [sym_bin_literal] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3135), + }, + [3072] = { + [sym_type_constraints] = STATE(3343), + [sym_enum_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_RBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_while] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4441), }, - [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), + [3073] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [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_object] = ACTIONS(4944), + [anon_sym_fun] = 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), }, - [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), - [sym__backtick_identifier] = ACTIONS(4357), - [sym_safe_nav] = ACTIONS(4357), - [sym_multiline_comment] = ACTIONS(3), + [3074] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_object] = ACTIONS(4810), + [anon_sym_fun] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_this] = ACTIONS(4810), + [anon_sym_super] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_when] = ACTIONS(4810), + [anon_sym_try] = ACTIONS(4810), + [anon_sym_throw] = ACTIONS(4810), + [anon_sym_return] = ACTIONS(4810), + [anon_sym_continue] = ACTIONS(4810), + [anon_sym_break] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4812), + [anon_sym_continue_AT] = ACTIONS(4812), + [anon_sym_break_AT] = ACTIONS(4812), + [anon_sym_this_AT] = ACTIONS(4812), + [anon_sym_super_AT] = ACTIONS(4812), + [sym_real_literal] = ACTIONS(4812), + [sym_integer_literal] = ACTIONS(4810), + [sym_hex_literal] = ACTIONS(4812), + [sym_bin_literal] = ACTIONS(4812), + [anon_sym_true] = ACTIONS(4810), + [anon_sym_false] = ACTIONS(4810), + [anon_sym_SQUOTE] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4812), }, - [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), + [3075] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_object] = ACTIONS(4994), + [anon_sym_fun] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_this] = ACTIONS(4994), + [anon_sym_super] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_when] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4994), + [anon_sym_throw] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4994), + [anon_sym_continue] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(6631), + [anon_sym_PLUS_EQ] = ACTIONS(5011), + [anon_sym_DASH_EQ] = ACTIONS(5011), + [anon_sym_STAR_EQ] = ACTIONS(5011), + [anon_sym_SLASH_EQ] = ACTIONS(5011), + [anon_sym_PERCENT_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4996), + [anon_sym_continue_AT] = ACTIONS(4996), + [anon_sym_break_AT] = ACTIONS(4996), + [anon_sym_this_AT] = ACTIONS(4996), + [anon_sym_super_AT] = ACTIONS(4996), + [sym_real_literal] = ACTIONS(4996), + [sym_integer_literal] = ACTIONS(4994), + [sym_hex_literal] = ACTIONS(4996), + [sym_bin_literal] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4994), + [anon_sym_false] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4996), }, - [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), + [3076] = { + [sym_class_body] = STATE(3453), + [sym_type_constraints] = STATE(3342), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_RBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_while] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [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), + [3077] = { + [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), + [anon_sym_AMP] = ACTIONS(6634), + [sym__quest] = ACTIONS(4224), + [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(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), + [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(4932), + [sym__string_start] = ACTIONS(4224), }, - [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), + [3078] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_RBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4405), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_while] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_catch] = ACTIONS(4403), + [anon_sym_finally] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3079] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [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(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), }, - [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), + [3080] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4806), + [anon_sym_where] = ACTIONS(4806), + [anon_sym_object] = ACTIONS(4806), + [anon_sym_fun] = ACTIONS(4806), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_get] = ACTIONS(4806), + [anon_sym_set] = ACTIONS(4806), + [anon_sym_this] = ACTIONS(4806), + [anon_sym_super] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [sym_label] = ACTIONS(4806), + [anon_sym_in] = ACTIONS(4806), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_QMARK_COLON] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4806), + [anon_sym_if] = ACTIONS(4806), + [anon_sym_else] = ACTIONS(4806), + [anon_sym_when] = ACTIONS(4806), + [anon_sym_try] = ACTIONS(4806), + [anon_sym_throw] = ACTIONS(4806), + [anon_sym_return] = ACTIONS(4806), + [anon_sym_continue] = ACTIONS(4806), + [anon_sym_break] = ACTIONS(4806), + [anon_sym_COLON_COLON] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4808), + [anon_sym_DASH_EQ] = ACTIONS(4808), + [anon_sym_STAR_EQ] = ACTIONS(4808), + [anon_sym_SLASH_EQ] = ACTIONS(4808), + [anon_sym_PERCENT_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4808), + [anon_sym_BANGin] = ACTIONS(4808), + [anon_sym_is] = ACTIONS(4806), + [anon_sym_BANGis] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_as_QMARK] = ACTIONS(4808), + [anon_sym_PLUS_PLUS] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4806), + [anon_sym_BANG_BANG] = ACTIONS(4808), + [anon_sym_data] = ACTIONS(4806), + [anon_sym_inner] = ACTIONS(4806), + [anon_sym_value] = ACTIONS(4806), + [anon_sym_expect] = ACTIONS(4806), + [anon_sym_actual] = ACTIONS(4806), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4808), + [anon_sym_continue_AT] = ACTIONS(4808), + [anon_sym_break_AT] = ACTIONS(4808), + [anon_sym_this_AT] = ACTIONS(4808), + [anon_sym_super_AT] = ACTIONS(4808), + [sym_real_literal] = ACTIONS(4808), + [sym_integer_literal] = ACTIONS(4806), + [sym_hex_literal] = ACTIONS(4808), + [sym_bin_literal] = ACTIONS(4808), + [anon_sym_true] = ACTIONS(4806), + [anon_sym_false] = ACTIONS(4806), + [anon_sym_SQUOTE] = ACTIONS(4808), + [sym__backtick_identifier] = ACTIONS(4808), + [sym__automatic_semicolon] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4808), + }, + [3081] = { + [aux_sym_nullable_type_repeat1] = STATE(3081), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [sym__quest] = ACTIONS(6636), + [anon_sym_STAR] = ACTIONS(4236), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), + }, + [3082] = { + [aux_sym_nullable_type_repeat1] = STATE(3089), + [sym__alpha_identifier] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_COMMA] = ACTIONS(4325), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_object] = ACTIONS(4323), + [anon_sym_fun] = ACTIONS(4323), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [anon_sym_this] = ACTIONS(4323), + [anon_sym_super] = ACTIONS(4323), + [sym__quest] = ACTIONS(6639), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4323), + [anon_sym_if] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4323), + [anon_sym_when] = ACTIONS(4323), + [anon_sym_try] = ACTIONS(4323), + [anon_sym_throw] = ACTIONS(4323), + [anon_sym_return] = ACTIONS(4323), + [anon_sym_continue] = ACTIONS(4323), + [anon_sym_break] = ACTIONS(4323), + [anon_sym_COLON_COLON] = ACTIONS(4325), + [anon_sym_BANGin] = ACTIONS(4325), + [anon_sym_is] = ACTIONS(4323), + [anon_sym_BANGis] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4323), + [anon_sym_sealed] = ACTIONS(4323), + [anon_sym_annotation] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4323), + [anon_sym_inner] = ACTIONS(4323), + [anon_sym_value] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_lateinit] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_internal] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_tailrec] = ACTIONS(4323), + [anon_sym_operator] = ACTIONS(4323), + [anon_sym_infix] = ACTIONS(4323), + [anon_sym_inline] = ACTIONS(4323), + [anon_sym_external] = ACTIONS(4323), + [sym_property_modifier] = ACTIONS(4323), + [anon_sym_abstract] = ACTIONS(4323), + [anon_sym_final] = ACTIONS(4323), + [anon_sym_open] = ACTIONS(4323), + [anon_sym_vararg] = ACTIONS(4323), + [anon_sym_noinline] = ACTIONS(4323), + [anon_sym_crossinline] = ACTIONS(4323), + [anon_sym_expect] = ACTIONS(4323), + [anon_sym_actual] = ACTIONS(4323), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4325), + [anon_sym_continue_AT] = ACTIONS(4325), + [anon_sym_break_AT] = ACTIONS(4325), + [anon_sym_this_AT] = ACTIONS(4325), + [anon_sym_super_AT] = ACTIONS(4325), + [sym_real_literal] = ACTIONS(4325), + [sym_integer_literal] = ACTIONS(4323), + [sym_hex_literal] = ACTIONS(4325), + [sym_bin_literal] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4323), + [anon_sym_false] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4325), + [sym__backtick_identifier] = ACTIONS(4325), + [sym__automatic_semicolon] = ACTIONS(4325), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4325), + }, + [3083] = { + [aux_sym_nullable_type_repeat1] = STATE(3089), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [sym__quest] = ACTIONS(6639), + [anon_sym_STAR] = ACTIONS(4269), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [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(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [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(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(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4928), + [sym__string_start] = ACTIONS(4269), }, - [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(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), + [3084] = { + [sym__alpha_identifier] = ACTIONS(4200), + [anon_sym_AT] = ACTIONS(4202), + [anon_sym_LBRACK] = ACTIONS(4202), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_as] = ACTIONS(4200), + [anon_sym_EQ] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_LPAREN] = ACTIONS(4202), + [anon_sym_COMMA] = ACTIONS(4202), + [anon_sym_LT] = ACTIONS(4200), + [anon_sym_GT] = ACTIONS(4200), + [anon_sym_where] = ACTIONS(4200), + [anon_sym_object] = ACTIONS(4200), + [anon_sym_fun] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym_get] = ACTIONS(4200), + [anon_sym_set] = ACTIONS(4200), + [anon_sym_this] = ACTIONS(4200), + [anon_sym_super] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4200), + [sym_label] = ACTIONS(4200), + [anon_sym_in] = ACTIONS(4200), + [anon_sym_DOT_DOT] = ACTIONS(4202), + [anon_sym_QMARK_COLON] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_PIPE_PIPE] = ACTIONS(4202), + [anon_sym_null] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_else] = ACTIONS(4200), + [anon_sym_when] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_PLUS_EQ] = ACTIONS(4202), + [anon_sym_DASH_EQ] = ACTIONS(4202), + [anon_sym_STAR_EQ] = ACTIONS(4202), + [anon_sym_SLASH_EQ] = ACTIONS(4202), + [anon_sym_PERCENT_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ] = ACTIONS(4200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ] = ACTIONS(4200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), + [anon_sym_LT_EQ] = ACTIONS(4202), + [anon_sym_GT_EQ] = ACTIONS(4202), + [anon_sym_BANGin] = ACTIONS(4202), + [anon_sym_is] = ACTIONS(4200), + [anon_sym_BANGis] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_SLASH] = ACTIONS(4200), + [anon_sym_PERCENT] = ACTIONS(4200), + [anon_sym_as_QMARK] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_BANG_BANG] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4200), + [anon_sym_inner] = ACTIONS(4200), + [anon_sym_value] = ACTIONS(4200), + [anon_sym_expect] = ACTIONS(4200), + [anon_sym_actual] = ACTIONS(4200), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4202), + [anon_sym_continue_AT] = ACTIONS(4202), + [anon_sym_break_AT] = ACTIONS(4202), + [anon_sym_this_AT] = ACTIONS(4202), + [anon_sym_super_AT] = ACTIONS(4202), + [sym_real_literal] = ACTIONS(4202), + [sym_integer_literal] = ACTIONS(4200), + [sym_hex_literal] = ACTIONS(4202), + [sym_bin_literal] = ACTIONS(4202), + [anon_sym_true] = ACTIONS(4200), + [anon_sym_false] = ACTIONS(4200), + [anon_sym_SQUOTE] = ACTIONS(4202), + [sym__backtick_identifier] = ACTIONS(4202), + [sym__automatic_semicolon] = ACTIONS(4202), + [sym_safe_nav] = ACTIONS(4202), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4202), }, - [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), + [3085] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_RBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4395), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_catch] = ACTIONS(4393), + [anon_sym_finally] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3086] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), + }, + [3087] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [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_object] = ACTIONS(4984), + [anon_sym_fun] = 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), + }, + [3088] = { + [sym_type_constraints] = STATE(3333), + [sym_enum_class_body] = STATE(3550), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_RBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_DASH_GT] = ACTIONS(4377), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + }, + [3089] = { + [aux_sym_nullable_type_repeat1] = STATE(3081), + [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(6641), + [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(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), + [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(1816), + [sym__string_start] = ACTIONS(4206), }, - [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), + [3090] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_as] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_where] = ACTIONS(5013), + [anon_sym_object] = ACTIONS(5013), + [anon_sym_fun] = ACTIONS(5013), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_get] = ACTIONS(5013), + [anon_sym_set] = ACTIONS(5013), + [anon_sym_this] = ACTIONS(5013), + [anon_sym_super] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [sym_label] = ACTIONS(5013), + [anon_sym_in] = ACTIONS(5013), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_QMARK_COLON] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(5013), + [anon_sym_if] = ACTIONS(5013), + [anon_sym_else] = ACTIONS(5013), + [anon_sym_when] = ACTIONS(5013), + [anon_sym_try] = ACTIONS(5013), + [anon_sym_throw] = ACTIONS(5013), + [anon_sym_return] = ACTIONS(5013), + [anon_sym_continue] = ACTIONS(5013), + [anon_sym_break] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(5015), + [anon_sym_PLUS_EQ] = ACTIONS(5015), + [anon_sym_DASH_EQ] = ACTIONS(5015), + [anon_sym_STAR_EQ] = ACTIONS(5015), + [anon_sym_SLASH_EQ] = ACTIONS(5015), + [anon_sym_PERCENT_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_BANGin] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5013), + [anon_sym_BANGis] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5013), + [anon_sym_as_QMARK] = ACTIONS(5015), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_BANG_BANG] = ACTIONS(5015), + [anon_sym_data] = ACTIONS(5013), + [anon_sym_inner] = ACTIONS(5013), + [anon_sym_value] = ACTIONS(5013), + [anon_sym_expect] = ACTIONS(5013), + [anon_sym_actual] = ACTIONS(5013), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5015), + [anon_sym_continue_AT] = ACTIONS(5015), + [anon_sym_break_AT] = ACTIONS(5015), + [anon_sym_this_AT] = ACTIONS(5015), + [anon_sym_super_AT] = ACTIONS(5015), + [sym_real_literal] = ACTIONS(5015), + [sym_integer_literal] = ACTIONS(5013), + [sym_hex_literal] = ACTIONS(5015), + [sym_bin_literal] = ACTIONS(5015), + [anon_sym_true] = ACTIONS(5013), + [anon_sym_false] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5015), + [sym__backtick_identifier] = ACTIONS(5015), + [sym__automatic_semicolon] = ACTIONS(5015), + [sym_safe_nav] = ACTIONS(5015), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5015), }, - [3128] = { + [3091] = { + [sym_class_body] = STATE(3550), + [sym_type_constraints] = STATE(3332), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_RBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_DASH_GT] = ACTIONS(4377), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + }, + [3092] = { + [sym_function_body] = STATE(3087), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_object] = ACTIONS(4385), + [anon_sym_fun] = 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), + }, + [3093] = { + [sym__alpha_identifier] = ACTIONS(5023), + [anon_sym_AT] = ACTIONS(5025), + [anon_sym_LBRACK] = ACTIONS(5025), + [anon_sym_DOT] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5025), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5023), + [anon_sym_GT] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_object] = ACTIONS(5023), + [anon_sym_fun] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(5023), + [anon_sym_set] = ACTIONS(5023), + [anon_sym_this] = ACTIONS(5023), + [anon_sym_super] = ACTIONS(5023), + [anon_sym_STAR] = ACTIONS(5023), + [sym_label] = ACTIONS(5023), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_QMARK_COLON] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_if] = ACTIONS(5023), + [anon_sym_else] = ACTIONS(5023), + [anon_sym_when] = ACTIONS(5023), + [anon_sym_try] = ACTIONS(5023), + [anon_sym_throw] = ACTIONS(5023), + [anon_sym_return] = ACTIONS(5023), + [anon_sym_continue] = ACTIONS(5023), + [anon_sym_break] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(5025), + [anon_sym_PLUS_EQ] = ACTIONS(5025), + [anon_sym_DASH_EQ] = ACTIONS(5025), + [anon_sym_STAR_EQ] = ACTIONS(5025), + [anon_sym_SLASH_EQ] = ACTIONS(5025), + [anon_sym_PERCENT_EQ] = ACTIONS(5025), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), + [anon_sym_LT_EQ] = ACTIONS(5025), + [anon_sym_GT_EQ] = ACTIONS(5025), + [anon_sym_BANGin] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_BANGis] = ACTIONS(5025), + [anon_sym_PLUS] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_as_QMARK] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5023), + [anon_sym_BANG_BANG] = ACTIONS(5025), + [anon_sym_data] = ACTIONS(5023), + [anon_sym_inner] = ACTIONS(5023), + [anon_sym_value] = ACTIONS(5023), + [anon_sym_expect] = ACTIONS(5023), + [anon_sym_actual] = ACTIONS(5023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5025), + [anon_sym_continue_AT] = ACTIONS(5025), + [anon_sym_break_AT] = ACTIONS(5025), + [anon_sym_this_AT] = ACTIONS(5025), + [anon_sym_super_AT] = ACTIONS(5025), + [sym_real_literal] = ACTIONS(5025), + [sym_integer_literal] = ACTIONS(5023), + [sym_hex_literal] = ACTIONS(5025), + [sym_bin_literal] = ACTIONS(5025), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [anon_sym_SQUOTE] = ACTIONS(5025), + [sym__backtick_identifier] = ACTIONS(5025), + [sym__automatic_semicolon] = ACTIONS(5025), + [sym_safe_nav] = ACTIONS(5025), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5025), + }, + [3094] = { + [sym_type_constraints] = STATE(3331), + [sym_enum_class_body] = STATE(3592), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_RBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_DASH_GT] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_while] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + }, + [3095] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_object] = ACTIONS(4802), + [anon_sym_fun] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_this] = ACTIONS(4802), + [anon_sym_super] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4802), + [anon_sym_if] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4802), + [anon_sym_throw] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_continue] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4802), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4804), + [anon_sym_continue_AT] = ACTIONS(4804), + [anon_sym_break_AT] = ACTIONS(4804), + [anon_sym_this_AT] = ACTIONS(4804), + [anon_sym_super_AT] = ACTIONS(4804), + [sym_real_literal] = ACTIONS(4804), + [sym_integer_literal] = ACTIONS(4802), + [sym_hex_literal] = ACTIONS(4804), + [sym_bin_literal] = ACTIONS(4804), + [anon_sym_true] = ACTIONS(4802), + [anon_sym_false] = ACTIONS(4802), + [anon_sym_SQUOTE] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4804), + }, + [3096] = { + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [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_object] = ACTIONS(4385), + [anon_sym_fun] = 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), + }, + [3097] = { + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_object] = ACTIONS(3422), + [anon_sym_fun] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_this] = ACTIONS(3422), + [anon_sym_super] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_when] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_data] = ACTIONS(3422), + [anon_sym_inner] = ACTIONS(3422), + [anon_sym_value] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3422), + [anon_sym_actual] = ACTIONS(3422), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3424), + [anon_sym_continue_AT] = ACTIONS(3424), + [anon_sym_break_AT] = ACTIONS(3424), + [anon_sym_this_AT] = ACTIONS(3424), + [anon_sym_super_AT] = ACTIONS(3424), + [sym_real_literal] = ACTIONS(3424), + [sym_integer_literal] = ACTIONS(3422), + [sym_hex_literal] = ACTIONS(3424), + [sym_bin_literal] = ACTIONS(3424), + [anon_sym_true] = ACTIONS(3422), + [anon_sym_false] = ACTIONS(3422), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3424), + }, + [3098] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_object] = ACTIONS(4635), + [anon_sym_fun] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_this] = ACTIONS(4635), + [anon_sym_super] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4635), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_null] = ACTIONS(4635), + [anon_sym_if] = ACTIONS(4635), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_when] = ACTIONS(4635), + [anon_sym_try] = ACTIONS(4635), + [anon_sym_throw] = ACTIONS(4635), + [anon_sym_return] = ACTIONS(4635), + [anon_sym_continue] = ACTIONS(4635), + [anon_sym_break] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4637), + [anon_sym_continue_AT] = ACTIONS(4637), + [anon_sym_break_AT] = ACTIONS(4637), + [anon_sym_this_AT] = ACTIONS(4637), + [anon_sym_super_AT] = ACTIONS(4637), + [sym_real_literal] = ACTIONS(4637), + [sym_integer_literal] = ACTIONS(4635), + [sym_hex_literal] = ACTIONS(4637), + [sym_bin_literal] = ACTIONS(4637), + [anon_sym_true] = ACTIONS(4635), + [anon_sym_false] = ACTIONS(4635), + [anon_sym_SQUOTE] = ACTIONS(4637), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4637), + }, + [3099] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), + }, + [3100] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3101] = { [sym__alpha_identifier] = ACTIONS(4798), [anon_sym_AT] = ACTIONS(4800), [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4798), [anon_sym_as] = ACTIONS(4798), [anon_sym_EQ] = ACTIONS(4798), [anon_sym_LBRACE] = ACTIONS(4800), @@ -372839,7 +367188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -372909,945 +367257,776 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4800), }, - [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), + [3102] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, - [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), + [3103] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), }, - [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), + [3104] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_object] = ACTIONS(4814), + [anon_sym_fun] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_this] = ACTIONS(4814), + [anon_sym_super] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_when] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4814), + [anon_sym_throw] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4814), + [anon_sym_continue] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4816), + [anon_sym_continue_AT] = ACTIONS(4816), + [anon_sym_break_AT] = ACTIONS(4816), + [anon_sym_this_AT] = ACTIONS(4816), + [anon_sym_super_AT] = ACTIONS(4816), + [sym_real_literal] = ACTIONS(4816), + [sym_integer_literal] = ACTIONS(4814), + [sym_hex_literal] = ACTIONS(4816), + [sym_bin_literal] = ACTIONS(4816), + [anon_sym_true] = ACTIONS(4814), + [anon_sym_false] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4816), }, - [3132] = { + [3105] = { + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3106] = { [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_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), [anon_sym_object] = ACTIONS(4275), [anon_sym_fun] = ACTIONS(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_SEMI] = ACTIONS(4281), [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_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), [anon_sym_null] = ACTIONS(4275), [anon_sym_if] = ACTIONS(4275), - [anon_sym_else] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), [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_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), [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_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_BANG_BANG] = ACTIONS(4277), + [anon_sym_BANG_BANG] = ACTIONS(4281), [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), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), [sym_integer_literal] = ACTIONS(4275), - [sym_hex_literal] = ACTIONS(4277), - [sym_bin_literal] = ACTIONS(4277), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), [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_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4277), + [sym__string_start] = ACTIONS(4278), }, - [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), + [3107] = { + [sym_type_constraints] = STATE(3329), + [sym_enum_class_body] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_RBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4509), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4968), - }, - [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), }, - [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), + [3108] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4790), + [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_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(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), + [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(4912), + [sym__string_start] = ACTIONS(4792), }, - [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), + [3109] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4786), + [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_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), }, - [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_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(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), + [3110] = { + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_this] = ACTIONS(1822), + [anon_sym_super] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_null] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_data] = ACTIONS(1822), + [anon_sym_inner] = ACTIONS(1822), + [anon_sym_value] = ACTIONS(1822), + [anon_sym_expect] = ACTIONS(1822), + [anon_sym_actual] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1824), + [anon_sym_continue_AT] = ACTIONS(1824), + [anon_sym_break_AT] = ACTIONS(1824), + [anon_sym_this_AT] = ACTIONS(1824), + [anon_sym_super_AT] = ACTIONS(1824), + [sym_real_literal] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [sym_hex_literal] = ACTIONS(1824), + [sym_bin_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1824), }, - [3140] = { + [3111] = { [sym__alpha_identifier] = ACTIONS(5035), [anon_sym_AT] = ACTIONS(5037), [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), [anon_sym_as] = ACTIONS(5035), [anon_sym_EQ] = ACTIONS(5035), [anon_sym_LBRACE] = ACTIONS(5037), @@ -373859,7 +368038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -373929,1285 +368107,1116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5037), }, - [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), + [3112] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [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_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), }, - [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), + [3113] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5039), + [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_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), }, - [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), + [3114] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [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_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(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), + [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(4876), + [sym__string_start] = ACTIONS(4776), }, - [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), + [3115] = { + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_object] = ACTIONS(4507), + [anon_sym_fun] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_this] = ACTIONS(4507), + [anon_sym_super] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4507), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_null] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_when] = ACTIONS(4507), + [anon_sym_try] = ACTIONS(4507), + [anon_sym_throw] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4509), + [anon_sym_continue_AT] = ACTIONS(4509), + [anon_sym_break_AT] = ACTIONS(4509), + [anon_sym_this_AT] = ACTIONS(4509), + [anon_sym_super_AT] = ACTIONS(4509), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4509), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4509), }, - [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), + [3116] = { + [sym__alpha_identifier] = ACTIONS(4882), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4882), + [anon_sym_object] = ACTIONS(4882), + [anon_sym_fun] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_get] = ACTIONS(4882), + [anon_sym_set] = ACTIONS(4882), + [anon_sym_this] = ACTIONS(4882), + [anon_sym_super] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_QMARK_COLON] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_PIPE_PIPE] = ACTIONS(4884), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_if] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_when] = ACTIONS(4882), + [anon_sym_try] = ACTIONS(4882), + [anon_sym_throw] = ACTIONS(4882), + [anon_sym_return] = ACTIONS(4882), + [anon_sym_continue] = ACTIONS(4882), + [anon_sym_break] = ACTIONS(4882), + [anon_sym_COLON_COLON] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_PERCENT_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4884), + [anon_sym_is] = ACTIONS(4882), + [anon_sym_BANGis] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4882), + [anon_sym_as_QMARK] = ACTIONS(4884), + [anon_sym_PLUS_PLUS] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4884), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4882), + [anon_sym_inner] = ACTIONS(4882), + [anon_sym_value] = ACTIONS(4882), + [anon_sym_expect] = ACTIONS(4882), + [anon_sym_actual] = ACTIONS(4882), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4884), + [anon_sym_continue_AT] = ACTIONS(4884), + [anon_sym_break_AT] = ACTIONS(4884), + [anon_sym_this_AT] = ACTIONS(4884), + [anon_sym_super_AT] = ACTIONS(4884), + [sym_real_literal] = ACTIONS(4884), + [sym_integer_literal] = ACTIONS(4882), + [sym_hex_literal] = ACTIONS(4884), + [sym_bin_literal] = ACTIONS(4884), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [anon_sym_SQUOTE] = ACTIONS(4884), + [sym__backtick_identifier] = ACTIONS(4884), + [sym__automatic_semicolon] = ACTIONS(4884), + [sym_safe_nav] = ACTIONS(4884), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4884), + }, + [3117] = { + [sym__alpha_identifier] = ACTIONS(4890), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_where] = ACTIONS(4890), + [anon_sym_object] = ACTIONS(4890), + [anon_sym_fun] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_get] = ACTIONS(4890), + [anon_sym_set] = ACTIONS(4890), + [anon_sym_this] = ACTIONS(4890), + [anon_sym_super] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4892), + [anon_sym_QMARK_COLON] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_null] = ACTIONS(4890), + [anon_sym_if] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_when] = ACTIONS(4890), + [anon_sym_try] = ACTIONS(4890), + [anon_sym_throw] = ACTIONS(4890), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_continue] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_PERCENT_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_BANGin] = ACTIONS(4892), + [anon_sym_is] = ACTIONS(4890), + [anon_sym_BANGis] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4890), + [anon_sym_as_QMARK] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4890), + [anon_sym_inner] = ACTIONS(4890), + [anon_sym_value] = ACTIONS(4890), + [anon_sym_expect] = ACTIONS(4890), + [anon_sym_actual] = ACTIONS(4890), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4892), + [anon_sym_continue_AT] = ACTIONS(4892), + [anon_sym_break_AT] = ACTIONS(4892), + [anon_sym_this_AT] = ACTIONS(4892), + [anon_sym_super_AT] = ACTIONS(4892), + [sym_real_literal] = ACTIONS(4892), + [sym_integer_literal] = ACTIONS(4890), + [sym_hex_literal] = ACTIONS(4892), + [sym_bin_literal] = ACTIONS(4892), + [anon_sym_true] = ACTIONS(4890), + [anon_sym_false] = ACTIONS(4890), + [anon_sym_SQUOTE] = ACTIONS(4892), + [sym__backtick_identifier] = ACTIONS(4892), + [sym__automatic_semicolon] = ACTIONS(4892), + [sym_safe_nav] = ACTIONS(4892), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4892), + }, + [3118] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6647), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), [anon_sym_object] = ACTIONS(4289), [anon_sym_fun] = ACTIONS(4289), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4295), [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_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), [anon_sym_null] = ACTIONS(4289), [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), [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_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4287), + [anon_sym_BANG_BANG] = ACTIONS(4295), [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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4287), - [sym_bin_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), [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), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4287), + [sym__string_start] = ACTIONS(4292), }, - [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), + [3119] = { + [sym_class_body] = STATE(3386), + [sym_type_constraints] = STATE(3358), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4265), }, - [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(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_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), + [3120] = { + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_RBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_DASH_GT] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), - }, - [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), - [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), - }, - [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), - }, - [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), - }, - [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), + [3121] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_DOT] = ACTIONS(5043), + [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_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(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), + [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(3162), + [sym__string_start] = ACTIONS(5045), }, - [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), + [3122] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3123] = { + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = 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), + [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(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), + [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(4249), + [sym__string_start] = ACTIONS(4305), }, - [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), + [3124] = { + [sym_class_body] = STATE(3377), + [sym_type_constraints] = STATE(3362), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_RBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_DASH_GT] = ACTIONS(4381), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_while] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4872), }, - [3156] = { + [3125] = { [sym__alpha_identifier] = ACTIONS(4898), [anon_sym_AT] = ACTIONS(4900), [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), [anon_sym_as] = ACTIONS(4898), [anon_sym_EQ] = ACTIONS(4898), [anon_sym_LBRACE] = ACTIONS(4900), @@ -375219,7 +369228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -375289,945 +369297,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4900), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [3126] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [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_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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [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(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), - }, - [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), + [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), }, - [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), - }, - [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), + [3127] = { + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_object] = ACTIONS(1734), + [anon_sym_fun] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_this] = ACTIONS(1734), + [anon_sym_super] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1734), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_null] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_data] = ACTIONS(1734), + [anon_sym_inner] = ACTIONS(1734), + [anon_sym_value] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1736), + [anon_sym_continue_AT] = ACTIONS(1736), + [anon_sym_break_AT] = ACTIONS(1736), + [anon_sym_this_AT] = ACTIONS(1736), + [anon_sym_super_AT] = ACTIONS(1736), + [sym_real_literal] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [sym_hex_literal] = ACTIONS(1736), + [sym_bin_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1736), }, - [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), + [3128] = { + [sym_file_annotation] = STATE(3128), + [aux_sym_source_file_repeat1] = STATE(3128), + [ts_builtin_sym_end] = ACTIONS(6651), + [sym__alpha_identifier] = ACTIONS(6653), + [anon_sym_AT] = ACTIONS(6655), + [anon_sym_LBRACK] = ACTIONS(6651), + [anon_sym_package] = ACTIONS(6653), + [anon_sym_import] = ACTIONS(6653), + [anon_sym_typealias] = ACTIONS(6653), + [anon_sym_class] = ACTIONS(6653), + [anon_sym_interface] = ACTIONS(6653), + [anon_sym_enum] = ACTIONS(6653), + [anon_sym_LBRACE] = ACTIONS(6651), + [anon_sym_LPAREN] = ACTIONS(6651), + [anon_sym_val] = ACTIONS(6653), + [anon_sym_var] = ACTIONS(6653), + [anon_sym_object] = ACTIONS(6653), + [anon_sym_fun] = ACTIONS(6653), + [anon_sym_get] = ACTIONS(6653), + [anon_sym_set] = ACTIONS(6653), + [anon_sym_this] = ACTIONS(6653), + [anon_sym_super] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6651), + [sym_label] = ACTIONS(6653), + [anon_sym_for] = ACTIONS(6653), + [anon_sym_while] = ACTIONS(6653), + [anon_sym_do] = ACTIONS(6653), + [anon_sym_null] = ACTIONS(6653), + [anon_sym_if] = ACTIONS(6653), + [anon_sym_when] = ACTIONS(6653), + [anon_sym_try] = ACTIONS(6653), + [anon_sym_throw] = ACTIONS(6653), + [anon_sym_return] = ACTIONS(6653), + [anon_sym_continue] = ACTIONS(6653), + [anon_sym_break] = ACTIONS(6653), + [anon_sym_COLON_COLON] = ACTIONS(6651), + [anon_sym_PLUS] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_BANG] = ACTIONS(6651), + [anon_sym_suspend] = ACTIONS(6653), + [anon_sym_sealed] = ACTIONS(6653), + [anon_sym_annotation] = ACTIONS(6653), + [anon_sym_data] = ACTIONS(6653), + [anon_sym_inner] = ACTIONS(6653), + [anon_sym_value] = ACTIONS(6653), + [anon_sym_override] = ACTIONS(6653), + [anon_sym_lateinit] = ACTIONS(6653), + [anon_sym_public] = ACTIONS(6653), + [anon_sym_private] = ACTIONS(6653), + [anon_sym_internal] = ACTIONS(6653), + [anon_sym_protected] = ACTIONS(6653), + [anon_sym_tailrec] = ACTIONS(6653), + [anon_sym_operator] = ACTIONS(6653), + [anon_sym_infix] = ACTIONS(6653), + [anon_sym_inline] = ACTIONS(6653), + [anon_sym_external] = ACTIONS(6653), + [sym_property_modifier] = ACTIONS(6653), + [anon_sym_abstract] = ACTIONS(6653), + [anon_sym_final] = ACTIONS(6653), + [anon_sym_open] = ACTIONS(6653), + [anon_sym_vararg] = ACTIONS(6653), + [anon_sym_noinline] = ACTIONS(6653), + [anon_sym_crossinline] = ACTIONS(6653), + [anon_sym_expect] = ACTIONS(6653), + [anon_sym_actual] = ACTIONS(6653), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6651), + [anon_sym_continue_AT] = ACTIONS(6651), + [anon_sym_break_AT] = ACTIONS(6651), + [anon_sym_this_AT] = ACTIONS(6651), + [anon_sym_super_AT] = ACTIONS(6651), + [sym_real_literal] = ACTIONS(6651), + [sym_integer_literal] = ACTIONS(6653), + [sym_hex_literal] = ACTIONS(6651), + [sym_bin_literal] = ACTIONS(6651), + [anon_sym_true] = ACTIONS(6653), + [anon_sym_false] = ACTIONS(6653), + [anon_sym_SQUOTE] = ACTIONS(6651), + [sym__backtick_identifier] = ACTIONS(6651), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6651), }, - [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), + [3129] = { + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_object] = ACTIONS(4529), + [anon_sym_fun] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_this] = ACTIONS(4529), + [anon_sym_super] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4529), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_null] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_when] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4529), + [anon_sym_throw] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4529), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4531), + [anon_sym_continue_AT] = ACTIONS(4531), + [anon_sym_break_AT] = ACTIONS(4531), + [anon_sym_this_AT] = ACTIONS(4531), + [anon_sym_super_AT] = ACTIONS(4531), + [sym_real_literal] = ACTIONS(4531), + [sym_integer_literal] = ACTIONS(4529), + [sym_hex_literal] = ACTIONS(4531), + [sym_bin_literal] = ACTIONS(4531), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4531), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4531), }, - [3168] = { + [3130] = { [sym__alpha_identifier] = ACTIONS(4902), [anon_sym_AT] = ACTIONS(4904), [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), [anon_sym_as] = ACTIONS(4902), [anon_sym_EQ] = ACTIONS(4902), [anon_sym_LBRACE] = ACTIONS(4904), @@ -376239,7 +369653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -376309,4952 +369722,2487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4904), }, - [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), - }, - [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), - }, - [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), - [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), + [3131] = { + [sym_function_body] = STATE(3538), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_RBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [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_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), - [sym__string_start] = ACTIONS(4908), }, - [3172] = { - [aux_sym_type_constraints_repeat1] = STATE(3209), - [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(4339), - [anon_sym_LBRACE] = ACTIONS(4341), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_LPAREN] = 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), - [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), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4341), - [sym_safe_nav] = ACTIONS(4341), - [sym_multiline_comment] = ACTIONS(3), + [3132] = { + [sym_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(6658), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), }, - [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(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), + [3133] = { + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_as] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_object] = ACTIONS(5055), + [anon_sym_fun] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_get] = ACTIONS(5055), + [anon_sym_set] = ACTIONS(5055), + [anon_sym_this] = ACTIONS(5055), + [anon_sym_super] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [sym_label] = ACTIONS(5055), + [anon_sym_in] = ACTIONS(5055), + [anon_sym_DOT_DOT] = ACTIONS(5057), + [anon_sym_QMARK_COLON] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_null] = ACTIONS(5055), + [anon_sym_if] = ACTIONS(5055), + [anon_sym_else] = ACTIONS(5055), + [anon_sym_when] = ACTIONS(5055), + [anon_sym_try] = ACTIONS(5055), + [anon_sym_throw] = ACTIONS(5055), + [anon_sym_return] = ACTIONS(5055), + [anon_sym_continue] = ACTIONS(5055), + [anon_sym_break] = ACTIONS(5055), + [anon_sym_COLON_COLON] = ACTIONS(5057), + [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(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_BANGin] = ACTIONS(5057), + [anon_sym_is] = ACTIONS(5055), + [anon_sym_BANGis] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_as_QMARK] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5055), + [anon_sym_BANG_BANG] = ACTIONS(5057), + [anon_sym_data] = ACTIONS(5055), + [anon_sym_inner] = ACTIONS(5055), + [anon_sym_value] = ACTIONS(5055), + [anon_sym_expect] = ACTIONS(5055), + [anon_sym_actual] = ACTIONS(5055), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5057), + [anon_sym_continue_AT] = ACTIONS(5057), + [anon_sym_break_AT] = ACTIONS(5057), + [anon_sym_this_AT] = ACTIONS(5057), + [anon_sym_super_AT] = ACTIONS(5057), + [sym_real_literal] = ACTIONS(5057), + [sym_integer_literal] = ACTIONS(5055), + [sym_hex_literal] = ACTIONS(5057), + [sym_bin_literal] = ACTIONS(5057), + [anon_sym_true] = ACTIONS(5055), + [anon_sym_false] = ACTIONS(5055), + [anon_sym_SQUOTE] = ACTIONS(5057), + [sym__backtick_identifier] = ACTIONS(5057), + [sym__automatic_semicolon] = ACTIONS(5057), + [sym_safe_nav] = ACTIONS(5057), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5057), }, - [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), + [3134] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_RBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [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_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), }, - [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), + [3135] = { + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_DASH_GT] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [3136] = { + [sym__alpha_identifier] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_fun] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_this] = ACTIONS(3140), + [anon_sym_super] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [sym_label] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_QMARK_COLON] = ACTIONS(3142), + [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(3142), + [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(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_as_QMARK] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_BANG_BANG] = ACTIONS(3142), + [anon_sym_data] = ACTIONS(3140), + [anon_sym_inner] = ACTIONS(3140), + [anon_sym_value] = ACTIONS(3140), + [anon_sym_expect] = ACTIONS(3140), + [anon_sym_actual] = ACTIONS(3140), [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), + [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(3142), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3142), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4224), + [sym__string_start] = ACTIONS(3142), }, - [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), + [3137] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(5097), + [anon_sym_LBRACE] = ACTIONS(5099), + [anon_sym_RBRACE] = ACTIONS(5099), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_object] = ACTIONS(5097), + [anon_sym_fun] = ACTIONS(5097), + [anon_sym_SEMI] = ACTIONS(5099), + [anon_sym_get] = ACTIONS(5097), + [anon_sym_set] = ACTIONS(5097), + [anon_sym_this] = ACTIONS(5097), + [anon_sym_super] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [sym_label] = ACTIONS(5097), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5099), + [anon_sym_QMARK_COLON] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5099), + [anon_sym_PIPE_PIPE] = ACTIONS(5099), + [anon_sym_null] = ACTIONS(5097), + [anon_sym_if] = ACTIONS(5097), + [anon_sym_else] = ACTIONS(5097), + [anon_sym_when] = ACTIONS(5097), + [anon_sym_try] = ACTIONS(5097), + [anon_sym_throw] = ACTIONS(5097), + [anon_sym_return] = ACTIONS(5097), + [anon_sym_continue] = ACTIONS(5097), + [anon_sym_break] = ACTIONS(5097), + [anon_sym_COLON_COLON] = ACTIONS(5099), + [anon_sym_PLUS_EQ] = ACTIONS(5099), + [anon_sym_DASH_EQ] = ACTIONS(5099), + [anon_sym_STAR_EQ] = ACTIONS(5099), + [anon_sym_SLASH_EQ] = ACTIONS(5099), + [anon_sym_PERCENT_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), + [anon_sym_LT_EQ] = ACTIONS(5099), + [anon_sym_GT_EQ] = ACTIONS(5099), + [anon_sym_BANGin] = ACTIONS(5099), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_BANGis] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_as_QMARK] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5099), + [anon_sym_DASH_DASH] = ACTIONS(5099), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_BANG_BANG] = ACTIONS(5099), + [anon_sym_data] = ACTIONS(5097), + [anon_sym_inner] = ACTIONS(5097), + [anon_sym_value] = ACTIONS(5097), + [anon_sym_expect] = ACTIONS(5097), + [anon_sym_actual] = ACTIONS(5097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5099), + [anon_sym_continue_AT] = ACTIONS(5099), + [anon_sym_break_AT] = ACTIONS(5099), + [anon_sym_this_AT] = ACTIONS(5099), + [anon_sym_super_AT] = ACTIONS(5099), + [sym_real_literal] = ACTIONS(5099), + [sym_integer_literal] = ACTIONS(5097), + [sym_hex_literal] = ACTIONS(5099), + [sym_bin_literal] = ACTIONS(5099), + [anon_sym_true] = ACTIONS(5097), + [anon_sym_false] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5099), + [sym__backtick_identifier] = ACTIONS(5099), + [sym__automatic_semicolon] = ACTIONS(5099), + [sym_safe_nav] = ACTIONS(5099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5099), }, - [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), + [3138] = { + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), - [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(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5173), }, - [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), + [3139] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), + [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_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(4309), - [sym_safe_nav] = ACTIONS(4309), + [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), }, - [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), + [3140] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_LBRACE] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_object] = ACTIONS(5105), + [anon_sym_fun] = ACTIONS(5105), + [anon_sym_SEMI] = ACTIONS(5107), + [anon_sym_get] = ACTIONS(5105), + [anon_sym_set] = ACTIONS(5105), + [anon_sym_this] = ACTIONS(5105), + [anon_sym_super] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [sym_label] = ACTIONS(5105), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5107), + [anon_sym_QMARK_COLON] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5107), + [anon_sym_PIPE_PIPE] = ACTIONS(5107), + [anon_sym_null] = ACTIONS(5105), + [anon_sym_if] = ACTIONS(5105), + [anon_sym_else] = ACTIONS(5105), + [anon_sym_when] = ACTIONS(5105), + [anon_sym_try] = ACTIONS(5105), + [anon_sym_throw] = ACTIONS(5105), + [anon_sym_return] = ACTIONS(5105), + [anon_sym_continue] = ACTIONS(5105), + [anon_sym_break] = ACTIONS(5105), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_PLUS_EQ] = ACTIONS(5107), + [anon_sym_DASH_EQ] = ACTIONS(5107), + [anon_sym_STAR_EQ] = ACTIONS(5107), + [anon_sym_SLASH_EQ] = ACTIONS(5107), + [anon_sym_PERCENT_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), + [anon_sym_LT_EQ] = ACTIONS(5107), + [anon_sym_GT_EQ] = ACTIONS(5107), + [anon_sym_BANGin] = ACTIONS(5107), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_BANGis] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_as_QMARK] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5107), + [anon_sym_DASH_DASH] = ACTIONS(5107), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_BANG_BANG] = ACTIONS(5107), + [anon_sym_data] = ACTIONS(5105), + [anon_sym_inner] = ACTIONS(5105), + [anon_sym_value] = ACTIONS(5105), + [anon_sym_expect] = ACTIONS(5105), + [anon_sym_actual] = ACTIONS(5105), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5107), + [anon_sym_continue_AT] = ACTIONS(5107), + [anon_sym_break_AT] = ACTIONS(5107), + [anon_sym_this_AT] = ACTIONS(5107), + [anon_sym_super_AT] = ACTIONS(5107), + [sym_real_literal] = ACTIONS(5107), + [sym_integer_literal] = ACTIONS(5105), + [sym_hex_literal] = ACTIONS(5107), + [sym_bin_literal] = ACTIONS(5107), + [anon_sym_true] = ACTIONS(5105), + [anon_sym_false] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5107), + [sym__backtick_identifier] = ACTIONS(5107), + [sym__automatic_semicolon] = ACTIONS(5107), + [sym_safe_nav] = ACTIONS(5107), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5107), }, - [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), + [3141] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_RBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_constructor] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4035), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_DASH_GT] = ACTIONS(4035), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3142] = { + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [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_object] = ACTIONS(3276), + [anon_sym_fun] = 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), }, - [3185] = { - [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(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_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), + [3143] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_object] = ACTIONS(5129), + [anon_sym_fun] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_this] = ACTIONS(5129), + [anon_sym_super] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [sym_label] = ACTIONS(5129), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5129), + [anon_sym_if] = ACTIONS(5129), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_when] = ACTIONS(5129), + [anon_sym_try] = ACTIONS(5129), + [anon_sym_throw] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5129), + [anon_sym_continue] = ACTIONS(5129), + [anon_sym_break] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5129), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5131), + [anon_sym_continue_AT] = ACTIONS(5131), + [anon_sym_break_AT] = ACTIONS(5131), + [anon_sym_this_AT] = ACTIONS(5131), + [anon_sym_super_AT] = ACTIONS(5131), + [sym_real_literal] = ACTIONS(5131), + [sym_integer_literal] = ACTIONS(5129), + [sym_hex_literal] = ACTIONS(5131), + [sym_bin_literal] = ACTIONS(5131), + [anon_sym_true] = ACTIONS(5129), + [anon_sym_false] = ACTIONS(5129), + [anon_sym_SQUOTE] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5131), + [sym__automatic_semicolon] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5131), }, - [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), + [3144] = { + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_fun] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_this] = ACTIONS(4407), + [anon_sym_super] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4407), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_null] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_when] = ACTIONS(4407), + [anon_sym_try] = ACTIONS(4407), + [anon_sym_throw] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4409), + [anon_sym_continue_AT] = ACTIONS(4409), + [anon_sym_break_AT] = ACTIONS(4409), + [anon_sym_this_AT] = ACTIONS(4409), + [anon_sym_super_AT] = ACTIONS(4409), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(4407), + [anon_sym_false] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4409), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4409), }, - [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), + [3145] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_object] = ACTIONS(4822), + [anon_sym_fun] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_this] = ACTIONS(4822), + [anon_sym_super] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_when] = ACTIONS(4822), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_throw] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4824), + [anon_sym_continue_AT] = ACTIONS(4824), + [anon_sym_break_AT] = ACTIONS(4824), + [anon_sym_this_AT] = ACTIONS(4824), + [anon_sym_super_AT] = ACTIONS(4824), + [sym_real_literal] = ACTIONS(4824), + [sym_integer_literal] = ACTIONS(4822), + [sym_hex_literal] = ACTIONS(4824), + [sym_bin_literal] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4824), }, - [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), + [3146] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_object] = ACTIONS(5101), + [anon_sym_fun] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_this] = ACTIONS(5101), + [anon_sym_super] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_null] = ACTIONS(5101), + [anon_sym_if] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_try] = ACTIONS(5101), + [anon_sym_throw] = ACTIONS(5101), + [anon_sym_return] = ACTIONS(5101), + [anon_sym_continue] = ACTIONS(5101), + [anon_sym_break] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5103), + [anon_sym_continue_AT] = ACTIONS(5103), + [anon_sym_break_AT] = ACTIONS(5103), + [anon_sym_this_AT] = ACTIONS(5103), + [anon_sym_super_AT] = ACTIONS(5103), + [sym_real_literal] = ACTIONS(5103), + [sym_integer_literal] = ACTIONS(5101), + [sym_hex_literal] = ACTIONS(5103), + [sym_bin_literal] = ACTIONS(5103), + [anon_sym_true] = ACTIONS(5101), + [anon_sym_false] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5103), + [sym__backtick_identifier] = ACTIONS(5103), + [sym__automatic_semicolon] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5103), }, - [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), + [3147] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6660), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [3148] = { + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [3149] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6662), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), }, - [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), - [sym__backtick_identifier] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), + [3150] = { + [sym_class_body] = STATE(3548), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(6664), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [anon_sym_DASH_GT] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_while] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3151] = { + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), + [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_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), - [sym__backtick_identifier] = ACTIONS(4441), - [sym_safe_nav] = ACTIONS(4441), + [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), }, - [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), + [3152] = { + [sym__alpha_identifier] = ACTIONS(4417), + [anon_sym_AT] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_RBRACK] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4417), + [anon_sym_as] = ACTIONS(4417), + [anon_sym_EQ] = ACTIONS(4417), + [anon_sym_constructor] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_RBRACE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_RPAREN] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4417), + [anon_sym_GT] = ACTIONS(4417), + [anon_sym_where] = ACTIONS(4417), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4417), + [anon_sym_set] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4417), + [anon_sym_DASH_GT] = ACTIONS(4419), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4417), + [anon_sym_while] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_QMARK_COLON] = ACTIONS(4419), + [anon_sym_AMP_AMP] = ACTIONS(4419), + [anon_sym_PIPE_PIPE] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4417), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_PLUS_EQ] = ACTIONS(4419), + [anon_sym_DASH_EQ] = ACTIONS(4419), + [anon_sym_STAR_EQ] = ACTIONS(4419), + [anon_sym_SLASH_EQ] = ACTIONS(4419), + [anon_sym_PERCENT_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ] = ACTIONS(4417), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ] = ACTIONS(4417), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4419), + [anon_sym_LT_EQ] = ACTIONS(4419), + [anon_sym_GT_EQ] = ACTIONS(4419), + [anon_sym_BANGin] = ACTIONS(4419), + [anon_sym_is] = ACTIONS(4417), + [anon_sym_BANGis] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_SLASH] = ACTIONS(4417), + [anon_sym_PERCENT] = ACTIONS(4417), + [anon_sym_as_QMARK] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4419), + [anon_sym_suspend] = ACTIONS(4417), + [anon_sym_sealed] = ACTIONS(4417), + [anon_sym_annotation] = ACTIONS(4417), + [anon_sym_data] = ACTIONS(4417), + [anon_sym_inner] = ACTIONS(4417), + [anon_sym_value] = ACTIONS(4417), + [anon_sym_override] = ACTIONS(4417), + [anon_sym_lateinit] = ACTIONS(4417), + [anon_sym_public] = ACTIONS(4417), + [anon_sym_private] = ACTIONS(4417), + [anon_sym_internal] = ACTIONS(4417), + [anon_sym_protected] = ACTIONS(4417), + [anon_sym_tailrec] = ACTIONS(4417), + [anon_sym_operator] = ACTIONS(4417), + [anon_sym_infix] = ACTIONS(4417), + [anon_sym_inline] = ACTIONS(4417), + [anon_sym_external] = ACTIONS(4417), + [sym_property_modifier] = ACTIONS(4417), + [anon_sym_abstract] = ACTIONS(4417), + [anon_sym_final] = ACTIONS(4417), + [anon_sym_open] = ACTIONS(4417), + [anon_sym_vararg] = ACTIONS(4417), + [anon_sym_noinline] = ACTIONS(4417), + [anon_sym_crossinline] = ACTIONS(4417), + [anon_sym_expect] = ACTIONS(4417), + [anon_sym_actual] = ACTIONS(4417), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4419), + [sym_safe_nav] = ACTIONS(4419), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3153] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(6666), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), }, - [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), + [3154] = { + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_fun] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_this] = ACTIONS(3338), + [anon_sym_super] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_data] = ACTIONS(3338), + [anon_sym_inner] = ACTIONS(3338), + [anon_sym_value] = ACTIONS(3338), + [anon_sym_expect] = ACTIONS(3338), + [anon_sym_actual] = ACTIONS(3338), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3340), + [anon_sym_continue_AT] = ACTIONS(3340), + [anon_sym_break_AT] = ACTIONS(3340), + [anon_sym_this_AT] = ACTIONS(3340), + [anon_sym_super_AT] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3340), + [sym_integer_literal] = ACTIONS(3338), + [sym_hex_literal] = ACTIONS(3340), + [sym_bin_literal] = ACTIONS(3340), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3340), }, - [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), + [3155] = { + [sym_class_body] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_RBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_DASH_GT] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_while] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + }, + [3156] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [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_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(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), + [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(4964), + [sym__string_start] = ACTIONS(121), }, - [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), - }, - [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), - }, - [3199] = { - [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(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_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), - [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), - }, - [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(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), - }, - [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_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_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), - }, - [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(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), - [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), + [3157] = { + [sym__alpha_identifier] = ACTIONS(4744), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4744), + [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_object] = ACTIONS(4744), + [anon_sym_fun] = 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), }, - [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), + [3158] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), }, - [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), + [3159] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_object] = ACTIONS(5133), + [anon_sym_fun] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_this] = ACTIONS(5133), + [anon_sym_super] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [sym_label] = ACTIONS(5133), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_null] = ACTIONS(5133), + [anon_sym_if] = ACTIONS(5133), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_when] = ACTIONS(5133), + [anon_sym_try] = ACTIONS(5133), + [anon_sym_throw] = ACTIONS(5133), + [anon_sym_return] = ACTIONS(5133), + [anon_sym_continue] = ACTIONS(5133), + [anon_sym_break] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5133), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5135), + [anon_sym_continue_AT] = ACTIONS(5135), + [anon_sym_break_AT] = ACTIONS(5135), + [anon_sym_this_AT] = ACTIONS(5135), + [anon_sym_super_AT] = ACTIONS(5135), + [sym_real_literal] = ACTIONS(5135), + [sym_integer_literal] = ACTIONS(5133), + [sym_hex_literal] = ACTIONS(5135), + [sym_bin_literal] = ACTIONS(5135), + [anon_sym_true] = ACTIONS(5133), + [anon_sym_false] = ACTIONS(5133), + [anon_sym_SQUOTE] = ACTIONS(5135), + [sym__backtick_identifier] = ACTIONS(5135), + [sym__automatic_semicolon] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5135), }, - [3227] = { + [3160] = { [sym__alpha_identifier] = ACTIONS(5047), [anon_sym_AT] = ACTIONS(5049), [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), [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_LPAREN] = ACTIONS(6670), [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), @@ -381324,690 +372272,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5049), }, - [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), - }, - [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_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_data] = ACTIONS(1732), - [anon_sym_inner] = ACTIONS(1732), - [anon_sym_value] = 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), - }, - [3230] = { - [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_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(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(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(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(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), + [3161] = { + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [3236] = { + [3162] = { [sym__alpha_identifier] = ACTIONS(5077), [anon_sym_AT] = ACTIONS(5079), [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), [anon_sym_as] = ACTIONS(5077), [anon_sym_EQ] = ACTIONS(5077), [anon_sym_LBRACE] = ACTIONS(5079), @@ -382019,7 +372373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -382089,1285 +372442,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5079), }, - [3237] = { - [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(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_object] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_this] = ACTIONS(5205), - [anon_sym_super] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5205), - [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_null] = ACTIONS(5205), - [anon_sym_if] = ACTIONS(5205), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_when] = ACTIONS(5205), - [anon_sym_try] = ACTIONS(5205), - [anon_sym_throw] = ACTIONS(5205), - [anon_sym_return] = ACTIONS(5205), - [anon_sym_continue] = ACTIONS(5205), - [anon_sym_break] = 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] = ACTIONS(5205), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5207), - [anon_sym_continue_AT] = ACTIONS(5207), - [anon_sym_break_AT] = ACTIONS(5207), - [anon_sym_this_AT] = ACTIONS(5207), - [anon_sym_super_AT] = ACTIONS(5207), - [sym_real_literal] = ACTIONS(5207), - [sym_integer_literal] = ACTIONS(5205), - [sym_hex_literal] = ACTIONS(5207), - [sym_bin_literal] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5205), - [anon_sym_false] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5207), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5207), - }, - [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), + [3163] = { + [sym_class_body] = STATE(3567), + [sym_type_constraints] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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), }, - [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), + [3164] = { + [sym__alpha_identifier] = ACTIONS(4886), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_where] = ACTIONS(4886), + [anon_sym_object] = ACTIONS(4886), + [anon_sym_fun] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_get] = ACTIONS(4886), + [anon_sym_set] = ACTIONS(4886), + [anon_sym_this] = ACTIONS(4886), + [anon_sym_super] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4888), + [anon_sym_QMARK_COLON] = ACTIONS(4888), + [anon_sym_AMP_AMP] = ACTIONS(4888), + [anon_sym_PIPE_PIPE] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_when] = ACTIONS(4886), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_throw] = ACTIONS(4886), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4888), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_PERCENT_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_BANGin] = ACTIONS(4888), + [anon_sym_is] = ACTIONS(4886), + [anon_sym_BANGis] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_as_QMARK] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4886), + [anon_sym_inner] = ACTIONS(4886), + [anon_sym_value] = ACTIONS(4886), + [anon_sym_expect] = ACTIONS(4886), + [anon_sym_actual] = ACTIONS(4886), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4888), + [anon_sym_continue_AT] = ACTIONS(4888), + [anon_sym_break_AT] = ACTIONS(4888), + [anon_sym_this_AT] = ACTIONS(4888), + [anon_sym_super_AT] = ACTIONS(4888), + [sym_real_literal] = ACTIONS(4888), + [sym_integer_literal] = ACTIONS(4886), + [sym_hex_literal] = ACTIONS(4888), + [sym_bin_literal] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4888), + [sym__backtick_identifier] = ACTIONS(4888), + [sym__automatic_semicolon] = ACTIONS(4888), + [sym_safe_nav] = ACTIONS(4888), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4888), }, - [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), + [3165] = { + [sym__alpha_identifier] = ACTIONS(4858), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_as] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_where] = ACTIONS(4858), + [anon_sym_object] = ACTIONS(4858), + [anon_sym_fun] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_this] = ACTIONS(4858), + [anon_sym_super] = ACTIONS(4858), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_QMARK_COLON] = ACTIONS(4860), + [anon_sym_AMP_AMP] = ACTIONS(4860), + [anon_sym_PIPE_PIPE] = ACTIONS(4860), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_when] = ACTIONS(4858), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_throw] = ACTIONS(4858), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_PERCENT_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4860), + [anon_sym_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4860), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_BANGin] = ACTIONS(4860), + [anon_sym_is] = ACTIONS(4858), + [anon_sym_BANGis] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4860), + [anon_sym_PLUS_PLUS] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4860), + [anon_sym_data] = ACTIONS(4858), + [anon_sym_inner] = ACTIONS(4858), + [anon_sym_value] = ACTIONS(4858), + [anon_sym_expect] = ACTIONS(4858), + [anon_sym_actual] = ACTIONS(4858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4860), + [anon_sym_continue_AT] = ACTIONS(4860), + [anon_sym_break_AT] = ACTIONS(4860), + [anon_sym_this_AT] = ACTIONS(4860), + [anon_sym_super_AT] = ACTIONS(4860), + [sym_real_literal] = ACTIONS(4860), + [sym_integer_literal] = ACTIONS(4858), + [sym_hex_literal] = ACTIONS(4860), + [sym_bin_literal] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4860), + [sym__backtick_identifier] = ACTIONS(4860), + [sym__automatic_semicolon] = ACTIONS(4860), + [sym_safe_nav] = ACTIONS(4860), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4860), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [3166] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [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_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(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), + [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(5123), + [sym__string_start] = ACTIONS(4218), }, - [3252] = { + [3167] = { [sym__alpha_identifier] = ACTIONS(4794), [anon_sym_AT] = ACTIONS(4796), [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4794), [anon_sym_as] = ACTIONS(4794), [anon_sym_EQ] = ACTIONS(4794), [anon_sym_LBRACE] = ACTIONS(4796), @@ -383379,7 +372798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -383449,12299 +372867,11671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3168] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4782), + [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_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), - [sym__backtick_identifier] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), + [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), }, - [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(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), - }, - [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), - }, - [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), - }, - [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), + [3169] = { + [sym_class_body] = STATE(3208), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), }, - [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(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), + [3170] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_object] = ACTIONS(5081), + [anon_sym_fun] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_this] = ACTIONS(5081), + [anon_sym_super] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [sym_label] = ACTIONS(5081), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_null] = ACTIONS(5081), + [anon_sym_if] = ACTIONS(5081), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_when] = ACTIONS(5081), + [anon_sym_try] = ACTIONS(5081), + [anon_sym_throw] = ACTIONS(5081), + [anon_sym_return] = ACTIONS(5081), + [anon_sym_continue] = ACTIONS(5081), + [anon_sym_break] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5083), + [anon_sym_continue_AT] = ACTIONS(5083), + [anon_sym_break_AT] = ACTIONS(5083), + [anon_sym_this_AT] = ACTIONS(5083), + [anon_sym_super_AT] = ACTIONS(5083), + [sym_real_literal] = ACTIONS(5083), + [sym_integer_literal] = ACTIONS(5081), + [sym_hex_literal] = ACTIONS(5083), + [sym_bin_literal] = ACTIONS(5083), + [anon_sym_true] = ACTIONS(5081), + [anon_sym_false] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5083), + [sym__backtick_identifier] = ACTIONS(5083), + [sym__automatic_semicolon] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5083), }, - [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), + [3171] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(6674), + [anon_sym_COMMA] = ACTIONS(4292), + [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_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5127), - }, - [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), - }, - [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), + [sym__string_start] = ACTIONS(4292), }, - [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), + [3172] = { + [sym__alpha_identifier] = ACTIONS(4573), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4573), + [anon_sym_where] = ACTIONS(4573), + [anon_sym_object] = ACTIONS(4573), + [anon_sym_fun] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4573), + [anon_sym_set] = ACTIONS(4573), + [anon_sym_this] = ACTIONS(4573), + [anon_sym_super] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4573), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4573), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_null] = ACTIONS(4573), + [anon_sym_if] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4573), + [anon_sym_when] = ACTIONS(4573), + [anon_sym_try] = ACTIONS(4573), + [anon_sym_throw] = ACTIONS(4573), + [anon_sym_return] = ACTIONS(4573), + [anon_sym_continue] = ACTIONS(4573), + [anon_sym_break] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4573), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_SLASH] = ACTIONS(4573), + [anon_sym_PERCENT] = ACTIONS(4573), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4573), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_data] = ACTIONS(4573), + [anon_sym_inner] = ACTIONS(4573), + [anon_sym_value] = ACTIONS(4573), + [anon_sym_expect] = ACTIONS(4573), + [anon_sym_actual] = ACTIONS(4573), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4573), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4573), + [anon_sym_false] = ACTIONS(4573), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), }, - [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), + [3173] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [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_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(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), + [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(4924), + [sym__string_start] = ACTIONS(5091), }, - [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), + [3174] = { + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1804), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [3175] = { + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [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_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), }, - [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), + [3176] = { + [aux_sym_user_type_repeat1] = STATE(2917), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_RBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6678), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_RPAREN] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_DASH_GT] = ACTIONS(4141), + [sym_label] = ACTIONS(4141), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_while] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3177] = { + [aux_sym_type_constraints_repeat1] = STATE(3214), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_RBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(6681), + [anon_sym_RPAREN] = ACTIONS(4505), + [anon_sym_by] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [anon_sym_DASH_GT] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_while] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3178] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [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_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_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_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), - [sym__backtick_identifier] = ACTIONS(4583), - [sym_safe_nav] = ACTIONS(4583), + [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), }, - [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), + [3179] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), }, - [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), + [3180] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [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), + [3181] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_RPAREN] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [anon_sym_DASH_GT] = ACTIONS(4186), + [sym_label] = ACTIONS(4186), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3182] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), + [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_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), - [sym__backtick_identifier] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [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), }, - [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), + [3183] = { + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [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_object] = ACTIONS(3292), + [anon_sym_fun] = 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), }, - [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), + [3184] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [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), + [3185] = { + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_RBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [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_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(6683), + [anon_sym_L] = ACTIONS(6685), + [sym__backtick_identifier] = ACTIONS(4497), + [sym_safe_nav] = ACTIONS(4497), [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), + [3186] = { + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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_object] = ACTIONS(4453), + [anon_sym_fun] = 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), }, - [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), + [3187] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(6643), + [anon_sym_COMMA] = ACTIONS(4278), + [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_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(1788), - [sym_safe_nav] = ACTIONS(6740), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [3290] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), + [3188] = { + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_object] = ACTIONS(3978), + [anon_sym_fun] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_this] = ACTIONS(3978), + [anon_sym_super] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3978), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_null] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_when] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3978), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3980), + [anon_sym_continue_AT] = ACTIONS(3980), + [anon_sym_break_AT] = ACTIONS(3980), + [anon_sym_this_AT] = ACTIONS(3980), + [anon_sym_super_AT] = ACTIONS(3980), + [sym_real_literal] = ACTIONS(3980), + [sym_integer_literal] = ACTIONS(3978), + [sym_hex_literal] = ACTIONS(3980), + [sym_bin_literal] = ACTIONS(3980), + [anon_sym_true] = ACTIONS(3978), + [anon_sym_false] = ACTIONS(3978), + [anon_sym_SQUOTE] = ACTIONS(3980), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3980), + }, + [3189] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(6647), + [anon_sym_COMMA] = ACTIONS(4292), [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_where] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [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_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_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), [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_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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4292), + [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(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), - }, - [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), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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), - [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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [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), + [3190] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_RBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_constructor] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_RPAREN] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4192), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), [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), + [3191] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [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_object] = ACTIONS(4940), + [anon_sym_fun] = 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), }, - [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), + [3192] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [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), + [3193] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [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_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), - [sym__backtick_identifier] = ACTIONS(4765), - [sym_safe_nav] = ACTIONS(4765), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [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), }, - [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), + [3194] = { + [sym__alpha_identifier] = ACTIONS(4894), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [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_object] = ACTIONS(4894), + [anon_sym_fun] = 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), }, - [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), + [3195] = { + [sym__alpha_identifier] = ACTIONS(4862), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_as] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_where] = ACTIONS(4862), + [anon_sym_object] = ACTIONS(4862), + [anon_sym_fun] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_get] = ACTIONS(4862), + [anon_sym_set] = ACTIONS(4862), + [anon_sym_this] = ACTIONS(4862), + [anon_sym_super] = ACTIONS(4862), + [anon_sym_STAR] = ACTIONS(4862), + [sym_label] = ACTIONS(4862), + [anon_sym_in] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_QMARK_COLON] = ACTIONS(4864), + [anon_sym_AMP_AMP] = ACTIONS(4864), + [anon_sym_PIPE_PIPE] = ACTIONS(4864), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_if] = ACTIONS(4862), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_when] = ACTIONS(4862), + [anon_sym_try] = ACTIONS(4862), + [anon_sym_throw] = ACTIONS(4862), + [anon_sym_return] = ACTIONS(4862), + [anon_sym_continue] = ACTIONS(4862), + [anon_sym_break] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4862), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ] = ACTIONS(4862), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4864), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_BANGin] = ACTIONS(4864), + [anon_sym_is] = ACTIONS(4862), + [anon_sym_BANGis] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_PERCENT] = ACTIONS(4862), + [anon_sym_as_QMARK] = ACTIONS(4864), + [anon_sym_PLUS_PLUS] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4864), + [anon_sym_BANG] = ACTIONS(4862), + [anon_sym_BANG_BANG] = ACTIONS(4864), + [anon_sym_data] = ACTIONS(4862), + [anon_sym_inner] = ACTIONS(4862), + [anon_sym_value] = ACTIONS(4862), + [anon_sym_expect] = ACTIONS(4862), + [anon_sym_actual] = ACTIONS(4862), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4864), + [anon_sym_continue_AT] = ACTIONS(4864), + [anon_sym_break_AT] = ACTIONS(4864), + [anon_sym_this_AT] = ACTIONS(4864), + [anon_sym_super_AT] = ACTIONS(4864), + [sym_real_literal] = ACTIONS(4864), + [sym_integer_literal] = ACTIONS(4862), + [sym_hex_literal] = ACTIONS(4864), + [sym_bin_literal] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [anon_sym_SQUOTE] = ACTIONS(4864), + [sym__backtick_identifier] = ACTIONS(4864), + [sym__automatic_semicolon] = ACTIONS(4864), + [sym_safe_nav] = ACTIONS(4864), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4864), }, - [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), + [3196] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [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_object] = ACTIONS(4948), + [anon_sym_fun] = 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), }, - [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), + [3197] = { + [sym_function_body] = STATE(3225), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), }, - [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), + [3198] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [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_object] = ACTIONS(4952), + [anon_sym_fun] = 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), }, - [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), + [3199] = { + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [3200] = { + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [3201] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_object] = ACTIONS(5109), + [anon_sym_fun] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_this] = ACTIONS(5109), + [anon_sym_super] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_when] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_throw] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5111), + [anon_sym_continue_AT] = ACTIONS(5111), + [anon_sym_break_AT] = ACTIONS(5111), + [anon_sym_this_AT] = ACTIONS(5111), + [anon_sym_super_AT] = ACTIONS(5111), + [sym_real_literal] = ACTIONS(5111), + [sym_integer_literal] = ACTIONS(5109), + [sym_hex_literal] = ACTIONS(5111), + [sym_bin_literal] = ACTIONS(5111), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5111), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5111), }, - [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), + [3202] = { + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), }, - [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), + [3203] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_EQ] = ACTIONS(4313), + [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_fun] = 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), }, - [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), + [3204] = { + [sym__alpha_identifier] = ACTIONS(4878), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_as] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_where] = ACTIONS(4878), + [anon_sym_object] = ACTIONS(4878), + [anon_sym_fun] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_get] = ACTIONS(4878), + [anon_sym_set] = ACTIONS(4878), + [anon_sym_this] = ACTIONS(4878), + [anon_sym_super] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [sym_label] = ACTIONS(4878), + [anon_sym_in] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_QMARK_COLON] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(4878), + [anon_sym_if] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_when] = ACTIONS(4878), + [anon_sym_try] = ACTIONS(4878), + [anon_sym_throw] = ACTIONS(4878), + [anon_sym_return] = ACTIONS(4878), + [anon_sym_continue] = ACTIONS(4878), + [anon_sym_break] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(4880), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PERCENT_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_BANGin] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4878), + [anon_sym_BANGis] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(4878), + [anon_sym_as_QMARK] = ACTIONS(4880), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_BANG_BANG] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4878), + [anon_sym_inner] = ACTIONS(4878), + [anon_sym_value] = ACTIONS(4878), + [anon_sym_expect] = ACTIONS(4878), + [anon_sym_actual] = ACTIONS(4878), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4880), + [anon_sym_continue_AT] = ACTIONS(4880), + [anon_sym_break_AT] = ACTIONS(4880), + [anon_sym_this_AT] = ACTIONS(4880), + [anon_sym_super_AT] = ACTIONS(4880), + [sym_real_literal] = ACTIONS(4880), + [sym_integer_literal] = ACTIONS(4878), + [sym_hex_literal] = ACTIONS(4880), + [sym_bin_literal] = ACTIONS(4880), + [anon_sym_true] = ACTIONS(4878), + [anon_sym_false] = ACTIONS(4878), + [anon_sym_SQUOTE] = ACTIONS(4880), + [sym__backtick_identifier] = ACTIONS(4880), + [sym__automatic_semicolon] = ACTIONS(4880), + [sym_safe_nav] = ACTIONS(4880), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4880), }, - [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), + [3205] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_DOT] = ACTIONS(4818), + [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_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(4818), + [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), }, - [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), + [3206] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), + [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_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), }, - [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), + [3207] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [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_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), }, - [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), + [3208] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), + [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_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), }, - [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), + [3209] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_SEMI] = ACTIONS(6687), + [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(6689), + [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), }, - [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_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(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), + [3210] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), + [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_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), - [sym__backtick_identifier] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), + [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), }, - [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), + [3211] = { + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_object] = ACTIONS(4379), + [anon_sym_fun] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_this] = ACTIONS(4379), + [anon_sym_super] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4379), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_when] = ACTIONS(4379), + [anon_sym_try] = ACTIONS(4379), + [anon_sym_throw] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4381), + [anon_sym_continue_AT] = ACTIONS(4381), + [anon_sym_break_AT] = ACTIONS(4381), + [anon_sym_this_AT] = ACTIONS(4381), + [anon_sym_super_AT] = ACTIONS(4381), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4381), }, - [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), + [3212] = { + [sym__alpha_identifier] = ACTIONS(4768), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_where] = ACTIONS(4768), + [anon_sym_object] = ACTIONS(4768), + [anon_sym_fun] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_get] = ACTIONS(4768), + [anon_sym_set] = ACTIONS(4768), + [anon_sym_this] = ACTIONS(4768), + [anon_sym_super] = ACTIONS(4768), + [anon_sym_STAR] = ACTIONS(4768), + [sym_label] = ACTIONS(4768), + [anon_sym_in] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_QMARK_COLON] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_if] = ACTIONS(4768), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_when] = ACTIONS(4768), + [anon_sym_try] = ACTIONS(4768), + [anon_sym_throw] = ACTIONS(4768), + [anon_sym_return] = ACTIONS(4768), + [anon_sym_continue] = ACTIONS(4768), + [anon_sym_break] = ACTIONS(4768), + [anon_sym_COLON_COLON] = ACTIONS(4770), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_PERCENT_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4770), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_BANGin] = ACTIONS(4770), + [anon_sym_is] = ACTIONS(4768), + [anon_sym_BANGis] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4768), + [anon_sym_as_QMARK] = ACTIONS(4770), + [anon_sym_PLUS_PLUS] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4770), + [anon_sym_BANG] = ACTIONS(4768), + [anon_sym_BANG_BANG] = ACTIONS(4770), + [anon_sym_data] = ACTIONS(4768), + [anon_sym_inner] = ACTIONS(4768), + [anon_sym_value] = ACTIONS(4768), + [anon_sym_expect] = ACTIONS(4768), + [anon_sym_actual] = ACTIONS(4768), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4770), + [anon_sym_continue_AT] = ACTIONS(4770), + [anon_sym_break_AT] = ACTIONS(4770), + [anon_sym_this_AT] = ACTIONS(4770), + [anon_sym_super_AT] = ACTIONS(4770), + [sym_real_literal] = ACTIONS(4770), + [sym_integer_literal] = ACTIONS(4768), + [sym_hex_literal] = ACTIONS(4770), + [sym_bin_literal] = ACTIONS(4770), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [anon_sym_SQUOTE] = ACTIONS(4770), + [sym__backtick_identifier] = ACTIONS(4770), + [sym__automatic_semicolon] = ACTIONS(4770), + [sym_safe_nav] = ACTIONS(4770), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4770), }, - [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_as] = ACTIONS(4183), - [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(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), - [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), + [3213] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [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_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), }, - [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), + [3214] = { + [aux_sym_type_constraints_repeat1] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_RBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [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(6681), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = 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(4155), - [sym__automatic_semicolon] = ACTIONS(4155), - [sym_safe_nav] = ACTIONS(4155), + [sym__backtick_identifier] = ACTIONS(4441), + [sym_safe_nav] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3215] = { + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_object] = ACTIONS(4106), + [anon_sym_fun] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_this] = ACTIONS(4106), + [anon_sym_super] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4106), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_when] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4108), + [anon_sym_continue_AT] = ACTIONS(4108), + [anon_sym_break_AT] = ACTIONS(4108), + [anon_sym_this_AT] = ACTIONS(4108), + [anon_sym_super_AT] = ACTIONS(4108), + [sym_real_literal] = ACTIONS(4108), + [sym_integer_literal] = ACTIONS(4106), + [sym_hex_literal] = ACTIONS(4108), + [sym_bin_literal] = ACTIONS(4108), + [anon_sym_true] = ACTIONS(4106), + [anon_sym_false] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4108), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4108), }, - [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), + [3216] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [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_object] = ACTIONS(4988), + [anon_sym_fun] = 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), + }, + [3217] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), + }, + [3218] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(5125), + [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_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), }, - [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), + [3219] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_object] = ACTIONS(4994), + [anon_sym_fun] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_this] = ACTIONS(4994), + [anon_sym_super] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4994), + [anon_sym_if] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_when] = ACTIONS(4994), + [anon_sym_try] = ACTIONS(4994), + [anon_sym_throw] = ACTIONS(4994), + [anon_sym_return] = ACTIONS(4994), + [anon_sym_continue] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(6631), + [anon_sym_PLUS_EQ] = ACTIONS(4996), + [anon_sym_DASH_EQ] = ACTIONS(4996), + [anon_sym_STAR_EQ] = ACTIONS(4996), + [anon_sym_SLASH_EQ] = ACTIONS(4996), + [anon_sym_PERCENT_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4996), + [anon_sym_continue_AT] = ACTIONS(4996), + [anon_sym_break_AT] = ACTIONS(4996), + [anon_sym_this_AT] = ACTIONS(4996), + [anon_sym_super_AT] = ACTIONS(4996), + [sym_real_literal] = ACTIONS(4996), + [sym_integer_literal] = ACTIONS(4994), + [sym_hex_literal] = ACTIONS(4996), + [sym_bin_literal] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4994), + [anon_sym_false] = ACTIONS(4994), + [anon_sym_SQUOTE] = ACTIONS(4996), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4996), }, - [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(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), + [3220] = { + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), }, - [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), + [3221] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_as] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5017), + [anon_sym_object] = ACTIONS(5017), + [anon_sym_fun] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_get] = ACTIONS(5017), + [anon_sym_set] = ACTIONS(5017), + [anon_sym_this] = ACTIONS(5017), + [anon_sym_super] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [sym_label] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_QMARK_COLON] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_null] = ACTIONS(5017), + [anon_sym_if] = ACTIONS(5017), + [anon_sym_else] = ACTIONS(5017), + [anon_sym_when] = ACTIONS(5017), + [anon_sym_try] = ACTIONS(5017), + [anon_sym_throw] = ACTIONS(5017), + [anon_sym_return] = ACTIONS(5017), + [anon_sym_continue] = ACTIONS(5017), + [anon_sym_break] = ACTIONS(5017), + [anon_sym_COLON_COLON] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_BANGin] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5017), + [anon_sym_BANGis] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5017), + [anon_sym_as_QMARK] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_BANG_BANG] = ACTIONS(5019), + [anon_sym_data] = ACTIONS(5017), + [anon_sym_inner] = ACTIONS(5017), + [anon_sym_value] = ACTIONS(5017), + [anon_sym_expect] = ACTIONS(5017), + [anon_sym_actual] = ACTIONS(5017), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5019), + [anon_sym_continue_AT] = ACTIONS(5019), + [anon_sym_break_AT] = ACTIONS(5019), + [anon_sym_this_AT] = ACTIONS(5019), + [anon_sym_super_AT] = ACTIONS(5019), + [sym_real_literal] = ACTIONS(5019), + [sym_integer_literal] = ACTIONS(5017), + [sym_hex_literal] = ACTIONS(5019), + [sym_bin_literal] = ACTIONS(5019), + [anon_sym_true] = ACTIONS(5017), + [anon_sym_false] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5019), + [sym__backtick_identifier] = ACTIONS(5019), + [sym__automatic_semicolon] = ACTIONS(5019), + [sym_safe_nav] = ACTIONS(5019), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5019), }, - [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), + [3222] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_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(6689), + [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), - [sym__backtick_identifier] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), + [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), }, - [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), + [3223] = { + [sym__alpha_identifier] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_object] = ACTIONS(5001), + [anon_sym_fun] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_get] = ACTIONS(5001), + [anon_sym_set] = ACTIONS(5001), + [anon_sym_this] = ACTIONS(5001), + [anon_sym_super] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(5001), + [sym_label] = ACTIONS(5001), + [anon_sym_in] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_QMARK_COLON] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_null] = ACTIONS(5001), + [anon_sym_if] = ACTIONS(5001), + [anon_sym_else] = ACTIONS(5001), + [anon_sym_when] = ACTIONS(5001), + [anon_sym_try] = ACTIONS(5001), + [anon_sym_throw] = ACTIONS(5001), + [anon_sym_return] = ACTIONS(5001), + [anon_sym_continue] = ACTIONS(5001), + [anon_sym_break] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5003), + [anon_sym_PLUS_EQ] = ACTIONS(5003), + [anon_sym_DASH_EQ] = ACTIONS(5003), + [anon_sym_STAR_EQ] = ACTIONS(5003), + [anon_sym_SLASH_EQ] = ACTIONS(5003), + [anon_sym_PERCENT_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_BANGin] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_BANGis] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_as_QMARK] = ACTIONS(5003), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5001), + [anon_sym_BANG_BANG] = ACTIONS(5003), + [anon_sym_data] = ACTIONS(5001), + [anon_sym_inner] = ACTIONS(5001), + [anon_sym_value] = ACTIONS(5001), + [anon_sym_expect] = ACTIONS(5001), + [anon_sym_actual] = ACTIONS(5001), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5003), + [anon_sym_continue_AT] = ACTIONS(5003), + [anon_sym_break_AT] = ACTIONS(5003), + [anon_sym_this_AT] = ACTIONS(5003), + [anon_sym_super_AT] = ACTIONS(5003), + [sym_real_literal] = ACTIONS(5003), + [sym_integer_literal] = ACTIONS(5001), + [sym_hex_literal] = ACTIONS(5003), + [sym_bin_literal] = ACTIONS(5003), + [anon_sym_true] = ACTIONS(5001), + [anon_sym_false] = ACTIONS(5001), + [anon_sym_SQUOTE] = ACTIONS(5003), + [sym__backtick_identifier] = ACTIONS(5003), + [sym__automatic_semicolon] = ACTIONS(5003), + [sym_safe_nav] = ACTIONS(5003), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5003), + }, + [3224] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [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_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_L] = ACTIONS(6802), - [sym__backtick_identifier] = ACTIONS(4742), - [sym_safe_nav] = ACTIONS(4742), + [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), }, - [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), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), + [3225] = { + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), }, - [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), + [3226] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(6691), + [anon_sym_COMMA] = ACTIONS(4278), + [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_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(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), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [3227] = { + [sym_function_body] = STATE(3263), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), }, - [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), + [3228] = { + [sym__alpha_identifier] = ACTIONS(5155), + [anon_sym_AT] = ACTIONS(5157), + [anon_sym_LBRACK] = ACTIONS(5157), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5157), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_COMMA] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5155), + [anon_sym_object] = ACTIONS(5155), + [anon_sym_fun] = ACTIONS(5155), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(5155), + [anon_sym_set] = ACTIONS(5155), + [anon_sym_this] = ACTIONS(5155), + [anon_sym_super] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5155), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_DOT_DOT] = ACTIONS(5157), + [anon_sym_QMARK_COLON] = ACTIONS(5157), + [anon_sym_AMP_AMP] = ACTIONS(5157), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_null] = ACTIONS(5155), + [anon_sym_if] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5155), + [anon_sym_when] = ACTIONS(5155), + [anon_sym_try] = ACTIONS(5155), + [anon_sym_throw] = ACTIONS(5155), + [anon_sym_return] = ACTIONS(5155), + [anon_sym_continue] = ACTIONS(5155), + [anon_sym_break] = ACTIONS(5155), + [anon_sym_COLON_COLON] = ACTIONS(5157), + [anon_sym_PLUS_EQ] = ACTIONS(5157), + [anon_sym_DASH_EQ] = ACTIONS(5157), + [anon_sym_STAR_EQ] = ACTIONS(5157), + [anon_sym_SLASH_EQ] = ACTIONS(5157), + [anon_sym_PERCENT_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5157), + [anon_sym_LT_EQ] = ACTIONS(5157), + [anon_sym_GT_EQ] = ACTIONS(5157), + [anon_sym_BANGin] = ACTIONS(5157), + [anon_sym_is] = ACTIONS(5155), + [anon_sym_BANGis] = ACTIONS(5157), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5155), + [anon_sym_as_QMARK] = ACTIONS(5157), + [anon_sym_PLUS_PLUS] = ACTIONS(5157), + [anon_sym_DASH_DASH] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5157), + [anon_sym_data] = ACTIONS(5155), + [anon_sym_inner] = ACTIONS(5155), + [anon_sym_value] = ACTIONS(5155), + [anon_sym_expect] = ACTIONS(5155), + [anon_sym_actual] = ACTIONS(5155), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5157), + [anon_sym_continue_AT] = ACTIONS(5157), + [anon_sym_break_AT] = ACTIONS(5157), + [anon_sym_this_AT] = ACTIONS(5157), + [anon_sym_super_AT] = ACTIONS(5157), + [sym_real_literal] = ACTIONS(5157), + [sym_integer_literal] = ACTIONS(5155), + [sym_hex_literal] = ACTIONS(5157), + [sym_bin_literal] = ACTIONS(5157), + [anon_sym_true] = ACTIONS(5155), + [anon_sym_false] = ACTIONS(5155), + [anon_sym_SQUOTE] = ACTIONS(5157), + [sym__backtick_identifier] = ACTIONS(5157), + [sym__automatic_semicolon] = ACTIONS(5157), + [sym_safe_nav] = ACTIONS(5157), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5157), }, - [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), + [3229] = { + [sym_value_arguments] = STATE(3413), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(6695), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_DASH_GT] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [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), + [3230] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [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), + [3231] = { + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), }, - [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), + [3232] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_object] = ACTIONS(5005), + [anon_sym_fun] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_this] = ACTIONS(5005), + [anon_sym_super] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_when] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_throw] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5007), + [anon_sym_continue_AT] = ACTIONS(5007), + [anon_sym_break_AT] = ACTIONS(5007), + [anon_sym_this_AT] = ACTIONS(5007), + [anon_sym_super_AT] = ACTIONS(5007), + [sym_real_literal] = ACTIONS(5007), + [sym_integer_literal] = ACTIONS(5005), + [sym_hex_literal] = ACTIONS(5007), + [sym_bin_literal] = ACTIONS(5007), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [anon_sym_SQUOTE] = ACTIONS(5007), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5007), + }, + [3233] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_object] = ACTIONS(5137), + [anon_sym_fun] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_this] = ACTIONS(5137), + [anon_sym_super] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_when] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_throw] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5139), + [anon_sym_continue_AT] = ACTIONS(5139), + [anon_sym_break_AT] = ACTIONS(5139), + [anon_sym_this_AT] = ACTIONS(5139), + [anon_sym_super_AT] = ACTIONS(5139), + [sym_real_literal] = ACTIONS(5139), + [sym_integer_literal] = ACTIONS(5137), + [sym_hex_literal] = ACTIONS(5139), + [sym_bin_literal] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [anon_sym_SQUOTE] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5139), + }, + [3234] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [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), + [3235] = { + [aux_sym_user_type_repeat1] = STATE(2945), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(4141), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4141), + [sym_label] = ACTIONS(4139), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4139), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), + }, + [3236] = { + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3237] = { + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3238] = { + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_object] = ACTIONS(3998), + [anon_sym_fun] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_this] = ACTIONS(3998), + [anon_sym_super] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_null] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_when] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(4000), + [anon_sym_STAR_EQ] = ACTIONS(4000), + [anon_sym_SLASH_EQ] = ACTIONS(4000), + [anon_sym_PERCENT_EQ] = ACTIONS(4000), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_BANG_BANG] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4000), + [anon_sym_continue_AT] = ACTIONS(4000), + [anon_sym_break_AT] = ACTIONS(4000), + [anon_sym_this_AT] = ACTIONS(4000), + [anon_sym_super_AT] = ACTIONS(4000), + [sym_real_literal] = ACTIONS(4000), + [sym_integer_literal] = ACTIONS(3998), + [sym_hex_literal] = ACTIONS(4000), + [sym_bin_literal] = ACTIONS(4000), + [anon_sym_true] = ACTIONS(3998), + [anon_sym_false] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(4000), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4000), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4000), + }, + [3239] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_object] = ACTIONS(5143), + [anon_sym_fun] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_this] = ACTIONS(5143), + [anon_sym_super] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_null] = ACTIONS(5143), + [anon_sym_if] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_when] = ACTIONS(5143), + [anon_sym_try] = ACTIONS(5143), + [anon_sym_throw] = ACTIONS(5143), + [anon_sym_return] = ACTIONS(5143), + [anon_sym_continue] = ACTIONS(5143), + [anon_sym_break] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5145), + [anon_sym_continue_AT] = ACTIONS(5145), + [anon_sym_break_AT] = ACTIONS(5145), + [anon_sym_this_AT] = ACTIONS(5145), + [anon_sym_super_AT] = ACTIONS(5145), + [sym_real_literal] = ACTIONS(5145), + [sym_integer_literal] = ACTIONS(5143), + [sym_hex_literal] = ACTIONS(5145), + [sym_bin_literal] = ACTIONS(5145), + [anon_sym_true] = ACTIONS(5143), + [anon_sym_false] = ACTIONS(5143), + [anon_sym_SQUOTE] = ACTIONS(5145), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5145), + }, + [3240] = { + [sym__alpha_identifier] = ACTIONS(5147), + [anon_sym_AT] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5147), + [anon_sym_object] = ACTIONS(5147), + [anon_sym_fun] = ACTIONS(5147), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5147), + [anon_sym_set] = ACTIONS(5147), + [anon_sym_this] = ACTIONS(5147), + [anon_sym_super] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5147), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_QMARK_COLON] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_null] = ACTIONS(5147), + [anon_sym_if] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5147), + [anon_sym_when] = ACTIONS(5147), + [anon_sym_try] = ACTIONS(5147), + [anon_sym_throw] = ACTIONS(5147), + [anon_sym_return] = ACTIONS(5147), + [anon_sym_continue] = ACTIONS(5147), + [anon_sym_break] = ACTIONS(5147), + [anon_sym_COLON_COLON] = ACTIONS(5149), + [anon_sym_PLUS_EQ] = ACTIONS(5149), + [anon_sym_DASH_EQ] = ACTIONS(5149), + [anon_sym_STAR_EQ] = ACTIONS(5149), + [anon_sym_SLASH_EQ] = ACTIONS(5149), + [anon_sym_PERCENT_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_BANGin] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5147), + [anon_sym_BANGis] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5147), + [anon_sym_as_QMARK] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5149), + [anon_sym_data] = ACTIONS(5147), + [anon_sym_inner] = ACTIONS(5147), + [anon_sym_value] = ACTIONS(5147), + [anon_sym_expect] = ACTIONS(5147), + [anon_sym_actual] = ACTIONS(5147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5149), + [anon_sym_continue_AT] = ACTIONS(5149), + [anon_sym_break_AT] = ACTIONS(5149), + [anon_sym_this_AT] = ACTIONS(5149), + [anon_sym_super_AT] = ACTIONS(5149), + [sym_real_literal] = ACTIONS(5149), + [sym_integer_literal] = ACTIONS(5147), + [sym_hex_literal] = ACTIONS(5149), + [sym_bin_literal] = ACTIONS(5149), + [anon_sym_true] = ACTIONS(5147), + [anon_sym_false] = ACTIONS(5147), + [anon_sym_SQUOTE] = ACTIONS(5149), + [sym__backtick_identifier] = ACTIONS(5149), + [sym__automatic_semicolon] = ACTIONS(5149), + [sym_safe_nav] = ACTIONS(5149), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5149), + }, + [3241] = { + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_object] = ACTIONS(4375), + [anon_sym_fun] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_this] = ACTIONS(4375), + [anon_sym_super] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_null] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_when] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4377), + [anon_sym_continue_AT] = ACTIONS(4377), + [anon_sym_break_AT] = ACTIONS(4377), + [anon_sym_this_AT] = ACTIONS(4377), + [anon_sym_super_AT] = ACTIONS(4377), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4375), + [anon_sym_false] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4377), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4377), + }, + [3242] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_DASH_GT] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [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), + [3243] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_DOT] = ACTIONS(5159), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [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), }, - [3338] = { - [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), + [3244] = { + [sym__alpha_identifier] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_object] = ACTIONS(1616), + [anon_sym_fun] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1616), + [anon_sym_set] = ACTIONS(1616), + [anon_sym_this] = ACTIONS(1616), + [anon_sym_super] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [sym_label] = ACTIONS(1616), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_when] = ACTIONS(1616), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_throw] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_data] = ACTIONS(1616), + [anon_sym_inner] = ACTIONS(1616), + [anon_sym_value] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1616), + [anon_sym_actual] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1614), + [anon_sym_continue_AT] = ACTIONS(1614), + [anon_sym_break_AT] = ACTIONS(1614), + [anon_sym_this_AT] = ACTIONS(1614), + [anon_sym_super_AT] = ACTIONS(1614), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1616), + [sym_hex_literal] = ACTIONS(1614), + [sym_bin_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1614), + [sym__backtick_identifier] = ACTIONS(1614), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1614), + }, + [3245] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(6697), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_object] = ACTIONS(5005), + [anon_sym_fun] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_this] = ACTIONS(5005), + [anon_sym_super] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5005), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_null] = ACTIONS(5005), + [anon_sym_if] = ACTIONS(5005), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_when] = ACTIONS(5005), + [anon_sym_try] = ACTIONS(5005), + [anon_sym_throw] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_continue] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5005), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5007), + [anon_sym_continue_AT] = ACTIONS(5007), + [anon_sym_break_AT] = ACTIONS(5007), + [anon_sym_this_AT] = ACTIONS(5007), + [anon_sym_super_AT] = ACTIONS(5007), + [sym_real_literal] = ACTIONS(5007), + [sym_integer_literal] = ACTIONS(5005), + [sym_hex_literal] = ACTIONS(5007), + [sym_bin_literal] = ACTIONS(5007), + [anon_sym_true] = ACTIONS(5005), + [anon_sym_false] = ACTIONS(5005), + [anon_sym_SQUOTE] = ACTIONS(5007), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5007), + }, + [3246] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_object] = ACTIONS(5029), + [anon_sym_fun] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_this] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_if] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_when] = ACTIONS(5029), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_throw] = ACTIONS(5029), + [anon_sym_return] = ACTIONS(5029), + [anon_sym_continue] = ACTIONS(5029), + [anon_sym_break] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5031), + [anon_sym_continue_AT] = ACTIONS(5031), + [anon_sym_break_AT] = ACTIONS(5031), + [anon_sym_this_AT] = ACTIONS(5031), + [anon_sym_super_AT] = ACTIONS(5031), + [sym_real_literal] = ACTIONS(5031), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5031), + [sym_bin_literal] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5031), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5031), + }, + [3247] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_RBRACK] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_where] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_get] = ACTIONS(4468), + [anon_sym_set] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(4470), + [sym_label] = ACTIONS(4470), + [anon_sym_in] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_QMARK_COLON] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_finally] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_BANGin] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4468), + [anon_sym_BANGis] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_PERCENT] = ACTIONS(4468), + [anon_sym_as_QMARK] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_BANG_BANG] = ACTIONS(4470), + [anon_sym_suspend] = ACTIONS(4468), + [anon_sym_sealed] = ACTIONS(4468), + [anon_sym_annotation] = ACTIONS(4468), + [anon_sym_data] = ACTIONS(4468), + [anon_sym_inner] = ACTIONS(4468), + [anon_sym_value] = ACTIONS(4468), + [anon_sym_override] = ACTIONS(4468), + [anon_sym_lateinit] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_internal] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_tailrec] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_infix] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym_external] = ACTIONS(4468), + [sym_property_modifier] = ACTIONS(4468), + [anon_sym_abstract] = ACTIONS(4468), + [anon_sym_final] = ACTIONS(4468), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_vararg] = ACTIONS(4468), + [anon_sym_noinline] = ACTIONS(4468), + [anon_sym_crossinline] = ACTIONS(4468), + [anon_sym_expect] = ACTIONS(4468), + [anon_sym_actual] = ACTIONS(4468), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4470), + [sym_safe_nav] = ACTIONS(4470), [sym_multiline_comment] = ACTIONS(3), }, - [3339] = { - [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), + [3248] = { + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [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_object] = ACTIONS(4653), + [anon_sym_fun] = 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_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), + }, + [3249] = { + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [3250] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_RBRACK] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_as] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_where] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_get] = ACTIONS(4472), + [anon_sym_set] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_DASH_GT] = ACTIONS(4474), + [sym_label] = ACTIONS(4474), + [anon_sym_in] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4474), + [anon_sym_QMARK_COLON] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_finally] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_PERCENT_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4474), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4474), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_BANGin] = ACTIONS(4474), + [anon_sym_is] = ACTIONS(4472), + [anon_sym_BANGis] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_as_QMARK] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_BANG_BANG] = ACTIONS(4474), + [anon_sym_suspend] = ACTIONS(4472), + [anon_sym_sealed] = ACTIONS(4472), + [anon_sym_annotation] = ACTIONS(4472), + [anon_sym_data] = ACTIONS(4472), + [anon_sym_inner] = ACTIONS(4472), + [anon_sym_value] = ACTIONS(4472), + [anon_sym_override] = ACTIONS(4472), + [anon_sym_lateinit] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_internal] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_tailrec] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_infix] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym_external] = ACTIONS(4472), + [sym_property_modifier] = ACTIONS(4472), + [anon_sym_abstract] = ACTIONS(4472), + [anon_sym_final] = ACTIONS(4472), + [anon_sym_open] = ACTIONS(4472), + [anon_sym_vararg] = ACTIONS(4472), + [anon_sym_noinline] = ACTIONS(4472), + [anon_sym_crossinline] = ACTIONS(4472), + [anon_sym_expect] = ACTIONS(4472), + [anon_sym_actual] = ACTIONS(4472), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4474), + [sym_safe_nav] = ACTIONS(4474), [sym_multiline_comment] = ACTIONS(3), }, - [3340] = { - [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), + [3251] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_DOT] = ACTIONS(5171), + [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_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), - [sym__backtick_identifier] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [3341] = { - [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), + [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), }, - [3342] = { - [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), + [3252] = { + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_object] = ACTIONS(4491), + [anon_sym_fun] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_this] = ACTIONS(4491), + [anon_sym_super] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4491), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_null] = ACTIONS(4491), + [anon_sym_if] = ACTIONS(4491), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_when] = ACTIONS(4491), + [anon_sym_try] = ACTIONS(4491), + [anon_sym_throw] = ACTIONS(4491), + [anon_sym_return] = ACTIONS(4491), + [anon_sym_continue] = ACTIONS(4491), + [anon_sym_break] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4493), + [anon_sym_continue_AT] = ACTIONS(4493), + [anon_sym_break_AT] = ACTIONS(4493), + [anon_sym_this_AT] = ACTIONS(4493), + [anon_sym_super_AT] = ACTIONS(4493), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(4491), + [anon_sym_false] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4493), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4493), }, - [3343] = { - [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), + [3253] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_DOT] = ACTIONS(5163), + [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_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), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [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), }, - [3344] = { - [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), + [3254] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_DOT] = ACTIONS(5167), + [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [3345] = { - [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), - }, - [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_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_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), - [sym__backtick_identifier] = ACTIONS(4357), - [sym_safe_nav] = ACTIONS(4357), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - [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_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), - [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_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), + [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), }, - [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), + [3255] = { + [aux_sym_type_constraints_repeat1] = STATE(3255), + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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(6699), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = 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), }, - [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), + [3256] = { + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), }, - [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), + [3257] = { + [sym__alpha_identifier] = ACTIONS(5211), + [anon_sym_AT] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_COMMA] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_object] = ACTIONS(5211), + [anon_sym_fun] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym_get] = ACTIONS(5211), + [anon_sym_set] = ACTIONS(5211), + [anon_sym_this] = ACTIONS(5211), + [anon_sym_super] = ACTIONS(5211), + [anon_sym_STAR] = ACTIONS(5211), + [sym_label] = ACTIONS(5211), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_QMARK_COLON] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_PIPE_PIPE] = ACTIONS(5213), + [anon_sym_null] = ACTIONS(5211), + [anon_sym_if] = ACTIONS(5211), + [anon_sym_else] = ACTIONS(5211), + [anon_sym_when] = ACTIONS(5211), + [anon_sym_try] = ACTIONS(5211), + [anon_sym_throw] = ACTIONS(5211), + [anon_sym_return] = ACTIONS(5211), + [anon_sym_continue] = ACTIONS(5211), + [anon_sym_break] = ACTIONS(5211), + [anon_sym_COLON_COLON] = ACTIONS(5213), + [anon_sym_PLUS_EQ] = ACTIONS(5213), + [anon_sym_DASH_EQ] = ACTIONS(5213), + [anon_sym_STAR_EQ] = ACTIONS(5213), + [anon_sym_SLASH_EQ] = ACTIONS(5213), + [anon_sym_PERCENT_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5213), + [anon_sym_GT_EQ] = ACTIONS(5213), + [anon_sym_BANGin] = ACTIONS(5213), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_BANGis] = ACTIONS(5213), + [anon_sym_PLUS] = ACTIONS(5211), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_as_QMARK] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5211), + [anon_sym_BANG_BANG] = ACTIONS(5213), + [anon_sym_data] = ACTIONS(5211), + [anon_sym_inner] = ACTIONS(5211), + [anon_sym_value] = ACTIONS(5211), + [anon_sym_expect] = ACTIONS(5211), + [anon_sym_actual] = ACTIONS(5211), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5213), + [anon_sym_continue_AT] = ACTIONS(5213), + [anon_sym_break_AT] = ACTIONS(5213), + [anon_sym_this_AT] = ACTIONS(5213), + [anon_sym_super_AT] = ACTIONS(5213), + [sym_real_literal] = ACTIONS(5213), + [sym_integer_literal] = ACTIONS(5211), + [sym_hex_literal] = ACTIONS(5213), + [sym_bin_literal] = ACTIONS(5213), + [anon_sym_true] = ACTIONS(5211), + [anon_sym_false] = ACTIONS(5211), + [anon_sym_SQUOTE] = ACTIONS(5213), + [sym__backtick_identifier] = ACTIONS(5213), + [sym__automatic_semicolon] = ACTIONS(5213), + [sym_safe_nav] = ACTIONS(5213), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5213), }, - [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), + [3258] = { + [sym__alpha_identifier] = ACTIONS(5207), + [anon_sym_AT] = ACTIONS(5209), + [anon_sym_LBRACK] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5209), + [anon_sym_RBRACE] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_COMMA] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5207), + [anon_sym_GT] = ACTIONS(5207), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_object] = ACTIONS(5207), + [anon_sym_fun] = ACTIONS(5207), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym_get] = ACTIONS(5207), + [anon_sym_set] = ACTIONS(5207), + [anon_sym_this] = ACTIONS(5207), + [anon_sym_super] = ACTIONS(5207), + [anon_sym_STAR] = ACTIONS(5207), + [sym_label] = ACTIONS(5207), + [anon_sym_in] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5209), + [anon_sym_QMARK_COLON] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5209), + [anon_sym_PIPE_PIPE] = ACTIONS(5209), + [anon_sym_null] = ACTIONS(5207), + [anon_sym_if] = ACTIONS(5207), + [anon_sym_else] = ACTIONS(5207), + [anon_sym_when] = ACTIONS(5207), + [anon_sym_try] = ACTIONS(5207), + [anon_sym_throw] = ACTIONS(5207), + [anon_sym_return] = ACTIONS(5207), + [anon_sym_continue] = ACTIONS(5207), + [anon_sym_break] = ACTIONS(5207), + [anon_sym_COLON_COLON] = ACTIONS(5209), + [anon_sym_PLUS_EQ] = ACTIONS(5209), + [anon_sym_DASH_EQ] = ACTIONS(5209), + [anon_sym_STAR_EQ] = ACTIONS(5209), + [anon_sym_SLASH_EQ] = ACTIONS(5209), + [anon_sym_PERCENT_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5209), + [anon_sym_LT_EQ] = ACTIONS(5209), + [anon_sym_GT_EQ] = ACTIONS(5209), + [anon_sym_BANGin] = ACTIONS(5209), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_BANGis] = ACTIONS(5209), + [anon_sym_PLUS] = ACTIONS(5207), + [anon_sym_DASH] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5207), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_as_QMARK] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5209), + [anon_sym_DASH_DASH] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5207), + [anon_sym_BANG_BANG] = ACTIONS(5209), + [anon_sym_data] = ACTIONS(5207), + [anon_sym_inner] = ACTIONS(5207), + [anon_sym_value] = ACTIONS(5207), + [anon_sym_expect] = ACTIONS(5207), + [anon_sym_actual] = ACTIONS(5207), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5209), + [anon_sym_continue_AT] = ACTIONS(5209), + [anon_sym_break_AT] = ACTIONS(5209), + [anon_sym_this_AT] = ACTIONS(5209), + [anon_sym_super_AT] = ACTIONS(5209), + [sym_real_literal] = ACTIONS(5209), + [sym_integer_literal] = ACTIONS(5207), + [sym_hex_literal] = ACTIONS(5209), + [sym_bin_literal] = ACTIONS(5209), + [anon_sym_true] = ACTIONS(5207), + [anon_sym_false] = ACTIONS(5207), + [anon_sym_SQUOTE] = ACTIONS(5209), + [sym__backtick_identifier] = ACTIONS(5209), + [sym__automatic_semicolon] = ACTIONS(5209), + [sym_safe_nav] = ACTIONS(5209), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5209), }, - [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), + [3259] = { + [sym__alpha_identifier] = ACTIONS(5215), + [anon_sym_AT] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_DOT] = ACTIONS(5215), + [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_object] = ACTIONS(5215), + [anon_sym_fun] = 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), }, - [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), + [3260] = { + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_object] = ACTIONS(4411), + [anon_sym_fun] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_this] = ACTIONS(4411), + [anon_sym_super] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4411), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4411), + [anon_sym_if] = ACTIONS(4411), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_when] = ACTIONS(4411), + [anon_sym_try] = ACTIONS(4411), + [anon_sym_throw] = ACTIONS(4411), + [anon_sym_return] = ACTIONS(4411), + [anon_sym_continue] = ACTIONS(4411), + [anon_sym_break] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4411), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4413), + [anon_sym_continue_AT] = ACTIONS(4413), + [anon_sym_break_AT] = ACTIONS(4413), + [anon_sym_this_AT] = ACTIONS(4413), + [anon_sym_super_AT] = ACTIONS(4413), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(4411), + [anon_sym_false] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4413), }, - [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), + [3261] = { + [sym__alpha_identifier] = ACTIONS(5185), + [anon_sym_AT] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5185), + [anon_sym_object] = ACTIONS(5185), + [anon_sym_fun] = ACTIONS(5185), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5185), + [anon_sym_set] = ACTIONS(5185), + [anon_sym_this] = ACTIONS(5185), + [anon_sym_super] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [sym_label] = ACTIONS(5185), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_QMARK_COLON] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_null] = ACTIONS(5185), + [anon_sym_if] = ACTIONS(5185), + [anon_sym_else] = ACTIONS(5185), + [anon_sym_when] = ACTIONS(5185), + [anon_sym_try] = ACTIONS(5185), + [anon_sym_throw] = ACTIONS(5185), + [anon_sym_return] = ACTIONS(5185), + [anon_sym_continue] = ACTIONS(5185), + [anon_sym_break] = ACTIONS(5185), + [anon_sym_COLON_COLON] = ACTIONS(5187), + [anon_sym_PLUS_EQ] = ACTIONS(5187), + [anon_sym_DASH_EQ] = ACTIONS(5187), + [anon_sym_STAR_EQ] = ACTIONS(5187), + [anon_sym_SLASH_EQ] = ACTIONS(5187), + [anon_sym_PERCENT_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_BANGin] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5185), + [anon_sym_BANGis] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_as_QMARK] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_BANG_BANG] = ACTIONS(5187), + [anon_sym_data] = ACTIONS(5185), + [anon_sym_inner] = ACTIONS(5185), + [anon_sym_value] = ACTIONS(5185), + [anon_sym_expect] = ACTIONS(5185), + [anon_sym_actual] = ACTIONS(5185), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5187), + [anon_sym_continue_AT] = ACTIONS(5187), + [anon_sym_break_AT] = ACTIONS(5187), + [anon_sym_this_AT] = ACTIONS(5187), + [anon_sym_super_AT] = ACTIONS(5187), + [sym_real_literal] = ACTIONS(5187), + [sym_integer_literal] = ACTIONS(5185), + [sym_hex_literal] = ACTIONS(5187), + [sym_bin_literal] = ACTIONS(5187), + [anon_sym_true] = ACTIONS(5185), + [anon_sym_false] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5187), + [sym__backtick_identifier] = ACTIONS(5187), + [sym__automatic_semicolon] = ACTIONS(5187), + [sym_safe_nav] = ACTIONS(5187), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5187), }, - [3356] = { - [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), + [3262] = { + [sym__alpha_identifier] = ACTIONS(5151), + [anon_sym_AT] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_object] = ACTIONS(5151), + [anon_sym_fun] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5151), + [anon_sym_set] = ACTIONS(5151), + [anon_sym_this] = ACTIONS(5151), + [anon_sym_super] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5151), + [sym_label] = ACTIONS(5151), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_null] = ACTIONS(5151), + [anon_sym_if] = ACTIONS(5151), + [anon_sym_else] = ACTIONS(5151), + [anon_sym_when] = ACTIONS(5151), + [anon_sym_try] = ACTIONS(5151), + [anon_sym_throw] = ACTIONS(5151), + [anon_sym_return] = ACTIONS(5151), + [anon_sym_continue] = ACTIONS(5151), + [anon_sym_break] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5153), + [anon_sym_PLUS_EQ] = ACTIONS(5153), + [anon_sym_DASH_EQ] = ACTIONS(5153), + [anon_sym_STAR_EQ] = ACTIONS(5153), + [anon_sym_SLASH_EQ] = ACTIONS(5153), + [anon_sym_PERCENT_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_BANGin] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5151), + [anon_sym_BANGis] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5151), + [anon_sym_as_QMARK] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5151), + [anon_sym_BANG_BANG] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5151), + [anon_sym_inner] = ACTIONS(5151), + [anon_sym_value] = ACTIONS(5151), + [anon_sym_expect] = ACTIONS(5151), + [anon_sym_actual] = ACTIONS(5151), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5153), + [anon_sym_continue_AT] = ACTIONS(5153), + [anon_sym_break_AT] = ACTIONS(5153), + [anon_sym_this_AT] = ACTIONS(5153), + [anon_sym_super_AT] = ACTIONS(5153), + [sym_real_literal] = ACTIONS(5153), + [sym_integer_literal] = ACTIONS(5151), + [sym_hex_literal] = ACTIONS(5153), + [sym_bin_literal] = ACTIONS(5153), + [anon_sym_true] = ACTIONS(5151), + [anon_sym_false] = ACTIONS(5151), + [anon_sym_SQUOTE] = ACTIONS(5153), + [sym__backtick_identifier] = ACTIONS(5153), + [sym__automatic_semicolon] = ACTIONS(5153), + [sym_safe_nav] = ACTIONS(5153), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5153), }, - [3357] = { - [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), + [3263] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [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_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), - [sym__backtick_identifier] = ACTIONS(4734), - [sym_safe_nav] = ACTIONS(4734), + [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), }, - [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), + [3264] = { + [sym_function_body] = STATE(3448), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_RBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_DASH_GT] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), [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), + [3265] = { + [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), + [anon_sym_AMP] = ACTIONS(6702), + [sym__quest] = ACTIONS(4224), + [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), - [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), + [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), }, - [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), + [3266] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_DOT] = ACTIONS(5199), + [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_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), }, - [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), + [3267] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), + [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_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), }, - [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), + [3268] = { + [sym_function_body] = STATE(3435), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_RBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6518), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_DASH_GT] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [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), + [3269] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_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), - [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), + [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), }, - [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), + [3270] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5219), + [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_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), }, - [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), + [3271] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [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), + [3272] = { + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6464), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [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), + [3273] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6704), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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), - [sym__backtick_identifier] = ACTIONS(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [3373] = { - [sym_function_body] = STATE(3900), - [sym__block] = STATE(3882), + [3274] = { [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [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_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_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6708), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), [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), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), [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_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [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(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [3275] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4764), + [sym_label] = ACTIONS(4764), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_while] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [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(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [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_AT2] = ACTIONS(6712), + [sym__backtick_identifier] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3276] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_while] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3277] = { + [sym_type_constraints] = STATE(3662), + [sym_function_body] = STATE(3841), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6714), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = 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(4218), - [sym__automatic_semicolon] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3278] = { + [sym_type_arguments] = STATE(6557), + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4186), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), [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), - }, - [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), - }, - [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_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(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), - }, - [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), + [3279] = { + [sym_type_constraints] = STATE(3666), + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [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_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] = { - [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), + [3280] = { + [sym_type_constraints] = STATE(3669), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6724), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [3385] = { - [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), + [3281] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3386] = { - [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), + [3282] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_RBRACK] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_RPAREN] = ACTIONS(4721), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_DASH_GT] = ACTIONS(4721), + [sym_label] = ACTIONS(4721), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4721), + [anon_sym_QMARK_COLON] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4721), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_BANGin] = ACTIONS(4721), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_BANG_BANG] = ACTIONS(4721), + [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(4721), + [sym_safe_nav] = ACTIONS(4721), [sym_multiline_comment] = ACTIONS(3), }, - [3387] = { - [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), + [3283] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_RBRACK] = ACTIONS(4738), + [anon_sym_DOT] = 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_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_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), }, - [3388] = { - [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_LBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [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(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), - [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), + [3284] = { + [sym__alpha_identifier] = ACTIONS(4573), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_RBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4573), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4573), + [anon_sym_where] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4573), + [anon_sym_set] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4573), + [anon_sym_DASH_GT] = ACTIONS(4575), + [sym_label] = ACTIONS(4575), + [anon_sym_in] = ACTIONS(4573), + [anon_sym_while] = ACTIONS(4573), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_else] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4573), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_SLASH] = ACTIONS(4573), + [anon_sym_PERCENT] = ACTIONS(4573), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4573), + [anon_sym_sealed] = ACTIONS(4573), + [anon_sym_annotation] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4573), + [anon_sym_inner] = ACTIONS(4573), + [anon_sym_value] = ACTIONS(4573), + [anon_sym_override] = ACTIONS(4573), + [anon_sym_lateinit] = ACTIONS(4573), + [anon_sym_public] = ACTIONS(4573), + [anon_sym_private] = ACTIONS(4573), + [anon_sym_internal] = ACTIONS(4573), + [anon_sym_protected] = ACTIONS(4573), + [anon_sym_tailrec] = ACTIONS(4573), + [anon_sym_operator] = ACTIONS(4573), + [anon_sym_infix] = ACTIONS(4573), + [anon_sym_inline] = ACTIONS(4573), + [anon_sym_external] = ACTIONS(4573), + [sym_property_modifier] = ACTIONS(4573), + [anon_sym_abstract] = ACTIONS(4573), + [anon_sym_final] = ACTIONS(4573), + [anon_sym_open] = ACTIONS(4573), + [anon_sym_vararg] = ACTIONS(4573), + [anon_sym_noinline] = ACTIONS(4573), + [anon_sym_crossinline] = ACTIONS(4573), + [anon_sym_expect] = ACTIONS(4573), + [anon_sym_actual] = ACTIONS(4573), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), [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), + [3285] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [3286] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [3287] = { + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = 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), }, - [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), + [3288] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_RBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [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_by] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = 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), [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), + [3289] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4305), - [sym__automatic_semicolon] = ACTIONS(4305), - [sym_safe_nav] = ACTIONS(4305), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3394] = { - [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), + [3290] = { + [sym__alpha_identifier] = ACTIONS(4744), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_RBRACK] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4744), + [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_by] = ACTIONS(4744), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_where] = 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_multiline_comment] = ACTIONS(3), }, - [3395] = { - [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), + [3291] = { + [sym_type_constraints] = STATE(3678), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6770), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [3396] = { - [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), + [3292] = { + [sym_type_constraints] = STATE(3699), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [3397] = { - [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), + [3293] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_DASH_GT] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_while] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), [sym_multiline_comment] = ACTIONS(3), }, - [3398] = { - [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), + [3294] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(6695), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_DASH_GT] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + }, + [3295] = { + [sym__alpha_identifier] = ACTIONS(4581), + [anon_sym_AT] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_RBRACK] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4581), + [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_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(5049), - [sym_safe_nav] = ACTIONS(5049), + [anon_sym_L] = ACTIONS(6774), + [sym__backtick_identifier] = ACTIONS(4583), + [sym_safe_nav] = ACTIONS(4583), [sym_multiline_comment] = ACTIONS(3), }, - [3399] = { + [3296] = { + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_RBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_RPAREN] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_label] = ACTIONS(4517), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_while] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + }, + [3297] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [3298] = { + [sym_class_body] = STATE(3441), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5468), + [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_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), + }, + [3299] = { + [sym_type_constraints] = STATE(3765), + [sym_function_body] = STATE(3503), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [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), + }, + [3300] = { + [sym_type_constraints] = STATE(3767), + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [3301] = { + [sym__alpha_identifier] = ACTIONS(4625), + [anon_sym_AT] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4627), + [anon_sym_RBRACK] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_where] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_get] = ACTIONS(4625), + [anon_sym_set] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4625), + [anon_sym_DASH_GT] = ACTIONS(4627), + [sym_label] = ACTIONS(4627), + [anon_sym_in] = ACTIONS(4625), + [anon_sym_while] = ACTIONS(4625), + [anon_sym_DOT_DOT] = ACTIONS(4627), + [anon_sym_QMARK_COLON] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_else] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_BANGin] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4625), + [anon_sym_BANGis] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4625), + [anon_sym_PERCENT] = ACTIONS(4625), + [anon_sym_as_QMARK] = ACTIONS(4627), + [anon_sym_PLUS_PLUS] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4627), + [anon_sym_BANG_BANG] = ACTIONS(4627), + [anon_sym_suspend] = ACTIONS(4625), + [anon_sym_sealed] = ACTIONS(4625), + [anon_sym_annotation] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4625), + [anon_sym_inner] = ACTIONS(4625), + [anon_sym_value] = ACTIONS(4625), + [anon_sym_override] = ACTIONS(4625), + [anon_sym_lateinit] = ACTIONS(4625), + [anon_sym_public] = ACTIONS(4625), + [anon_sym_private] = ACTIONS(4625), + [anon_sym_internal] = ACTIONS(4625), + [anon_sym_protected] = ACTIONS(4625), + [anon_sym_tailrec] = ACTIONS(4625), + [anon_sym_operator] = ACTIONS(4625), + [anon_sym_infix] = ACTIONS(4625), + [anon_sym_inline] = ACTIONS(4625), + [anon_sym_external] = ACTIONS(4625), + [sym_property_modifier] = ACTIONS(4625), + [anon_sym_abstract] = ACTIONS(4625), + [anon_sym_final] = ACTIONS(4625), + [anon_sym_open] = ACTIONS(4625), + [anon_sym_vararg] = ACTIONS(4625), + [anon_sym_noinline] = ACTIONS(4625), + [anon_sym_crossinline] = ACTIONS(4625), + [anon_sym_expect] = ACTIONS(4625), + [anon_sym_actual] = ACTIONS(4625), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4627), + [sym_safe_nav] = ACTIONS(4627), + [sym_multiline_comment] = ACTIONS(3), + }, + [3302] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_RBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT] = ACTIONS(4521), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_while] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), + [sym_multiline_comment] = ACTIONS(3), + }, + [3303] = { + [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_DOT] = ACTIONS(4577), + [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_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), + }, + [3304] = { + [sym_class_body] = STATE(3567), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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), + }, + [3305] = { + [aux_sym_user_type_repeat1] = STATE(3307), [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_DOT] = ACTIONS(6782), + [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_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_AMP] = ACTIONS(4122), + [sym__quest] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [sym_label] = ACTIONS(4124), [anon_sym_in] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = 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_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), @@ -395769,4759 +384559,5392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [3400] = { - [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), + [3306] = { + [sym_enum_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5614), + [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_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), }, - [3401] = { - [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), + [3307] = { + [aux_sym_user_type_repeat1] = STATE(3307), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), [sym_multiline_comment] = ACTIONS(3), }, - [3402] = { - [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), + [3308] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3131), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3403] = { - [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), + [3309] = { + [sym_type_constraints] = STATE(3768), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [3404] = { - [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), + [3310] = { + [sym_class_body] = STATE(3600), + [sym__alpha_identifier] = ACTIONS(4621), + [anon_sym_AT] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_RBRACK] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_where] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_get] = ACTIONS(4621), + [anon_sym_set] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4621), + [anon_sym_DASH_GT] = ACTIONS(4623), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4621), + [anon_sym_while] = ACTIONS(4621), + [anon_sym_DOT_DOT] = ACTIONS(4623), + [anon_sym_QMARK_COLON] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4621), + [anon_sym_COLON_COLON] = ACTIONS(4623), + [anon_sym_PLUS_EQ] = ACTIONS(4623), + [anon_sym_DASH_EQ] = ACTIONS(4623), + [anon_sym_STAR_EQ] = ACTIONS(4623), + [anon_sym_SLASH_EQ] = ACTIONS(4623), + [anon_sym_PERCENT_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_BANGin] = ACTIONS(4623), + [anon_sym_is] = ACTIONS(4621), + [anon_sym_BANGis] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_as_QMARK] = ACTIONS(4623), + [anon_sym_PLUS_PLUS] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4623), + [anon_sym_suspend] = ACTIONS(4621), + [anon_sym_sealed] = ACTIONS(4621), + [anon_sym_annotation] = ACTIONS(4621), + [anon_sym_data] = ACTIONS(4621), + [anon_sym_inner] = ACTIONS(4621), + [anon_sym_value] = ACTIONS(4621), + [anon_sym_override] = ACTIONS(4621), + [anon_sym_lateinit] = ACTIONS(4621), + [anon_sym_public] = ACTIONS(4621), + [anon_sym_private] = ACTIONS(4621), + [anon_sym_internal] = ACTIONS(4621), + [anon_sym_protected] = ACTIONS(4621), + [anon_sym_tailrec] = ACTIONS(4621), + [anon_sym_operator] = ACTIONS(4621), + [anon_sym_infix] = ACTIONS(4621), + [anon_sym_inline] = ACTIONS(4621), + [anon_sym_external] = ACTIONS(4621), + [sym_property_modifier] = ACTIONS(4621), + [anon_sym_abstract] = ACTIONS(4621), + [anon_sym_final] = ACTIONS(4621), + [anon_sym_open] = ACTIONS(4621), + [anon_sym_vararg] = ACTIONS(4621), + [anon_sym_noinline] = ACTIONS(4621), + [anon_sym_crossinline] = ACTIONS(4621), + [anon_sym_expect] = ACTIONS(4621), + [anon_sym_actual] = ACTIONS(4621), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4623), + [sym_safe_nav] = ACTIONS(4623), [sym_multiline_comment] = ACTIONS(3), }, - [3405] = { - [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(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), + [3311] = { + [sym_type_constraints] = STATE(3769), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6790), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [3407] = { - [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), + [3312] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4206), }, - [3408] = { - [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), + [3313] = { + [sym_type_constraints] = STATE(3771), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3314] = { + [sym_type_arguments] = STATE(3496), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_as] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_by] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_where] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [sym__quest] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [sym_label] = ACTIONS(4161), + [anon_sym_in] = ACTIONS(4159), + [anon_sym_DOT_DOT] = ACTIONS(4161), + [anon_sym_QMARK_COLON] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_else] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4161), + [anon_sym_EQ_EQ] = ACTIONS(4159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_BANGin] = ACTIONS(4161), + [anon_sym_is] = ACTIONS(4159), + [anon_sym_BANGis] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_as_QMARK] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG_BANG] = ACTIONS(4161), + [anon_sym_suspend] = ACTIONS(4159), + [anon_sym_sealed] = ACTIONS(4159), + [anon_sym_annotation] = ACTIONS(4159), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_override] = ACTIONS(4159), + [anon_sym_lateinit] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_private] = ACTIONS(4159), + [anon_sym_internal] = ACTIONS(4159), + [anon_sym_protected] = ACTIONS(4159), + [anon_sym_tailrec] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_infix] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_external] = ACTIONS(4159), + [sym_property_modifier] = ACTIONS(4159), + [anon_sym_abstract] = ACTIONS(4159), + [anon_sym_final] = ACTIONS(4159), + [anon_sym_open] = ACTIONS(4159), + [anon_sym_vararg] = ACTIONS(4159), + [anon_sym_noinline] = ACTIONS(4159), + [anon_sym_crossinline] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4161), + [sym__automatic_semicolon] = ACTIONS(4161), + [sym_safe_nav] = ACTIONS(4161), [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), + [3315] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_RBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), [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), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_RPAREN] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_DASH_GT] = ACTIONS(4269), + [sym_label] = ACTIONS(4269), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(4269), + [sym_safe_nav] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), }, - [3411] = { - [sym__alpha_identifier] = ACTIONS(4281), - [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(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(4284), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [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(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(4284), - [sym_safe_nav] = ACTIONS(4284), + [3316] = { + [sym_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5468), + [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_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), }, - [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), + [3317] = { + [sym_class_body] = STATE(3377), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_RBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_DASH_GT] = ACTIONS(4381), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_while] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), + }, + [3318] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [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_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), - [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__backtick_identifier] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), [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), + [3319] = { + [sym__alpha_identifier] = ACTIONS(4643), + [anon_sym_AT] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_RBRACK] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(4645), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_RPAREN] = ACTIONS(4645), + [anon_sym_LT] = ACTIONS(4643), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_where] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_get] = ACTIONS(4643), + [anon_sym_set] = ACTIONS(4643), + [anon_sym_STAR] = ACTIONS(4643), + [anon_sym_DASH_GT] = ACTIONS(4645), + [sym_label] = ACTIONS(4645), + [anon_sym_in] = ACTIONS(4643), + [anon_sym_while] = ACTIONS(4643), + [anon_sym_DOT_DOT] = ACTIONS(4645), + [anon_sym_QMARK_COLON] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_else] = ACTIONS(4643), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PLUS_EQ] = ACTIONS(4645), + [anon_sym_DASH_EQ] = ACTIONS(4645), + [anon_sym_STAR_EQ] = ACTIONS(4645), + [anon_sym_SLASH_EQ] = ACTIONS(4645), + [anon_sym_PERCENT_EQ] = ACTIONS(4645), + [anon_sym_BANG_EQ] = ACTIONS(4643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4645), + [anon_sym_EQ_EQ] = ACTIONS(4643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4645), + [anon_sym_LT_EQ] = ACTIONS(4645), + [anon_sym_GT_EQ] = ACTIONS(4645), + [anon_sym_BANGin] = ACTIONS(4645), + [anon_sym_is] = ACTIONS(4643), + [anon_sym_BANGis] = ACTIONS(4645), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_as_QMARK] = ACTIONS(4645), + [anon_sym_PLUS_PLUS] = ACTIONS(4645), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_BANG_BANG] = ACTIONS(4645), + [anon_sym_suspend] = ACTIONS(4643), + [anon_sym_sealed] = ACTIONS(4643), + [anon_sym_annotation] = ACTIONS(4643), + [anon_sym_data] = ACTIONS(4643), + [anon_sym_inner] = ACTIONS(4643), + [anon_sym_value] = ACTIONS(4643), + [anon_sym_override] = ACTIONS(4643), + [anon_sym_lateinit] = ACTIONS(4643), + [anon_sym_public] = ACTIONS(4643), + [anon_sym_private] = ACTIONS(4643), + [anon_sym_internal] = ACTIONS(4643), + [anon_sym_protected] = ACTIONS(4643), + [anon_sym_tailrec] = ACTIONS(4643), + [anon_sym_operator] = ACTIONS(4643), + [anon_sym_infix] = ACTIONS(4643), + [anon_sym_inline] = ACTIONS(4643), + [anon_sym_external] = ACTIONS(4643), + [sym_property_modifier] = ACTIONS(4643), + [anon_sym_abstract] = ACTIONS(4643), + [anon_sym_final] = ACTIONS(4643), + [anon_sym_open] = ACTIONS(4643), + [anon_sym_vararg] = ACTIONS(4643), + [anon_sym_noinline] = ACTIONS(4643), + [anon_sym_crossinline] = ACTIONS(4643), + [anon_sym_expect] = ACTIONS(4643), + [anon_sym_actual] = ACTIONS(4643), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4645), + [sym_safe_nav] = ACTIONS(4645), [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), + [3320] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_RBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4696), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_while] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), [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), + [3321] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_by] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), + [sym__quest] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [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), + [3322] = { + [sym__alpha_identifier] = ACTIONS(4647), + [anon_sym_AT] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_RBRACK] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [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_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_where] = 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), }, - [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), + [3323] = { + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), }, - [3418] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_RBRACK] = 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(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(4284), - [anon_sym_get] = ACTIONS(4281), - [anon_sym_set] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(4281), - [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(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_safe_nav] = ACTIONS(4284), + [3324] = { + [sym_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3325] = { + [sym_enum_class_body] = STATE(3433), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3326] = { + [sym__alpha_identifier] = ACTIONS(4748), + [anon_sym_AT] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_where] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_get] = ACTIONS(4748), + [anon_sym_set] = ACTIONS(4748), + [anon_sym_STAR] = ACTIONS(4748), + [anon_sym_DASH_GT] = ACTIONS(4751), + [sym_label] = ACTIONS(4751), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_QMARK_COLON] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_COLON_COLON] = ACTIONS(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_BANGin] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4748), + [anon_sym_BANGis] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_BANG_BANG] = ACTIONS(4751), + [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(4751), + [sym_safe_nav] = ACTIONS(4751), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3327] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_RBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_by] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_DASH_GT] = ACTIONS(4674), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3328] = { + [aux_sym_user_type_repeat1] = STATE(3305), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6796), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_AMP] = ACTIONS(4139), + [sym__quest] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4139), + [sym_label] = ACTIONS(4141), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3329] = { + [sym_enum_class_body] = STATE(3563), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_RPAREN] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_DASH_GT] = ACTIONS(4637), + [sym_label] = ACTIONS(4637), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_while] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3330] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_by] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4190), + [sym__quest] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + }, + [3331] = { + [sym_enum_class_body] = STATE(3578), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_RBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4509), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + }, + [3332] = { + [sym_class_body] = STATE(3584), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_RBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_while] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + }, + [3333] = { + [sym_enum_class_body] = STATE(3584), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_RBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_while] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + }, + [3334] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5127), - [sym_safe_nav] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3335] = { + [sym_type_constraints] = STATE(3652), + [sym_function_body] = STATE(3200), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_STAR] = ACTIONS(4155), + [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_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(4155), + [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), }, - [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), + [3336] = { + [sym_type_constraints] = STATE(3653), + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [3337] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3338] = { + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_RBRACK] = ACTIONS(4742), + [anon_sym_DOT] = ACTIONS(4740), + [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_by] = ACTIONS(4740), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = 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), }, - [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), + [3339] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_RBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [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_by] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = 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(4868), - [sym_safe_nav] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4756), + [sym_safe_nav] = ACTIONS(4756), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3340] = { + [sym_type_constraints] = STATE(3655), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3341] = { + [sym_enum_class_body] = STATE(3592), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_RBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_DASH_GT] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_while] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3342] = { + [sym_class_body] = STATE(3550), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_RBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_DASH_GT] = ACTIONS(4377), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + }, + [3343] = { + [sym_enum_class_body] = STATE(3550), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_RBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_DASH_GT] = ACTIONS(4377), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + }, + [3344] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6732), + [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_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(6738), + [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(6750), + [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(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(4277), - [sym_safe_nav] = ACTIONS(4277), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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_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), + [3345] = { + [sym_type_constraints] = STATE(3634), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3346] = { + [sym_type_constraints] = STATE(3659), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3347] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6732), + [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_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6738), + [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(6750), + [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(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3432] = { - [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), + [3348] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3433] = { - [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), + [3349] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3104), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4265), }, - [3434] = { - [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), + [3350] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4287), }, - [3435] = { - [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), + [3351] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(6734), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3100), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(6744), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6754), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6756), + [anon_sym_GT_EQ] = ACTIONS(6756), + [anon_sym_BANGin] = ACTIONS(6758), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3436] = { - [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), + [3352] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3112), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5169), - [sym_safe_nav] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3437] = { - [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), + [3353] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [3438] = { - [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), + [3354] = { + [sym_class_body] = STATE(3536), + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_RBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_as] = ACTIONS(4653), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_LBRACE] = ACTIONS(5468), + [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_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), + [sym__backtick_identifier] = ACTIONS(4655), + [sym_safe_nav] = ACTIONS(4655), [sym_multiline_comment] = ACTIONS(3), }, - [3439] = { - [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), + [3355] = { + [sym_catch_block] = STATE(3355), + [aux_sym_try_expression_repeat1] = STATE(3355), + [sym__alpha_identifier] = ACTIONS(4146), + [anon_sym_AT] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_as] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4146), + [anon_sym_GT] = ACTIONS(4146), + [anon_sym_where] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym_get] = ACTIONS(4146), + [anon_sym_set] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [sym_label] = ACTIONS(4148), + [anon_sym_in] = ACTIONS(4146), + [anon_sym_DOT_DOT] = ACTIONS(4148), + [anon_sym_QMARK_COLON] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_PIPE_PIPE] = ACTIONS(4148), + [anon_sym_else] = ACTIONS(4146), + [anon_sym_catch] = ACTIONS(6811), + [anon_sym_finally] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), + [anon_sym_DASH_EQ] = ACTIONS(4148), + [anon_sym_STAR_EQ] = ACTIONS(4148), + [anon_sym_SLASH_EQ] = ACTIONS(4148), + [anon_sym_PERCENT_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ] = ACTIONS(4146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ] = ACTIONS(4146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4148), + [anon_sym_LT_EQ] = ACTIONS(4148), + [anon_sym_GT_EQ] = ACTIONS(4148), + [anon_sym_BANGin] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4146), + [anon_sym_BANGis] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_PERCENT] = ACTIONS(4146), + [anon_sym_as_QMARK] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4148), + [anon_sym_suspend] = ACTIONS(4146), + [anon_sym_sealed] = ACTIONS(4146), + [anon_sym_annotation] = ACTIONS(4146), + [anon_sym_data] = ACTIONS(4146), + [anon_sym_inner] = ACTIONS(4146), + [anon_sym_value] = ACTIONS(4146), + [anon_sym_override] = ACTIONS(4146), + [anon_sym_lateinit] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_internal] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_tailrec] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_infix] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym_external] = ACTIONS(4146), + [sym_property_modifier] = ACTIONS(4146), + [anon_sym_abstract] = ACTIONS(4146), + [anon_sym_final] = ACTIONS(4146), + [anon_sym_open] = ACTIONS(4146), + [anon_sym_vararg] = ACTIONS(4146), + [anon_sym_noinline] = ACTIONS(4146), + [anon_sym_crossinline] = ACTIONS(4146), + [anon_sym_expect] = ACTIONS(4146), + [anon_sym_actual] = ACTIONS(4146), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4148), + [sym__automatic_semicolon] = ACTIONS(4148), + [sym_safe_nav] = ACTIONS(4148), [sym_multiline_comment] = ACTIONS(3), }, - [3440] = { - [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), + [3356] = { + [sym__alpha_identifier] = ACTIONS(4657), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_RBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_as] = ACTIONS(4657), + [anon_sym_EQ] = ACTIONS(4657), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4657), + [anon_sym_set] = ACTIONS(4657), + [anon_sym_STAR] = ACTIONS(4657), + [anon_sym_DASH_GT] = ACTIONS(4659), + [sym_label] = ACTIONS(4659), + [anon_sym_in] = ACTIONS(4657), + [anon_sym_while] = ACTIONS(4657), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_else] = ACTIONS(4657), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4657), + [anon_sym_BANGis] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_as_QMARK] = ACTIONS(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [anon_sym_suspend] = ACTIONS(4657), + [anon_sym_sealed] = ACTIONS(4657), + [anon_sym_annotation] = ACTIONS(4657), + [anon_sym_data] = ACTIONS(4657), + [anon_sym_inner] = ACTIONS(4657), + [anon_sym_value] = ACTIONS(4657), + [anon_sym_override] = ACTIONS(4657), + [anon_sym_lateinit] = ACTIONS(4657), + [anon_sym_public] = ACTIONS(4657), + [anon_sym_private] = ACTIONS(4657), + [anon_sym_internal] = ACTIONS(4657), + [anon_sym_protected] = ACTIONS(4657), + [anon_sym_tailrec] = ACTIONS(4657), + [anon_sym_operator] = ACTIONS(4657), + [anon_sym_infix] = ACTIONS(4657), + [anon_sym_inline] = ACTIONS(4657), + [anon_sym_external] = ACTIONS(4657), + [sym_property_modifier] = ACTIONS(4657), + [anon_sym_abstract] = ACTIONS(4657), + [anon_sym_final] = ACTIONS(4657), + [anon_sym_open] = ACTIONS(4657), + [anon_sym_vararg] = ACTIONS(4657), + [anon_sym_noinline] = ACTIONS(4657), + [anon_sym_crossinline] = ACTIONS(4657), + [anon_sym_expect] = ACTIONS(4657), + [anon_sym_actual] = ACTIONS(4657), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), [sym_multiline_comment] = ACTIONS(3), }, - [3441] = { - [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), + [3357] = { + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, - [3442] = { - [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), + [3358] = { + [sym_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_RBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_while] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [sym_multiline_comment] = ACTIONS(3), }, - [3443] = { - [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), + [3359] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1553), + [sym__in_operator] = STATE(1558), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1573), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6732), + [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_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(6736), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(6742), + [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(6750), + [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(6764), + [anon_sym_DASH] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_PERCENT] = ACTIONS(6736), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(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__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4876), }, - [3444] = { - [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), + [3360] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_RBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [anon_sym_DASH_GT] = ACTIONS(4667), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_while] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), }, - [3445] = { - [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), + [3361] = { + [sym_enum_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_RBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_while] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), }, - [3446] = { - [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(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__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(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), + [3362] = { + [sym_class_body] = STATE(3446), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_DASH_GT] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_while] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), [sym_multiline_comment] = ACTIONS(3), }, - [3450] = { - [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), + [3363] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_RBRACK] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4728), + [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_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = 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(4265), - [sym_safe_nav] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4730), + [sym_safe_nav] = ACTIONS(4730), [sym_multiline_comment] = ACTIONS(3), }, - [3451] = { - [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), + [3364] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), [sym_multiline_comment] = ACTIONS(3), }, - [3452] = { - [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), + [3365] = { + [sym__alpha_identifier] = ACTIONS(4661), + [anon_sym_AT] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_RBRACK] = ACTIONS(4663), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_as] = ACTIONS(4661), + [anon_sym_EQ] = ACTIONS(4661), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_RPAREN] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_get] = ACTIONS(4661), + [anon_sym_set] = ACTIONS(4661), + [anon_sym_STAR] = ACTIONS(4661), + [anon_sym_DASH_GT] = ACTIONS(4663), + [sym_label] = ACTIONS(4663), + [anon_sym_in] = ACTIONS(4661), + [anon_sym_while] = ACTIONS(4661), + [anon_sym_DOT_DOT] = ACTIONS(4663), + [anon_sym_QMARK_COLON] = ACTIONS(4663), + [anon_sym_AMP_AMP] = ACTIONS(4663), + [anon_sym_PIPE_PIPE] = ACTIONS(4663), + [anon_sym_else] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4663), + [anon_sym_PLUS_EQ] = ACTIONS(4663), + [anon_sym_DASH_EQ] = ACTIONS(4663), + [anon_sym_STAR_EQ] = ACTIONS(4663), + [anon_sym_SLASH_EQ] = ACTIONS(4663), + [anon_sym_PERCENT_EQ] = ACTIONS(4663), + [anon_sym_BANG_EQ] = ACTIONS(4661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), + [anon_sym_EQ_EQ] = ACTIONS(4661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), + [anon_sym_LT_EQ] = ACTIONS(4663), + [anon_sym_GT_EQ] = ACTIONS(4663), + [anon_sym_BANGin] = ACTIONS(4663), + [anon_sym_is] = ACTIONS(4661), + [anon_sym_BANGis] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4661), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4661), + [anon_sym_PERCENT] = ACTIONS(4661), + [anon_sym_as_QMARK] = ACTIONS(4663), + [anon_sym_PLUS_PLUS] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4663), + [anon_sym_BANG_BANG] = ACTIONS(4663), + [anon_sym_suspend] = ACTIONS(4661), + [anon_sym_sealed] = ACTIONS(4661), + [anon_sym_annotation] = ACTIONS(4661), + [anon_sym_data] = ACTIONS(4661), + [anon_sym_inner] = ACTIONS(4661), + [anon_sym_value] = ACTIONS(4661), + [anon_sym_override] = ACTIONS(4661), + [anon_sym_lateinit] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4661), + [anon_sym_private] = ACTIONS(4661), + [anon_sym_internal] = ACTIONS(4661), + [anon_sym_protected] = ACTIONS(4661), + [anon_sym_tailrec] = ACTIONS(4661), + [anon_sym_operator] = ACTIONS(4661), + [anon_sym_infix] = ACTIONS(4661), + [anon_sym_inline] = ACTIONS(4661), + [anon_sym_external] = ACTIONS(4661), + [sym_property_modifier] = ACTIONS(4661), + [anon_sym_abstract] = ACTIONS(4661), + [anon_sym_final] = ACTIONS(4661), + [anon_sym_open] = ACTIONS(4661), + [anon_sym_vararg] = ACTIONS(4661), + [anon_sym_noinline] = ACTIONS(4661), + [anon_sym_crossinline] = ACTIONS(4661), + [anon_sym_expect] = ACTIONS(4661), + [anon_sym_actual] = ACTIONS(4661), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4663), + [sym_safe_nav] = ACTIONS(4663), [sym_multiline_comment] = ACTIONS(3), }, - [3453] = { - [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), + [3366] = { + [sym_class_body] = STATE(3437), + [sym__alpha_identifier] = ACTIONS(4724), + [anon_sym_AT] = ACTIONS(4726), + [anon_sym_LBRACK] = ACTIONS(4726), + [anon_sym_RBRACK] = ACTIONS(4726), + [anon_sym_DOT] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_where] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4724), + [anon_sym_set] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [anon_sym_DASH_GT] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4724), + [anon_sym_while] = ACTIONS(4724), + [anon_sym_DOT_DOT] = ACTIONS(4726), + [anon_sym_QMARK_COLON] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4724), + [anon_sym_COLON_COLON] = ACTIONS(4726), + [anon_sym_PLUS_EQ] = ACTIONS(4726), + [anon_sym_DASH_EQ] = ACTIONS(4726), + [anon_sym_STAR_EQ] = ACTIONS(4726), + [anon_sym_SLASH_EQ] = ACTIONS(4726), + [anon_sym_PERCENT_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), + [anon_sym_LT_EQ] = ACTIONS(4726), + [anon_sym_GT_EQ] = ACTIONS(4726), + [anon_sym_BANGin] = ACTIONS(4726), + [anon_sym_is] = ACTIONS(4724), + [anon_sym_BANGis] = ACTIONS(4726), + [anon_sym_PLUS] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4724), + [anon_sym_SLASH] = ACTIONS(4724), + [anon_sym_PERCENT] = ACTIONS(4724), + [anon_sym_as_QMARK] = ACTIONS(4726), + [anon_sym_PLUS_PLUS] = ACTIONS(4726), + [anon_sym_DASH_DASH] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4726), + [anon_sym_suspend] = ACTIONS(4724), + [anon_sym_sealed] = ACTIONS(4724), + [anon_sym_annotation] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4724), + [anon_sym_inner] = ACTIONS(4724), + [anon_sym_value] = ACTIONS(4724), + [anon_sym_override] = ACTIONS(4724), + [anon_sym_lateinit] = ACTIONS(4724), + [anon_sym_public] = ACTIONS(4724), + [anon_sym_private] = ACTIONS(4724), + [anon_sym_internal] = ACTIONS(4724), + [anon_sym_protected] = ACTIONS(4724), + [anon_sym_tailrec] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4724), + [anon_sym_infix] = ACTIONS(4724), + [anon_sym_inline] = ACTIONS(4724), + [anon_sym_external] = ACTIONS(4724), + [sym_property_modifier] = ACTIONS(4724), + [anon_sym_abstract] = ACTIONS(4724), + [anon_sym_final] = ACTIONS(4724), + [anon_sym_open] = ACTIONS(4724), + [anon_sym_vararg] = ACTIONS(4724), + [anon_sym_noinline] = ACTIONS(4724), + [anon_sym_crossinline] = ACTIONS(4724), + [anon_sym_expect] = ACTIONS(4724), + [anon_sym_actual] = ACTIONS(4724), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4726), + [sym_safe_nav] = ACTIONS(4726), [sym_multiline_comment] = ACTIONS(3), }, - [3454] = { - [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), + [3367] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_RBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_RPAREN] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [anon_sym_DASH_GT] = ACTIONS(4682), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_while] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), [sym_multiline_comment] = ACTIONS(3), }, - [3455] = { - [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), + [3368] = { + [sym__alpha_identifier] = ACTIONS(4511), + [anon_sym_AT] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_as] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4511), + [anon_sym_set] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4511), + [anon_sym_DASH_GT] = ACTIONS(4513), + [sym_label] = ACTIONS(4513), + [anon_sym_in] = ACTIONS(4511), + [anon_sym_while] = ACTIONS(4511), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_QMARK_COLON] = ACTIONS(4513), + [anon_sym_AMP_AMP] = ACTIONS(4513), + [anon_sym_PIPE_PIPE] = ACTIONS(4513), + [anon_sym_else] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(4513), + [anon_sym_PLUS_EQ] = ACTIONS(4513), + [anon_sym_DASH_EQ] = ACTIONS(4513), + [anon_sym_STAR_EQ] = ACTIONS(4513), + [anon_sym_SLASH_EQ] = ACTIONS(4513), + [anon_sym_PERCENT_EQ] = ACTIONS(4513), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4513), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4513), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4513), + [anon_sym_is] = ACTIONS(4511), + [anon_sym_BANGis] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4511), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_as_QMARK] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_BANG_BANG] = ACTIONS(4513), + [anon_sym_suspend] = ACTIONS(4511), + [anon_sym_sealed] = ACTIONS(4511), + [anon_sym_annotation] = ACTIONS(4511), + [anon_sym_data] = ACTIONS(4511), + [anon_sym_inner] = ACTIONS(4511), + [anon_sym_value] = ACTIONS(4511), + [anon_sym_override] = ACTIONS(4511), + [anon_sym_lateinit] = ACTIONS(4511), + [anon_sym_public] = ACTIONS(4511), + [anon_sym_private] = ACTIONS(4511), + [anon_sym_internal] = ACTIONS(4511), + [anon_sym_protected] = ACTIONS(4511), + [anon_sym_tailrec] = ACTIONS(4511), + [anon_sym_operator] = ACTIONS(4511), + [anon_sym_infix] = ACTIONS(4511), + [anon_sym_inline] = ACTIONS(4511), + [anon_sym_external] = ACTIONS(4511), + [sym_property_modifier] = ACTIONS(4511), + [anon_sym_abstract] = ACTIONS(4511), + [anon_sym_final] = ACTIONS(4511), + [anon_sym_open] = ACTIONS(4511), + [anon_sym_vararg] = ACTIONS(4511), + [anon_sym_noinline] = ACTIONS(4511), + [anon_sym_crossinline] = ACTIONS(4511), + [anon_sym_expect] = ACTIONS(4511), + [anon_sym_actual] = ACTIONS(4511), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4513), + [sym_safe_nav] = ACTIONS(4513), [sym_multiline_comment] = ACTIONS(3), }, - [3456] = { - [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), + [3369] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(6817), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = 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), - [sym__backtick_identifier] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), + [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), }, - [3457] = { + [3370] = { [sym__alpha_identifier] = ACTIONS(4974), [anon_sym_AT] = ACTIONS(4976), [anon_sym_LBRACK] = ACTIONS(4976), [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), [anon_sym_as] = ACTIONS(4974), [anon_sym_EQ] = ACTIONS(4974), [anon_sym_LBRACE] = ACTIONS(4976), @@ -400532,7 +389955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -400545,7 +389967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_else] = ACTIONS(6819), [anon_sym_COLON_COLON] = ACTIONS(4976), [anon_sym_PLUS_EQ] = ACTIONS(4976), [anon_sym_DASH_EQ] = ACTIONS(4976), @@ -400600,307 +390022,2369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, - [3458] = { - [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), + [3371] = { + [sym_type_constraints] = STATE(3955), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3372] = { + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [3459] = { - [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), + [3373] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6509), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(4186), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_object] = ACTIONS(4184), + [anon_sym_fun] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_this] = ACTIONS(4184), + [anon_sym_super] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [sym_label] = ACTIONS(4184), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_null] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_when] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4184), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4186), + [anon_sym_continue_AT] = ACTIONS(4186), + [anon_sym_break_AT] = ACTIONS(4186), + [anon_sym_this_AT] = ACTIONS(4186), + [anon_sym_super_AT] = ACTIONS(4186), + [sym_real_literal] = ACTIONS(4186), + [sym_integer_literal] = ACTIONS(4184), + [sym_hex_literal] = ACTIONS(4186), + [sym_bin_literal] = ACTIONS(4186), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4186), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4186), + }, + [3374] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_RBRACK] = ACTIONS(5173), + [anon_sym_DOT] = ACTIONS(5171), + [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_RPAREN] = ACTIONS(5173), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_where] = 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(5037), - [sym_safe_nav] = ACTIONS(5037), + [sym__backtick_identifier] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), [sym_multiline_comment] = ACTIONS(3), }, - [3460] = { - [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), + [3375] = { + [sym_type_constraints] = STATE(3696), + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [3376] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [anon_sym_DASH_GT] = ACTIONS(4996), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_while] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(6825), + [anon_sym_PLUS_EQ] = ACTIONS(5011), + [anon_sym_DASH_EQ] = ACTIONS(5011), + [anon_sym_STAR_EQ] = ACTIONS(5011), + [anon_sym_SLASH_EQ] = ACTIONS(5011), + [anon_sym_PERCENT_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + }, + [3377] = { + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_DASH_GT] = ACTIONS(4493), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_while] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + }, + [3378] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_RBRACK] = ACTIONS(5201), + [anon_sym_DOT] = ACTIONS(5199), + [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_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(5087), - [sym_safe_nav] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), [sym_multiline_comment] = ACTIONS(3), }, - [3461] = { + [3379] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_RBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4405), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_while] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + }, + [3380] = { + [sym__alpha_identifier] = ACTIONS(4878), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_RBRACK] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_as] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_RPAREN] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_where] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_get] = ACTIONS(4878), + [anon_sym_set] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [anon_sym_DASH_GT] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4878), + [anon_sym_while] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_QMARK_COLON] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(4880), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PERCENT_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_BANGin] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4878), + [anon_sym_BANGis] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(4878), + [anon_sym_as_QMARK] = ACTIONS(4880), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4880), + [anon_sym_suspend] = ACTIONS(4878), + [anon_sym_sealed] = ACTIONS(4878), + [anon_sym_annotation] = ACTIONS(4878), + [anon_sym_data] = ACTIONS(4878), + [anon_sym_inner] = ACTIONS(4878), + [anon_sym_value] = ACTIONS(4878), + [anon_sym_override] = ACTIONS(4878), + [anon_sym_lateinit] = ACTIONS(4878), + [anon_sym_public] = ACTIONS(4878), + [anon_sym_private] = ACTIONS(4878), + [anon_sym_internal] = ACTIONS(4878), + [anon_sym_protected] = ACTIONS(4878), + [anon_sym_tailrec] = ACTIONS(4878), + [anon_sym_operator] = ACTIONS(4878), + [anon_sym_infix] = ACTIONS(4878), + [anon_sym_inline] = ACTIONS(4878), + [anon_sym_external] = ACTIONS(4878), + [sym_property_modifier] = ACTIONS(4878), + [anon_sym_abstract] = ACTIONS(4878), + [anon_sym_final] = ACTIONS(4878), + [anon_sym_open] = ACTIONS(4878), + [anon_sym_vararg] = ACTIONS(4878), + [anon_sym_noinline] = ACTIONS(4878), + [anon_sym_crossinline] = ACTIONS(4878), + [anon_sym_expect] = ACTIONS(4878), + [anon_sym_actual] = ACTIONS(4878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4880), + [sym_safe_nav] = ACTIONS(4880), + [sym_multiline_comment] = ACTIONS(3), + }, + [3381] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_RBRACK] = ACTIONS(5161), + [anon_sym_DOT] = ACTIONS(5159), + [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_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), + }, + [3382] = { + [sym__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_as] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_get] = ACTIONS(5055), + [anon_sym_set] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_DASH_GT] = ACTIONS(5057), + [sym_label] = ACTIONS(5057), + [anon_sym_in] = ACTIONS(5055), + [anon_sym_while] = ACTIONS(5055), + [anon_sym_DOT_DOT] = ACTIONS(5057), + [anon_sym_QMARK_COLON] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_else] = ACTIONS(5055), + [anon_sym_COLON_COLON] = ACTIONS(5057), + [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(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_BANGin] = ACTIONS(5057), + [anon_sym_is] = ACTIONS(5055), + [anon_sym_BANGis] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_as_QMARK] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_BANG_BANG] = ACTIONS(5057), + [anon_sym_suspend] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_annotation] = ACTIONS(5055), + [anon_sym_data] = ACTIONS(5055), + [anon_sym_inner] = ACTIONS(5055), + [anon_sym_value] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_lateinit] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_tailrec] = ACTIONS(5055), + [anon_sym_operator] = ACTIONS(5055), + [anon_sym_infix] = ACTIONS(5055), + [anon_sym_inline] = ACTIONS(5055), + [anon_sym_external] = ACTIONS(5055), + [sym_property_modifier] = ACTIONS(5055), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_open] = ACTIONS(5055), + [anon_sym_vararg] = ACTIONS(5055), + [anon_sym_noinline] = ACTIONS(5055), + [anon_sym_crossinline] = ACTIONS(5055), + [anon_sym_expect] = ACTIONS(5055), + [anon_sym_actual] = ACTIONS(5055), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5057), + [sym_safe_nav] = ACTIONS(5057), + [sym_multiline_comment] = ACTIONS(3), + }, + [3383] = { + [sym__alpha_identifier] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_QMARK_COLON] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [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(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_as_QMARK] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_BANG_BANG] = ACTIONS(3142), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3140), + [anon_sym_inner] = ACTIONS(3140), + [anon_sym_value] = ACTIONS(3140), + [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(3140), + [anon_sym_actual] = ACTIONS(3140), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3142), + [sym_multiline_comment] = ACTIONS(3), + }, + [3384] = { + [sym__alpha_identifier] = ACTIONS(5151), + [anon_sym_AT] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5151), + [anon_sym_set] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5151), + [anon_sym_DASH_GT] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_while] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5153), + [anon_sym_PLUS_EQ] = ACTIONS(5153), + [anon_sym_DASH_EQ] = ACTIONS(5153), + [anon_sym_STAR_EQ] = ACTIONS(5153), + [anon_sym_SLASH_EQ] = ACTIONS(5153), + [anon_sym_PERCENT_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_BANGin] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5151), + [anon_sym_BANGis] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5151), + [anon_sym_as_QMARK] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5153), + [anon_sym_suspend] = ACTIONS(5151), + [anon_sym_sealed] = ACTIONS(5151), + [anon_sym_annotation] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5151), + [anon_sym_inner] = ACTIONS(5151), + [anon_sym_value] = ACTIONS(5151), + [anon_sym_override] = ACTIONS(5151), + [anon_sym_lateinit] = ACTIONS(5151), + [anon_sym_public] = ACTIONS(5151), + [anon_sym_private] = ACTIONS(5151), + [anon_sym_internal] = ACTIONS(5151), + [anon_sym_protected] = ACTIONS(5151), + [anon_sym_tailrec] = ACTIONS(5151), + [anon_sym_operator] = ACTIONS(5151), + [anon_sym_infix] = ACTIONS(5151), + [anon_sym_inline] = ACTIONS(5151), + [anon_sym_external] = ACTIONS(5151), + [sym_property_modifier] = ACTIONS(5151), + [anon_sym_abstract] = ACTIONS(5151), + [anon_sym_final] = ACTIONS(5151), + [anon_sym_open] = ACTIONS(5151), + [anon_sym_vararg] = ACTIONS(5151), + [anon_sym_noinline] = ACTIONS(5151), + [anon_sym_crossinline] = ACTIONS(5151), + [anon_sym_expect] = ACTIONS(5151), + [anon_sym_actual] = ACTIONS(5151), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5153), + [sym_safe_nav] = ACTIONS(5153), + [sym_multiline_comment] = ACTIONS(3), + }, + [3385] = { + [ts_builtin_sym_end] = ACTIONS(6828), + [sym__alpha_identifier] = ACTIONS(6830), + [anon_sym_AT] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_package] = ACTIONS(6830), + [anon_sym_import] = ACTIONS(6830), + [anon_sym_typealias] = ACTIONS(6830), + [anon_sym_class] = ACTIONS(6830), + [anon_sym_interface] = ACTIONS(6830), + [anon_sym_enum] = ACTIONS(6830), + [anon_sym_LBRACE] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6828), + [anon_sym_val] = ACTIONS(6830), + [anon_sym_var] = ACTIONS(6830), + [anon_sym_object] = ACTIONS(6830), + [anon_sym_fun] = ACTIONS(6830), + [anon_sym_get] = ACTIONS(6830), + [anon_sym_set] = ACTIONS(6830), + [anon_sym_this] = ACTIONS(6830), + [anon_sym_super] = ACTIONS(6830), + [anon_sym_STAR] = ACTIONS(6828), + [sym_label] = ACTIONS(6830), + [anon_sym_for] = ACTIONS(6830), + [anon_sym_while] = ACTIONS(6830), + [anon_sym_do] = ACTIONS(6830), + [anon_sym_null] = ACTIONS(6830), + [anon_sym_if] = ACTIONS(6830), + [anon_sym_when] = ACTIONS(6830), + [anon_sym_try] = ACTIONS(6830), + [anon_sym_throw] = ACTIONS(6830), + [anon_sym_return] = ACTIONS(6830), + [anon_sym_continue] = ACTIONS(6830), + [anon_sym_break] = ACTIONS(6830), + [anon_sym_COLON_COLON] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6830), + [anon_sym_DASH] = ACTIONS(6830), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_BANG] = ACTIONS(6828), + [anon_sym_suspend] = ACTIONS(6830), + [anon_sym_sealed] = ACTIONS(6830), + [anon_sym_annotation] = ACTIONS(6830), + [anon_sym_data] = ACTIONS(6830), + [anon_sym_inner] = ACTIONS(6830), + [anon_sym_value] = ACTIONS(6830), + [anon_sym_override] = ACTIONS(6830), + [anon_sym_lateinit] = ACTIONS(6830), + [anon_sym_public] = ACTIONS(6830), + [anon_sym_private] = ACTIONS(6830), + [anon_sym_internal] = ACTIONS(6830), + [anon_sym_protected] = ACTIONS(6830), + [anon_sym_tailrec] = ACTIONS(6830), + [anon_sym_operator] = ACTIONS(6830), + [anon_sym_infix] = ACTIONS(6830), + [anon_sym_inline] = ACTIONS(6830), + [anon_sym_external] = ACTIONS(6830), + [sym_property_modifier] = ACTIONS(6830), + [anon_sym_abstract] = ACTIONS(6830), + [anon_sym_final] = ACTIONS(6830), + [anon_sym_open] = ACTIONS(6830), + [anon_sym_vararg] = ACTIONS(6830), + [anon_sym_noinline] = ACTIONS(6830), + [anon_sym_crossinline] = ACTIONS(6830), + [anon_sym_expect] = ACTIONS(6830), + [anon_sym_actual] = ACTIONS(6830), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6828), + [anon_sym_continue_AT] = ACTIONS(6828), + [anon_sym_break_AT] = ACTIONS(6828), + [anon_sym_this_AT] = ACTIONS(6828), + [anon_sym_super_AT] = ACTIONS(6828), + [sym_real_literal] = ACTIONS(6828), + [sym_integer_literal] = ACTIONS(6830), + [sym_hex_literal] = ACTIONS(6828), + [sym_bin_literal] = ACTIONS(6828), + [anon_sym_true] = ACTIONS(6830), + [anon_sym_false] = ACTIONS(6830), + [anon_sym_SQUOTE] = ACTIONS(6828), + [sym__backtick_identifier] = ACTIONS(6828), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6828), + }, + [3386] = { + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_RBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_RPAREN] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_DASH_GT] = ACTIONS(4413), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_while] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + }, + [3387] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(6832), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_interface] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4030), + [anon_sym_var] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_for] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_do] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = 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(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4035), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3388] = { + [sym_type_constraints] = STATE(3697), + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), + }, + [3389] = { + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [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_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), + }, + [3390] = { + [sym__alpha_identifier] = ACTIONS(5185), + [anon_sym_AT] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5185), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5185), + [anon_sym_set] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_DASH_GT] = ACTIONS(5187), + [sym_label] = ACTIONS(5187), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_while] = ACTIONS(5185), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_QMARK_COLON] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_else] = ACTIONS(5185), + [anon_sym_COLON_COLON] = ACTIONS(5187), + [anon_sym_PLUS_EQ] = ACTIONS(5187), + [anon_sym_DASH_EQ] = ACTIONS(5187), + [anon_sym_STAR_EQ] = ACTIONS(5187), + [anon_sym_SLASH_EQ] = ACTIONS(5187), + [anon_sym_PERCENT_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_BANGin] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5185), + [anon_sym_BANGis] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_as_QMARK] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_BANG_BANG] = ACTIONS(5187), + [anon_sym_suspend] = ACTIONS(5185), + [anon_sym_sealed] = ACTIONS(5185), + [anon_sym_annotation] = ACTIONS(5185), + [anon_sym_data] = ACTIONS(5185), + [anon_sym_inner] = ACTIONS(5185), + [anon_sym_value] = ACTIONS(5185), + [anon_sym_override] = ACTIONS(5185), + [anon_sym_lateinit] = ACTIONS(5185), + [anon_sym_public] = ACTIONS(5185), + [anon_sym_private] = ACTIONS(5185), + [anon_sym_internal] = ACTIONS(5185), + [anon_sym_protected] = ACTIONS(5185), + [anon_sym_tailrec] = ACTIONS(5185), + [anon_sym_operator] = ACTIONS(5185), + [anon_sym_infix] = ACTIONS(5185), + [anon_sym_inline] = ACTIONS(5185), + [anon_sym_external] = ACTIONS(5185), + [sym_property_modifier] = ACTIONS(5185), + [anon_sym_abstract] = ACTIONS(5185), + [anon_sym_final] = ACTIONS(5185), + [anon_sym_open] = ACTIONS(5185), + [anon_sym_vararg] = ACTIONS(5185), + [anon_sym_noinline] = ACTIONS(5185), + [anon_sym_crossinline] = ACTIONS(5185), + [anon_sym_expect] = ACTIONS(5185), + [anon_sym_actual] = ACTIONS(5185), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5187), + [sym_safe_nav] = ACTIONS(5187), + [sym_multiline_comment] = ACTIONS(3), + }, + [3391] = { + [sym_type_arguments] = STATE(3710), + [sym__alpha_identifier] = ACTIONS(4159), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4159), + [anon_sym_typealias] = ACTIONS(4159), + [anon_sym_class] = ACTIONS(4159), + [anon_sym_interface] = ACTIONS(4159), + [anon_sym_enum] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym_val] = ACTIONS(4159), + [anon_sym_var] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(6834), + [anon_sym_object] = ACTIONS(4159), + [anon_sym_fun] = ACTIONS(4159), + [anon_sym_get] = ACTIONS(4159), + [anon_sym_set] = ACTIONS(4159), + [anon_sym_this] = ACTIONS(4159), + [anon_sym_super] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4161), + [sym_label] = ACTIONS(4159), + [anon_sym_for] = ACTIONS(4159), + [anon_sym_while] = ACTIONS(4159), + [anon_sym_do] = ACTIONS(4159), + [anon_sym_null] = ACTIONS(4159), + [anon_sym_if] = ACTIONS(4159), + [anon_sym_when] = ACTIONS(4159), + [anon_sym_try] = ACTIONS(4159), + [anon_sym_throw] = ACTIONS(4159), + [anon_sym_return] = ACTIONS(4159), + [anon_sym_continue] = ACTIONS(4159), + [anon_sym_break] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_BANG] = ACTIONS(4161), + [anon_sym_suspend] = ACTIONS(4159), + [anon_sym_sealed] = ACTIONS(4159), + [anon_sym_annotation] = ACTIONS(4159), + [anon_sym_data] = ACTIONS(4159), + [anon_sym_inner] = ACTIONS(4159), + [anon_sym_value] = ACTIONS(4159), + [anon_sym_override] = ACTIONS(4159), + [anon_sym_lateinit] = ACTIONS(4159), + [anon_sym_public] = ACTIONS(4159), + [anon_sym_private] = ACTIONS(4159), + [anon_sym_internal] = ACTIONS(4159), + [anon_sym_protected] = ACTIONS(4159), + [anon_sym_tailrec] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_infix] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym_external] = ACTIONS(4159), + [sym_property_modifier] = ACTIONS(4159), + [anon_sym_abstract] = ACTIONS(4159), + [anon_sym_final] = ACTIONS(4159), + [anon_sym_open] = ACTIONS(4159), + [anon_sym_vararg] = ACTIONS(4159), + [anon_sym_noinline] = ACTIONS(4159), + [anon_sym_crossinline] = ACTIONS(4159), + [anon_sym_expect] = ACTIONS(4159), + [anon_sym_actual] = ACTIONS(4159), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4161), + [anon_sym_continue_AT] = ACTIONS(4161), + [anon_sym_break_AT] = ACTIONS(4161), + [anon_sym_this_AT] = ACTIONS(4161), + [anon_sym_super_AT] = ACTIONS(4161), + [sym_real_literal] = ACTIONS(4161), + [sym_integer_literal] = ACTIONS(4159), + [sym_hex_literal] = ACTIONS(4161), + [sym_bin_literal] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [anon_sym_SQUOTE] = ACTIONS(4161), + [sym__backtick_identifier] = ACTIONS(4161), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4161), + }, + [3392] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_RBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4395), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + }, + [3393] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_RBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + }, + [3394] = { + [sym_type_constraints] = STATE(3341), + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(6836), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3395] = { + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(5930), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [3396] = { + [sym_class_body] = STATE(3386), + [sym_type_constraints] = STATE(3358), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6838), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3397] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3398] = { + [sym_class_body] = STATE(3573), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3399] = { + [aux_sym_type_constraints_repeat1] = STATE(3438), [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_EQ] = ACTIONS(4441), [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_COMMA] = ACTIONS(6842), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_object] = ACTIONS(4439), + [anon_sym_fun] = 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_this] = ACTIONS(4439), + [anon_sym_super] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4441), + [sym_label] = ACTIONS(4439), [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_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_BANG] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4439), [anon_sym_suspend] = ACTIONS(4439), [anon_sym_sealed] = ACTIONS(4439), [anon_sym_annotation] = ACTIONS(4439), @@ -400928,6157 +392412,7001 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(4441), - [sym_multiline_comment] = ACTIONS(3), - }, - [3462] = { - [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__automatic_semicolon] = ACTIONS(4441), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4441), }, - [3463] = { - [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), + [3400] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [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(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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), - [sym__backtick_identifier] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [3464] = { - [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), + [3401] = { + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5614), + [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(5474), + [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), [sym_multiline_comment] = ACTIONS(3), }, - [3465] = { - [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), + [3402] = { + [sym_class_body] = STATE(3567), + [sym_type_constraints] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [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(4820), - [sym_safe_nav] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, - [3466] = { - [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), + [3403] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_DASH_GT] = ACTIONS(5083), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_while] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_suspend] = ACTIONS(5081), + [anon_sym_sealed] = ACTIONS(5081), + [anon_sym_annotation] = ACTIONS(5081), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_override] = ACTIONS(5081), + [anon_sym_lateinit] = ACTIONS(5081), + [anon_sym_public] = ACTIONS(5081), + [anon_sym_private] = ACTIONS(5081), + [anon_sym_internal] = ACTIONS(5081), + [anon_sym_protected] = ACTIONS(5081), + [anon_sym_tailrec] = ACTIONS(5081), + [anon_sym_operator] = ACTIONS(5081), + [anon_sym_infix] = ACTIONS(5081), + [anon_sym_inline] = ACTIONS(5081), + [anon_sym_external] = ACTIONS(5081), + [sym_property_modifier] = ACTIONS(5081), + [anon_sym_abstract] = ACTIONS(5081), + [anon_sym_final] = ACTIONS(5081), + [anon_sym_open] = ACTIONS(5081), + [anon_sym_vararg] = ACTIONS(5081), + [anon_sym_noinline] = ACTIONS(5081), + [anon_sym_crossinline] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), [sym_multiline_comment] = ACTIONS(3), }, - [3467] = { - [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), + [3404] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6850), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [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(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [3405] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_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_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(4960), - [sym_safe_nav] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(1810), + [sym_safe_nav] = ACTIONS(1810), [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), + [3406] = { + [sym_class_body] = STATE(3441), + [sym_type_constraints] = STATE(3304), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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), [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), + [3407] = { + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3340), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(3338), + [anon_sym_sealed] = ACTIONS(3338), + [anon_sym_annotation] = ACTIONS(3338), + [anon_sym_data] = ACTIONS(3338), + [anon_sym_inner] = ACTIONS(3338), + [anon_sym_value] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_lateinit] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_internal] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_tailrec] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_infix] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym_external] = ACTIONS(3338), + [sym_property_modifier] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_final] = ACTIONS(3338), + [anon_sym_open] = ACTIONS(3338), + [anon_sym_vararg] = ACTIONS(3338), + [anon_sym_noinline] = ACTIONS(3338), + [anon_sym_crossinline] = ACTIONS(3338), + [anon_sym_expect] = ACTIONS(3338), + [anon_sym_actual] = ACTIONS(3338), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [3408] = { + [aux_sym_nullable_type_repeat1] = STATE(3486), + [sym__alpha_identifier] = ACTIONS(4204), + [anon_sym_AT] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4206), + [anon_sym_DOT] = ACTIONS(4204), + [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_SEMI] = ACTIONS(4206), + [anon_sym_get] = ACTIONS(4204), + [anon_sym_set] = ACTIONS(4204), + [sym__quest] = ACTIONS(6854), + [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(4968), - [sym_safe_nav] = ACTIONS(4968), + [sym__backtick_identifier] = ACTIONS(4206), + [sym__automatic_semicolon] = ACTIONS(4206), + [sym_safe_nav] = ACTIONS(4206), [sym_multiline_comment] = ACTIONS(3), }, - [3471] = { - [sym__alpha_identifier] = ACTIONS(5099), - [anon_sym_AT] = ACTIONS(5101), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_RBRACK] = 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_RPAREN] = 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), - [anon_sym_DASH_GT] = ACTIONS(5101), - [sym_label] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5099), - [anon_sym_while] = 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_safe_nav] = ACTIONS(5101), + [3409] = { + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_RBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_RPAREN] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [anon_sym_DASH_GT] = ACTIONS(4667), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_while] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3410] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_DASH_GT] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [3473] = { - [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), + [3411] = { + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_RBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [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_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(4900), - [sym_safe_nav] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, - [3474] = { - [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), + [3412] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_object] = ACTIONS(4267), + [anon_sym_fun] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_this] = ACTIONS(4267), + [anon_sym_super] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4269), + [sym_label] = ACTIONS(4267), + [anon_sym_in] = ACTIONS(4267), + [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(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4267), + [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(3162), - [sym_safe_nav] = ACTIONS(3162), + [anon_sym_return_AT] = ACTIONS(4269), + [anon_sym_continue_AT] = ACTIONS(4269), + [anon_sym_break_AT] = ACTIONS(4269), + [anon_sym_this_AT] = ACTIONS(4269), + [anon_sym_super_AT] = ACTIONS(4269), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(4267), + [anon_sym_false] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4269), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4269), }, - [3475] = { - [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), + [3413] = { + [sym__alpha_identifier] = ACTIONS(4894), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_RBRACK] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [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_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), [sym_multiline_comment] = ACTIONS(3), }, - [3476] = { - [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), + [3414] = { + [sym_type_constraints] = STATE(3699), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [3477] = { - [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), + [3415] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6856), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(1810), - [sym_safe_nav] = ACTIONS(1810), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3416] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6860), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3417] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [3478] = { - [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), + [3418] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_RBRACK] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4806), + [anon_sym_where] = ACTIONS(4806), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_get] = ACTIONS(4806), + [anon_sym_set] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [anon_sym_DASH_GT] = ACTIONS(4808), + [sym_label] = ACTIONS(4808), + [anon_sym_in] = ACTIONS(4806), + [anon_sym_while] = ACTIONS(4806), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_QMARK_COLON] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4806), + [anon_sym_COLON_COLON] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4808), + [anon_sym_DASH_EQ] = ACTIONS(4808), + [anon_sym_STAR_EQ] = ACTIONS(4808), + [anon_sym_SLASH_EQ] = ACTIONS(4808), + [anon_sym_PERCENT_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4808), + [anon_sym_BANGin] = ACTIONS(4808), + [anon_sym_is] = ACTIONS(4806), + [anon_sym_BANGis] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_as_QMARK] = ACTIONS(4808), + [anon_sym_PLUS_PLUS] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_BANG_BANG] = ACTIONS(4808), + [anon_sym_suspend] = ACTIONS(4806), + [anon_sym_sealed] = ACTIONS(4806), + [anon_sym_annotation] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4806), + [anon_sym_inner] = ACTIONS(4806), + [anon_sym_value] = ACTIONS(4806), + [anon_sym_override] = ACTIONS(4806), + [anon_sym_lateinit] = ACTIONS(4806), + [anon_sym_public] = ACTIONS(4806), + [anon_sym_private] = ACTIONS(4806), + [anon_sym_internal] = ACTIONS(4806), + [anon_sym_protected] = ACTIONS(4806), + [anon_sym_tailrec] = ACTIONS(4806), + [anon_sym_operator] = ACTIONS(4806), + [anon_sym_infix] = ACTIONS(4806), + [anon_sym_inline] = ACTIONS(4806), + [anon_sym_external] = ACTIONS(4806), + [sym_property_modifier] = ACTIONS(4806), + [anon_sym_abstract] = ACTIONS(4806), + [anon_sym_final] = ACTIONS(4806), + [anon_sym_open] = ACTIONS(4806), + [anon_sym_vararg] = ACTIONS(4806), + [anon_sym_noinline] = ACTIONS(4806), + [anon_sym_crossinline] = ACTIONS(4806), + [anon_sym_expect] = ACTIONS(4806), + [anon_sym_actual] = ACTIONS(4806), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), [sym_multiline_comment] = ACTIONS(3), }, - [3479] = { - [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), + [3419] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_RBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4395), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + }, + [3420] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_RBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [anon_sym_DASH_GT] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_while] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + }, + [3421] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_RBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_DASH_GT] = ACTIONS(4816), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_while] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + }, + [3422] = { + [sym__alpha_identifier] = ACTIONS(5219), + [anon_sym_AT] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5219), + [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_RPAREN] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5219), + [anon_sym_GT] = ACTIONS(5219), + [anon_sym_where] = ACTIONS(5219), + [anon_sym_SEMI] = ACTIONS(5221), + [anon_sym_get] = ACTIONS(5219), + [anon_sym_set] = ACTIONS(5219), + [anon_sym_STAR] = ACTIONS(5219), + [anon_sym_DASH_GT] = ACTIONS(5221), + [sym_label] = ACTIONS(5221), + [anon_sym_in] = ACTIONS(5219), + [anon_sym_while] = 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_safe_nav] = ACTIONS(5221), + [sym_multiline_comment] = ACTIONS(3), + }, + [3423] = { + [sym__alpha_identifier] = ACTIONS(5147), + [anon_sym_AT] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_RPAREN] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5147), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5147), + [anon_sym_set] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5147), + [anon_sym_DASH_GT] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_while] = ACTIONS(5147), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_QMARK_COLON] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5147), + [anon_sym_COLON_COLON] = ACTIONS(5149), + [anon_sym_PLUS_EQ] = ACTIONS(5149), + [anon_sym_DASH_EQ] = ACTIONS(5149), + [anon_sym_STAR_EQ] = ACTIONS(5149), + [anon_sym_SLASH_EQ] = ACTIONS(5149), + [anon_sym_PERCENT_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_BANGin] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5147), + [anon_sym_BANGis] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5147), + [anon_sym_as_QMARK] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5149), + [anon_sym_suspend] = ACTIONS(5147), + [anon_sym_sealed] = ACTIONS(5147), + [anon_sym_annotation] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5147), + [anon_sym_inner] = ACTIONS(5147), + [anon_sym_value] = ACTIONS(5147), + [anon_sym_override] = ACTIONS(5147), + [anon_sym_lateinit] = ACTIONS(5147), + [anon_sym_public] = ACTIONS(5147), + [anon_sym_private] = ACTIONS(5147), + [anon_sym_internal] = ACTIONS(5147), + [anon_sym_protected] = ACTIONS(5147), + [anon_sym_tailrec] = ACTIONS(5147), + [anon_sym_operator] = ACTIONS(5147), + [anon_sym_infix] = ACTIONS(5147), + [anon_sym_inline] = ACTIONS(5147), + [anon_sym_external] = ACTIONS(5147), + [sym_property_modifier] = ACTIONS(5147), + [anon_sym_abstract] = ACTIONS(5147), + [anon_sym_final] = ACTIONS(5147), + [anon_sym_open] = ACTIONS(5147), + [anon_sym_vararg] = ACTIONS(5147), + [anon_sym_noinline] = ACTIONS(5147), + [anon_sym_crossinline] = ACTIONS(5147), + [anon_sym_expect] = ACTIONS(5147), + [anon_sym_actual] = ACTIONS(5147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5149), + [sym_safe_nav] = ACTIONS(5149), + [sym_multiline_comment] = ACTIONS(3), + }, + [3424] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + }, + [3425] = { + [sym__alpha_identifier] = ACTIONS(5215), + [anon_sym_AT] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_RBRACK] = ACTIONS(5217), + [anon_sym_DOT] = ACTIONS(5215), + [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_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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3426] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [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_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), + }, + [3427] = { + [sym_type_constraints] = STATE(3970), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3428] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_RBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), [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_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4405), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_while] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), [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), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + }, + [3429] = { + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_RBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_RPAREN] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4022), + [sym_label] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), + [sym_multiline_comment] = ACTIONS(3), + }, + [3430] = { + [sym__alpha_identifier] = ACTIONS(5207), + [anon_sym_AT] = ACTIONS(5209), + [anon_sym_LBRACK] = ACTIONS(5209), + [anon_sym_RBRACK] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5209), + [anon_sym_RBRACE] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_COMMA] = ACTIONS(5209), + [anon_sym_RPAREN] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5207), + [anon_sym_GT] = ACTIONS(5207), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym_get] = ACTIONS(5207), + [anon_sym_set] = ACTIONS(5207), + [anon_sym_STAR] = ACTIONS(5207), + [anon_sym_DASH_GT] = ACTIONS(5209), + [sym_label] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5207), + [anon_sym_while] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5209), + [anon_sym_QMARK_COLON] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5209), + [anon_sym_PIPE_PIPE] = ACTIONS(5209), + [anon_sym_else] = ACTIONS(5207), + [anon_sym_COLON_COLON] = ACTIONS(5209), + [anon_sym_PLUS_EQ] = ACTIONS(5209), + [anon_sym_DASH_EQ] = ACTIONS(5209), + [anon_sym_STAR_EQ] = ACTIONS(5209), + [anon_sym_SLASH_EQ] = ACTIONS(5209), + [anon_sym_PERCENT_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5209), + [anon_sym_LT_EQ] = ACTIONS(5209), + [anon_sym_GT_EQ] = ACTIONS(5209), + [anon_sym_BANGin] = ACTIONS(5209), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_BANGis] = ACTIONS(5209), + [anon_sym_PLUS] = ACTIONS(5207), + [anon_sym_DASH] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5207), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_as_QMARK] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5209), + [anon_sym_DASH_DASH] = ACTIONS(5209), + [anon_sym_BANG_BANG] = ACTIONS(5209), + [anon_sym_suspend] = ACTIONS(5207), + [anon_sym_sealed] = ACTIONS(5207), + [anon_sym_annotation] = ACTIONS(5207), + [anon_sym_data] = ACTIONS(5207), + [anon_sym_inner] = ACTIONS(5207), + [anon_sym_value] = ACTIONS(5207), + [anon_sym_override] = ACTIONS(5207), + [anon_sym_lateinit] = ACTIONS(5207), + [anon_sym_public] = ACTIONS(5207), + [anon_sym_private] = ACTIONS(5207), + [anon_sym_internal] = ACTIONS(5207), + [anon_sym_protected] = ACTIONS(5207), + [anon_sym_tailrec] = ACTIONS(5207), + [anon_sym_operator] = ACTIONS(5207), + [anon_sym_infix] = ACTIONS(5207), + [anon_sym_inline] = ACTIONS(5207), + [anon_sym_external] = ACTIONS(5207), + [sym_property_modifier] = ACTIONS(5207), + [anon_sym_abstract] = ACTIONS(5207), + [anon_sym_final] = ACTIONS(5207), + [anon_sym_open] = ACTIONS(5207), + [anon_sym_vararg] = ACTIONS(5207), + [anon_sym_noinline] = ACTIONS(5207), + [anon_sym_crossinline] = ACTIONS(5207), + [anon_sym_expect] = ACTIONS(5207), + [anon_sym_actual] = ACTIONS(5207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5209), + [sym_safe_nav] = ACTIONS(5209), + [sym_multiline_comment] = ACTIONS(3), + }, + [3431] = { + [sym_type_constraints] = STATE(3669), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3432] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_DASH_GT] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_while] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_suspend] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_annotation] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_lateinit] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_tailrec] = ACTIONS(5101), + [anon_sym_operator] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_inline] = ACTIONS(5101), + [anon_sym_external] = ACTIONS(5101), + [sym_property_modifier] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_vararg] = ACTIONS(5101), + [anon_sym_noinline] = ACTIONS(5101), + [anon_sym_crossinline] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), + [sym_multiline_comment] = ACTIONS(3), + }, + [3433] = { + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3434] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_RBRACK] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), + [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_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(4904), - [sym_safe_nav] = ACTIONS(4904), + [sym__backtick_identifier] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), [sym_multiline_comment] = ACTIONS(3), }, - [3480] = { - [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), + [3435] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_RBRACK] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [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_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(4908), - [sym_safe_nav] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(4916), + [sym_safe_nav] = ACTIONS(4916), [sym_multiline_comment] = ACTIONS(3), }, - [3481] = { - [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(5173), - [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), + [3436] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_DOT] = ACTIONS(4866), + [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_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(5173), - [sym_safe_nav] = ACTIONS(5173), + [sym__backtick_identifier] = ACTIONS(4868), + [sym_safe_nav] = ACTIONS(4868), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3437] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_RBRACK] = ACTIONS(5169), + [anon_sym_DOT] = ACTIONS(5167), + [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_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(4784), - [sym_safe_nav] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(5169), + [sym_safe_nav] = ACTIONS(5169), [sym_multiline_comment] = ACTIONS(3), }, - [3483] = { - [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), + [3438] = { + [aux_sym_type_constraints_repeat1] = STATE(3438), + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(6866), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_object] = ACTIONS(4453), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4455), + [anon_sym_DASH_DASH] = ACTIONS(4455), + [anon_sym_BANG] = ACTIONS(4453), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4455), + }, + [3439] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [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_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), + }, + [3440] = { + [sym__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_RBRACK] = ACTIONS(5165), + [anon_sym_DOT] = ACTIONS(5163), + [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_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), + }, + [3441] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [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_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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), + }, + [3442] = { + [sym_type_constraints] = STATE(3661), + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3443] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_DOT] = ACTIONS(4870), + [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_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(5123), - [sym_safe_nav] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(4872), + [sym_safe_nav] = ACTIONS(4872), [sym_multiline_comment] = ACTIONS(3), }, - [3484] = { - [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(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), + [3444] = { + [sym__alpha_identifier] = ACTIONS(4874), + [anon_sym_AT] = ACTIONS(4876), + [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4876), + [anon_sym_DOT] = ACTIONS(4874), + [anon_sym_as] = ACTIONS(4874), + [anon_sym_EQ] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4876), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_LPAREN] = ACTIONS(4876), + [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_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), }, - [3486] = { - [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), + [3445] = { + [sym_type_constraints] = STATE(3660), + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3216), + [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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), - [sym__backtick_identifier] = ACTIONS(121), - [sym_safe_nav] = ACTIONS(121), + [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), }, - [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), + [3446] = { + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_RBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [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_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), + [sym__backtick_identifier] = ACTIONS(4655), + [sym_safe_nav] = ACTIONS(4655), [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), + [3447] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), + [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_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(4788), - [sym_safe_nav] = ACTIONS(4788), + [sym__backtick_identifier] = ACTIONS(4912), + [sym_safe_nav] = ACTIONS(4912), [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), + [3448] = { + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_RBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_DASH_GT] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [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), + [3449] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), }, - [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), + [3450] = { + [sym__alpha_identifier] = ACTIONS(4511), + [anon_sym_AT] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_object] = ACTIONS(4511), + [anon_sym_fun] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4511), + [anon_sym_set] = ACTIONS(4511), + [anon_sym_this] = ACTIONS(4511), + [anon_sym_super] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4513), + [sym_label] = ACTIONS(4511), + [anon_sym_in] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(4511), + [anon_sym_if] = ACTIONS(4511), + [anon_sym_else] = ACTIONS(4511), + [anon_sym_when] = ACTIONS(4511), + [anon_sym_try] = ACTIONS(4511), + [anon_sym_throw] = ACTIONS(4511), + [anon_sym_return] = ACTIONS(4511), + [anon_sym_continue] = ACTIONS(4511), + [anon_sym_break] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4513), + [anon_sym_is] = ACTIONS(4511), + [anon_sym_BANGis] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4511), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_suspend] = ACTIONS(4511), + [anon_sym_sealed] = ACTIONS(4511), + [anon_sym_annotation] = ACTIONS(4511), + [anon_sym_data] = ACTIONS(4511), + [anon_sym_inner] = ACTIONS(4511), + [anon_sym_value] = ACTIONS(4511), + [anon_sym_override] = ACTIONS(4511), + [anon_sym_lateinit] = ACTIONS(4511), + [anon_sym_public] = ACTIONS(4511), + [anon_sym_private] = ACTIONS(4511), + [anon_sym_internal] = ACTIONS(4511), + [anon_sym_protected] = ACTIONS(4511), + [anon_sym_tailrec] = ACTIONS(4511), + [anon_sym_operator] = ACTIONS(4511), + [anon_sym_infix] = ACTIONS(4511), + [anon_sym_inline] = ACTIONS(4511), + [anon_sym_external] = ACTIONS(4511), + [sym_property_modifier] = ACTIONS(4511), + [anon_sym_abstract] = ACTIONS(4511), + [anon_sym_final] = ACTIONS(4511), + [anon_sym_open] = ACTIONS(4511), + [anon_sym_vararg] = ACTIONS(4511), + [anon_sym_noinline] = ACTIONS(4511), + [anon_sym_crossinline] = ACTIONS(4511), + [anon_sym_expect] = ACTIONS(4511), + [anon_sym_actual] = ACTIONS(4511), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4513), + [anon_sym_continue_AT] = ACTIONS(4513), + [anon_sym_break_AT] = ACTIONS(4513), + [anon_sym_this_AT] = ACTIONS(4513), + [anon_sym_super_AT] = ACTIONS(4513), + [sym_real_literal] = ACTIONS(4513), + [sym_integer_literal] = ACTIONS(4511), + [sym_hex_literal] = ACTIONS(4513), + [sym_bin_literal] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4511), + [anon_sym_false] = ACTIONS(4511), + [anon_sym_SQUOTE] = ACTIONS(4513), + [sym__backtick_identifier] = ACTIONS(4513), + [sym__automatic_semicolon] = ACTIONS(4513), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4513), }, - [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), + [3451] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_object] = ACTIONS(4680), + [anon_sym_fun] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_this] = ACTIONS(4680), + [anon_sym_super] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_when] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4680), + [anon_sym_throw] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_continue] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4682), + [anon_sym_continue_AT] = ACTIONS(4682), + [anon_sym_break_AT] = ACTIONS(4682), + [anon_sym_this_AT] = ACTIONS(4682), + [anon_sym_super_AT] = ACTIONS(4682), + [sym_real_literal] = ACTIONS(4682), + [sym_integer_literal] = ACTIONS(4680), + [sym_hex_literal] = ACTIONS(4682), + [sym_bin_literal] = ACTIONS(4682), + [anon_sym_true] = ACTIONS(4680), + [anon_sym_false] = ACTIONS(4680), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4682), }, - [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), + [3452] = { + [sym_type_constraints] = STATE(3659), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3453] = { + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_RBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_RPAREN] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_DASH_GT] = ACTIONS(4377), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), [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), + [3454] = { + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [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_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), }, - [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), + [3455] = { + [ts_builtin_sym_end] = ACTIONS(6869), + [sym__alpha_identifier] = ACTIONS(6871), + [anon_sym_AT] = ACTIONS(6869), + [anon_sym_LBRACK] = ACTIONS(6869), + [anon_sym_package] = ACTIONS(6871), + [anon_sym_import] = ACTIONS(6871), + [anon_sym_typealias] = ACTIONS(6871), + [anon_sym_class] = ACTIONS(6871), + [anon_sym_interface] = ACTIONS(6871), + [anon_sym_enum] = ACTIONS(6871), + [anon_sym_LBRACE] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6869), + [anon_sym_val] = ACTIONS(6871), + [anon_sym_var] = ACTIONS(6871), + [anon_sym_object] = ACTIONS(6871), + [anon_sym_fun] = ACTIONS(6871), + [anon_sym_get] = ACTIONS(6871), + [anon_sym_set] = ACTIONS(6871), + [anon_sym_this] = ACTIONS(6871), + [anon_sym_super] = ACTIONS(6871), + [anon_sym_STAR] = ACTIONS(6869), + [sym_label] = ACTIONS(6871), + [anon_sym_for] = ACTIONS(6871), + [anon_sym_while] = ACTIONS(6871), + [anon_sym_do] = ACTIONS(6871), + [anon_sym_null] = ACTIONS(6871), + [anon_sym_if] = ACTIONS(6871), + [anon_sym_when] = ACTIONS(6871), + [anon_sym_try] = ACTIONS(6871), + [anon_sym_throw] = ACTIONS(6871), + [anon_sym_return] = ACTIONS(6871), + [anon_sym_continue] = ACTIONS(6871), + [anon_sym_break] = ACTIONS(6871), + [anon_sym_COLON_COLON] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6871), + [anon_sym_DASH] = ACTIONS(6871), + [anon_sym_PLUS_PLUS] = ACTIONS(6869), + [anon_sym_DASH_DASH] = ACTIONS(6869), + [anon_sym_BANG] = ACTIONS(6869), + [anon_sym_suspend] = ACTIONS(6871), + [anon_sym_sealed] = ACTIONS(6871), + [anon_sym_annotation] = ACTIONS(6871), + [anon_sym_data] = ACTIONS(6871), + [anon_sym_inner] = ACTIONS(6871), + [anon_sym_value] = ACTIONS(6871), + [anon_sym_override] = ACTIONS(6871), + [anon_sym_lateinit] = ACTIONS(6871), + [anon_sym_public] = ACTIONS(6871), + [anon_sym_private] = ACTIONS(6871), + [anon_sym_internal] = ACTIONS(6871), + [anon_sym_protected] = ACTIONS(6871), + [anon_sym_tailrec] = ACTIONS(6871), + [anon_sym_operator] = ACTIONS(6871), + [anon_sym_infix] = ACTIONS(6871), + [anon_sym_inline] = ACTIONS(6871), + [anon_sym_external] = ACTIONS(6871), + [sym_property_modifier] = ACTIONS(6871), + [anon_sym_abstract] = ACTIONS(6871), + [anon_sym_final] = ACTIONS(6871), + [anon_sym_open] = ACTIONS(6871), + [anon_sym_vararg] = ACTIONS(6871), + [anon_sym_noinline] = ACTIONS(6871), + [anon_sym_crossinline] = ACTIONS(6871), + [anon_sym_expect] = ACTIONS(6871), + [anon_sym_actual] = ACTIONS(6871), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6869), + [anon_sym_continue_AT] = ACTIONS(6869), + [anon_sym_break_AT] = ACTIONS(6869), + [anon_sym_this_AT] = ACTIONS(6869), + [anon_sym_super_AT] = ACTIONS(6869), + [sym_real_literal] = ACTIONS(6869), + [sym_integer_literal] = ACTIONS(6871), + [sym_hex_literal] = ACTIONS(6869), + [sym_bin_literal] = ACTIONS(6869), + [anon_sym_true] = ACTIONS(6871), + [anon_sym_false] = ACTIONS(6871), + [anon_sym_SQUOTE] = ACTIONS(6869), + [sym__backtick_identifier] = ACTIONS(6869), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6869), + }, + [3456] = { + [aux_sym_nullable_type_repeat1] = STATE(3408), + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [sym__quest] = ACTIONS(6873), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4269), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(4792), - [sym_safe_nav] = ACTIONS(4792), + [sym__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [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), + [3457] = { + [sym_type_constraints] = STATE(3999), + [sym_function_body] = STATE(3841), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6875), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = 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(5119), - [sym_safe_nav] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(4155), + [sym__automatic_semicolon] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), [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), + [3458] = { + [sym_type_constraints] = STATE(3634), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3459] = { + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), [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), + [3460] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(6879), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4796), - [sym_safe_nav] = ACTIONS(4796), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [3461] = { + [sym_type_constraints] = STATE(3991), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6883), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3462] = { + [sym_type_constraints] = STATE(3972), + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6885), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [3501] = { - [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), + [3463] = { + [sym_type_constraints] = STATE(3655), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3464] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(6887), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [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(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [3502] = { - [sym__alpha_identifier] = ACTIONS(5145), - [anon_sym_AT] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_RBRACK] = 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_RPAREN] = 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), - [anon_sym_DASH_GT] = ACTIONS(5147), - [sym_label] = ACTIONS(5147), - [anon_sym_in] = ACTIONS(5145), - [anon_sym_while] = 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_safe_nav] = ACTIONS(5147), + [3465] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_RBRACK] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4782), + [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_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), }, - [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), + [3466] = { + [sym__alpha_identifier] = ACTIONS(4882), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_RBRACK] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_RPAREN] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_get] = ACTIONS(4882), + [anon_sym_set] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [anon_sym_DASH_GT] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_QMARK_COLON] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_PIPE_PIPE] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_COLON_COLON] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_PERCENT_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4884), + [anon_sym_is] = ACTIONS(4882), + [anon_sym_BANGis] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4882), + [anon_sym_as_QMARK] = ACTIONS(4884), + [anon_sym_PLUS_PLUS] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4884), + [anon_sym_suspend] = ACTIONS(4882), + [anon_sym_sealed] = ACTIONS(4882), + [anon_sym_annotation] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4882), + [anon_sym_inner] = ACTIONS(4882), + [anon_sym_value] = ACTIONS(4882), + [anon_sym_override] = ACTIONS(4882), + [anon_sym_lateinit] = ACTIONS(4882), + [anon_sym_public] = ACTIONS(4882), + [anon_sym_private] = ACTIONS(4882), + [anon_sym_internal] = ACTIONS(4882), + [anon_sym_protected] = ACTIONS(4882), + [anon_sym_tailrec] = ACTIONS(4882), + [anon_sym_operator] = ACTIONS(4882), + [anon_sym_infix] = ACTIONS(4882), + [anon_sym_inline] = ACTIONS(4882), + [anon_sym_external] = ACTIONS(4882), + [sym_property_modifier] = ACTIONS(4882), + [anon_sym_abstract] = ACTIONS(4882), + [anon_sym_final] = ACTIONS(4882), + [anon_sym_open] = ACTIONS(4882), + [anon_sym_vararg] = ACTIONS(4882), + [anon_sym_noinline] = ACTIONS(4882), + [anon_sym_crossinline] = ACTIONS(4882), + [anon_sym_expect] = ACTIONS(4882), + [anon_sym_actual] = ACTIONS(4882), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4884), + [sym_safe_nav] = ACTIONS(4884), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3467] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(6891), + [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(6893), + [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), }, - [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), + [3468] = { + [sym__alpha_identifier] = ACTIONS(5155), + [anon_sym_AT] = ACTIONS(5157), + [anon_sym_LBRACK] = ACTIONS(5157), + [anon_sym_RBRACK] = ACTIONS(5157), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5157), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_COMMA] = ACTIONS(5157), + [anon_sym_RPAREN] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5155), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(5155), + [anon_sym_set] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5155), + [anon_sym_DASH_GT] = ACTIONS(5157), + [sym_label] = ACTIONS(5157), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_while] = ACTIONS(5155), + [anon_sym_DOT_DOT] = ACTIONS(5157), + [anon_sym_QMARK_COLON] = ACTIONS(5157), + [anon_sym_AMP_AMP] = ACTIONS(5157), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_else] = ACTIONS(5155), + [anon_sym_COLON_COLON] = ACTIONS(5157), + [anon_sym_PLUS_EQ] = ACTIONS(5157), + [anon_sym_DASH_EQ] = ACTIONS(5157), + [anon_sym_STAR_EQ] = ACTIONS(5157), + [anon_sym_SLASH_EQ] = ACTIONS(5157), + [anon_sym_PERCENT_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5157), + [anon_sym_LT_EQ] = ACTIONS(5157), + [anon_sym_GT_EQ] = ACTIONS(5157), + [anon_sym_BANGin] = ACTIONS(5157), + [anon_sym_is] = ACTIONS(5155), + [anon_sym_BANGis] = ACTIONS(5157), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5155), + [anon_sym_as_QMARK] = ACTIONS(5157), + [anon_sym_PLUS_PLUS] = ACTIONS(5157), + [anon_sym_DASH_DASH] = ACTIONS(5157), + [anon_sym_BANG_BANG] = ACTIONS(5157), + [anon_sym_suspend] = ACTIONS(5155), + [anon_sym_sealed] = ACTIONS(5155), + [anon_sym_annotation] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5155), + [anon_sym_inner] = ACTIONS(5155), + [anon_sym_value] = ACTIONS(5155), + [anon_sym_override] = ACTIONS(5155), + [anon_sym_lateinit] = ACTIONS(5155), + [anon_sym_public] = ACTIONS(5155), + [anon_sym_private] = ACTIONS(5155), + [anon_sym_internal] = ACTIONS(5155), + [anon_sym_protected] = ACTIONS(5155), + [anon_sym_tailrec] = ACTIONS(5155), + [anon_sym_operator] = ACTIONS(5155), + [anon_sym_infix] = ACTIONS(5155), + [anon_sym_inline] = ACTIONS(5155), + [anon_sym_external] = ACTIONS(5155), + [sym_property_modifier] = ACTIONS(5155), + [anon_sym_abstract] = ACTIONS(5155), + [anon_sym_final] = ACTIONS(5155), + [anon_sym_open] = ACTIONS(5155), + [anon_sym_vararg] = ACTIONS(5155), + [anon_sym_noinline] = ACTIONS(5155), + [anon_sym_crossinline] = ACTIONS(5155), + [anon_sym_expect] = ACTIONS(5155), + [anon_sym_actual] = ACTIONS(5155), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5157), + [sym_safe_nav] = ACTIONS(5157), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3469] = { + [ts_builtin_sym_end] = ACTIONS(6895), + [sym__alpha_identifier] = ACTIONS(6897), + [anon_sym_AT] = ACTIONS(6895), + [anon_sym_LBRACK] = ACTIONS(6895), + [anon_sym_package] = ACTIONS(6897), + [anon_sym_import] = ACTIONS(6897), + [anon_sym_typealias] = ACTIONS(6897), + [anon_sym_class] = ACTIONS(6897), + [anon_sym_interface] = ACTIONS(6897), + [anon_sym_enum] = ACTIONS(6897), + [anon_sym_LBRACE] = ACTIONS(6895), + [anon_sym_LPAREN] = ACTIONS(6895), + [anon_sym_val] = ACTIONS(6897), + [anon_sym_var] = ACTIONS(6897), + [anon_sym_object] = ACTIONS(6897), + [anon_sym_fun] = ACTIONS(6897), + [anon_sym_get] = ACTIONS(6897), + [anon_sym_set] = ACTIONS(6897), + [anon_sym_this] = ACTIONS(6897), + [anon_sym_super] = ACTIONS(6897), + [anon_sym_STAR] = ACTIONS(6895), + [sym_label] = ACTIONS(6897), + [anon_sym_for] = ACTIONS(6897), + [anon_sym_while] = ACTIONS(6897), + [anon_sym_do] = ACTIONS(6897), + [anon_sym_null] = ACTIONS(6897), + [anon_sym_if] = ACTIONS(6897), + [anon_sym_when] = ACTIONS(6897), + [anon_sym_try] = ACTIONS(6897), + [anon_sym_throw] = ACTIONS(6897), + [anon_sym_return] = ACTIONS(6897), + [anon_sym_continue] = ACTIONS(6897), + [anon_sym_break] = ACTIONS(6897), + [anon_sym_COLON_COLON] = ACTIONS(6895), + [anon_sym_PLUS] = ACTIONS(6897), + [anon_sym_DASH] = ACTIONS(6897), + [anon_sym_PLUS_PLUS] = ACTIONS(6895), + [anon_sym_DASH_DASH] = ACTIONS(6895), + [anon_sym_BANG] = ACTIONS(6895), + [anon_sym_suspend] = ACTIONS(6897), + [anon_sym_sealed] = ACTIONS(6897), + [anon_sym_annotation] = ACTIONS(6897), + [anon_sym_data] = ACTIONS(6897), + [anon_sym_inner] = ACTIONS(6897), + [anon_sym_value] = ACTIONS(6897), + [anon_sym_override] = ACTIONS(6897), + [anon_sym_lateinit] = ACTIONS(6897), + [anon_sym_public] = ACTIONS(6897), + [anon_sym_private] = ACTIONS(6897), + [anon_sym_internal] = ACTIONS(6897), + [anon_sym_protected] = ACTIONS(6897), + [anon_sym_tailrec] = ACTIONS(6897), + [anon_sym_operator] = ACTIONS(6897), + [anon_sym_infix] = ACTIONS(6897), + [anon_sym_inline] = ACTIONS(6897), + [anon_sym_external] = ACTIONS(6897), + [sym_property_modifier] = ACTIONS(6897), + [anon_sym_abstract] = ACTIONS(6897), + [anon_sym_final] = ACTIONS(6897), + [anon_sym_open] = ACTIONS(6897), + [anon_sym_vararg] = ACTIONS(6897), + [anon_sym_noinline] = ACTIONS(6897), + [anon_sym_crossinline] = ACTIONS(6897), + [anon_sym_expect] = ACTIONS(6897), + [anon_sym_actual] = ACTIONS(6897), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6895), + [anon_sym_continue_AT] = ACTIONS(6895), + [anon_sym_break_AT] = ACTIONS(6895), + [anon_sym_this_AT] = ACTIONS(6895), + [anon_sym_super_AT] = ACTIONS(6895), + [sym_real_literal] = ACTIONS(6895), + [sym_integer_literal] = ACTIONS(6897), + [sym_hex_literal] = ACTIONS(6895), + [sym_bin_literal] = ACTIONS(6895), + [anon_sym_true] = ACTIONS(6897), + [anon_sym_false] = ACTIONS(6897), + [anon_sym_SQUOTE] = ACTIONS(6895), + [sym__backtick_identifier] = ACTIONS(6895), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6895), + }, + [3470] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = 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(6893), + [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), + }, + [3471] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_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), + }, + [3472] = { + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_as] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4265), [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_LPAREN] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(4265), + [anon_sym_by] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_where] = ACTIONS(4263), [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_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [sym__quest] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [sym_label] = ACTIONS(4265), + [anon_sym_in] = ACTIONS(4263), [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_else] = ACTIONS(4263), + [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] = ACTIONS(4263), [anon_sym_BANG_EQ_EQ] = ACTIONS(4265), - [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ] = ACTIONS(4263), [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_is] = ACTIONS(4263), [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_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), [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_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), [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), + [anon_sym_suspend] = ACTIONS(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_annotation] = ACTIONS(4263), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_lateinit] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_tailrec] = ACTIONS(4263), + [anon_sym_operator] = ACTIONS(4263), + [anon_sym_infix] = ACTIONS(4263), + [anon_sym_inline] = ACTIONS(4263), + [anon_sym_external] = ACTIONS(4263), + [sym_property_modifier] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_final] = ACTIONS(4263), + [anon_sym_open] = ACTIONS(4263), + [anon_sym_vararg] = ACTIONS(4263), + [anon_sym_noinline] = ACTIONS(4263), + [anon_sym_crossinline] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [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), - [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), + [3473] = { + [sym_type_constraints] = STATE(3774), + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, - [3508] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), + [3474] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RPAREN] = ACTIONS(4292), [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_where] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4292), + [sym_label] = ACTIONS(4292), [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_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4292), + [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(5026), - [sym_safe_nav] = ACTIONS(5026), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [anon_sym_RBRACK] = 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_RPAREN] = 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), - [anon_sym_DASH_GT] = ACTIONS(5207), - [sym_label] = ACTIONS(5207), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_while] = 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_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4972), - [sym_safe_nav] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3475] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5630), + [anon_sym_COMMA] = ACTIONS(4278), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4278), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3476] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_RBRACK] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4794), + [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_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), }, - [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), + [3477] = { + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4247), + [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_SEMI] = ACTIONS(4249), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [sym__quest] = ACTIONS(4247), + [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), }, - [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), + [3478] = { + [sym__alpha_identifier] = ACTIONS(4858), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_RBRACK] = ACTIONS(4860), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_as] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_where] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_DASH_GT] = ACTIONS(4860), + [sym_label] = ACTIONS(4860), + [anon_sym_in] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_QMARK_COLON] = ACTIONS(4860), + [anon_sym_AMP_AMP] = ACTIONS(4860), + [anon_sym_PIPE_PIPE] = ACTIONS(4860), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_PERCENT_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4860), + [anon_sym_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4860), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_BANGin] = ACTIONS(4860), + [anon_sym_is] = ACTIONS(4858), + [anon_sym_BANGis] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4860), + [anon_sym_PLUS_PLUS] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4860), + [anon_sym_BANG_BANG] = ACTIONS(4860), + [anon_sym_suspend] = ACTIONS(4858), + [anon_sym_sealed] = ACTIONS(4858), + [anon_sym_annotation] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4858), + [anon_sym_inner] = ACTIONS(4858), + [anon_sym_value] = ACTIONS(4858), + [anon_sym_override] = ACTIONS(4858), + [anon_sym_lateinit] = ACTIONS(4858), + [anon_sym_public] = ACTIONS(4858), + [anon_sym_private] = ACTIONS(4858), + [anon_sym_internal] = ACTIONS(4858), + [anon_sym_protected] = ACTIONS(4858), + [anon_sym_tailrec] = ACTIONS(4858), + [anon_sym_operator] = ACTIONS(4858), + [anon_sym_infix] = ACTIONS(4858), + [anon_sym_inline] = ACTIONS(4858), + [anon_sym_external] = ACTIONS(4858), + [sym_property_modifier] = ACTIONS(4858), + [anon_sym_abstract] = ACTIONS(4858), + [anon_sym_final] = ACTIONS(4858), + [anon_sym_open] = ACTIONS(4858), + [anon_sym_vararg] = ACTIONS(4858), + [anon_sym_noinline] = ACTIONS(4858), + [anon_sym_crossinline] = ACTIONS(4858), + [anon_sym_expect] = ACTIONS(4858), + [anon_sym_actual] = ACTIONS(4858), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4860), + [sym_safe_nav] = ACTIONS(4860), [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), - [anon_sym_RBRACK] = 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_RPAREN] = 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), - [anon_sym_DASH_GT] = ACTIONS(5221), - [sym_label] = ACTIONS(5221), - [anon_sym_in] = ACTIONS(5219), - [anon_sym_while] = 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), + [3479] = { + [sym_type_constraints] = STATE(3773), + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [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(5221), - [sym_safe_nav] = ACTIONS(5221), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3480] = { + [sym_type_constraints] = STATE(3771), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3481] = { + [sym__alpha_identifier] = ACTIONS(4890), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_RBRACK] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_RPAREN] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_where] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_get] = ACTIONS(4890), + [anon_sym_set] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_DASH_GT] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4892), + [anon_sym_QMARK_COLON] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_PERCENT_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_BANGin] = ACTIONS(4892), + [anon_sym_is] = ACTIONS(4890), + [anon_sym_BANGis] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4890), + [anon_sym_as_QMARK] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4892), + [anon_sym_suspend] = ACTIONS(4890), + [anon_sym_sealed] = ACTIONS(4890), + [anon_sym_annotation] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4890), + [anon_sym_inner] = ACTIONS(4890), + [anon_sym_value] = ACTIONS(4890), + [anon_sym_override] = ACTIONS(4890), + [anon_sym_lateinit] = ACTIONS(4890), + [anon_sym_public] = ACTIONS(4890), + [anon_sym_private] = ACTIONS(4890), + [anon_sym_internal] = ACTIONS(4890), + [anon_sym_protected] = ACTIONS(4890), + [anon_sym_tailrec] = ACTIONS(4890), + [anon_sym_operator] = ACTIONS(4890), + [anon_sym_infix] = ACTIONS(4890), + [anon_sym_inline] = ACTIONS(4890), + [anon_sym_external] = ACTIONS(4890), + [sym_property_modifier] = ACTIONS(4890), + [anon_sym_abstract] = ACTIONS(4890), + [anon_sym_final] = ACTIONS(4890), + [anon_sym_open] = ACTIONS(4890), + [anon_sym_vararg] = ACTIONS(4890), + [anon_sym_noinline] = ACTIONS(4890), + [anon_sym_crossinline] = ACTIONS(4890), + [anon_sym_expect] = ACTIONS(4890), + [anon_sym_actual] = ACTIONS(4890), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4892), + [sym_safe_nav] = ACTIONS(4892), [sym_multiline_comment] = ACTIONS(3), }, - [3536] = { + [3482] = { + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [3483] = { + [sym_type_constraints] = STATE(4011), + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6899), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [3484] = { [sym__alpha_identifier] = ACTIONS(1790), [anon_sym_AT] = ACTIONS(1792), [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_RBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), [anon_sym_as] = ACTIONS(1790), [anon_sym_EQ] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1792), @@ -407089,7 +399417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -407157,690 +399484,1935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3485] = { + [sym_type_constraints] = STATE(3769), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3486] = { + [aux_sym_nullable_type_repeat1] = STATE(3486), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [sym__quest] = ACTIONS(6901), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4236), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + }, + [3487] = { + [sym_type_constraints] = STATE(3768), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3488] = { + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_as] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_COMMA] = ACTIONS(4173), + [anon_sym_by] = ACTIONS(4171), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [anon_sym_where] = ACTIONS(4171), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), + [sym__quest] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4171), + [sym_label] = ACTIONS(4173), + [anon_sym_in] = ACTIONS(4171), + [anon_sym_DOT_DOT] = ACTIONS(4173), + [anon_sym_QMARK_COLON] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_PIPE_PIPE] = ACTIONS(4173), + [anon_sym_else] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4173), + [anon_sym_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4173), + [anon_sym_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_EQ] = ACTIONS(4173), + [anon_sym_BANGin] = ACTIONS(4173), + [anon_sym_is] = ACTIONS(4171), + [anon_sym_BANGis] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_as_QMARK] = ACTIONS(4173), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4173), + [sym__automatic_semicolon] = ACTIONS(4173), + [sym_safe_nav] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + }, + [3489] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_by] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_object] = ACTIONS(4672), + [anon_sym_fun] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_this] = ACTIONS(4672), + [anon_sym_super] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4674), + [sym_label] = ACTIONS(4672), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), + [anon_sym_if] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_when] = ACTIONS(4672), + [anon_sym_try] = ACTIONS(4672), + [anon_sym_throw] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_continue] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4672), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4674), + [anon_sym_continue_AT] = ACTIONS(4674), + [anon_sym_break_AT] = ACTIONS(4674), + [anon_sym_this_AT] = ACTIONS(4674), + [anon_sym_super_AT] = ACTIONS(4674), + [sym_real_literal] = ACTIONS(4674), + [sym_integer_literal] = ACTIONS(4672), + [sym_hex_literal] = ACTIONS(4674), + [sym_bin_literal] = ACTIONS(4674), + [anon_sym_true] = ACTIONS(4672), + [anon_sym_false] = ACTIONS(4672), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4674), + }, + [3490] = { + [sym__alpha_identifier] = ACTIONS(4886), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_RBRACK] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_RPAREN] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_where] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_get] = ACTIONS(4886), + [anon_sym_set] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_DASH_GT] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4888), + [anon_sym_QMARK_COLON] = ACTIONS(4888), + [anon_sym_AMP_AMP] = ACTIONS(4888), + [anon_sym_PIPE_PIPE] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4888), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_PERCENT_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_BANGin] = ACTIONS(4888), + [anon_sym_is] = ACTIONS(4886), + [anon_sym_BANGis] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_as_QMARK] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4888), + [anon_sym_suspend] = ACTIONS(4886), + [anon_sym_sealed] = ACTIONS(4886), + [anon_sym_annotation] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4886), + [anon_sym_inner] = ACTIONS(4886), + [anon_sym_value] = ACTIONS(4886), + [anon_sym_override] = ACTIONS(4886), + [anon_sym_lateinit] = ACTIONS(4886), + [anon_sym_public] = ACTIONS(4886), + [anon_sym_private] = ACTIONS(4886), + [anon_sym_internal] = ACTIONS(4886), + [anon_sym_protected] = ACTIONS(4886), + [anon_sym_tailrec] = ACTIONS(4886), + [anon_sym_operator] = ACTIONS(4886), + [anon_sym_infix] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym_external] = ACTIONS(4886), + [sym_property_modifier] = ACTIONS(4886), + [anon_sym_abstract] = ACTIONS(4886), + [anon_sym_final] = ACTIONS(4886), + [anon_sym_open] = ACTIONS(4886), + [anon_sym_vararg] = ACTIONS(4886), + [anon_sym_noinline] = ACTIONS(4886), + [anon_sym_crossinline] = ACTIONS(4886), + [anon_sym_expect] = ACTIONS(4886), + [anon_sym_actual] = ACTIONS(4886), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4888), + [sym_safe_nav] = ACTIONS(4888), + [sym_multiline_comment] = ACTIONS(3), + }, + [3491] = { + [sym__alpha_identifier] = ACTIONS(4748), + [anon_sym_AT] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4748), + [anon_sym_where] = ACTIONS(4748), + [anon_sym_object] = ACTIONS(4748), + [anon_sym_fun] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_get] = ACTIONS(4748), + [anon_sym_set] = ACTIONS(4748), + [anon_sym_this] = ACTIONS(4748), + [anon_sym_super] = ACTIONS(4748), + [anon_sym_STAR] = ACTIONS(4751), + [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(4751), + [anon_sym_BANGin] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4748), + [anon_sym_BANGis] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4748), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [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(4751), + [anon_sym_continue_AT] = ACTIONS(4751), + [anon_sym_break_AT] = ACTIONS(4751), + [anon_sym_this_AT] = ACTIONS(4751), + [anon_sym_super_AT] = ACTIONS(4751), + [sym_real_literal] = ACTIONS(4751), + [sym_integer_literal] = ACTIONS(4748), + [sym_hex_literal] = ACTIONS(4751), + [sym_bin_literal] = ACTIONS(4751), + [anon_sym_true] = ACTIONS(4748), + [anon_sym_false] = ACTIONS(4748), + [anon_sym_SQUOTE] = ACTIONS(4751), + [sym__backtick_identifier] = ACTIONS(4751), + [sym__automatic_semicolon] = ACTIONS(4751), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4751), + }, + [3492] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(4299), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RPAREN] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_DASH_GT] = ACTIONS(4292), + [sym_label] = ACTIONS(4292), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(5161), - [sym_safe_nav] = ACTIONS(5161), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [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), + [3493] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(4285), + [anon_sym_COMMA] = ACTIONS(4278), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_DASH_GT] = ACTIONS(4278), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym_safe_nav] = ACTIONS(4278), [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), + [3494] = { + [sym__alpha_identifier] = ACTIONS(4818), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4820), + [anon_sym_DOT] = ACTIONS(4818), + [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_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(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_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(4218), - [sym_safe_nav] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4820), + [sym_safe_nav] = ACTIONS(4820), [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), + [3495] = { + [sym_function_body] = STATE(3879), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(6904), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + }, + [3496] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_as] = ACTIONS(4307), + [anon_sym_EQ] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_COMMA] = ACTIONS(4309), + [anon_sym_by] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [anon_sym_where] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4307), + [sym__quest] = 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(4920), - [sym_safe_nav] = ACTIONS(4920), + [sym__backtick_identifier] = ACTIONS(4309), + [sym__automatic_semicolon] = ACTIONS(4309), + [sym_safe_nav] = ACTIONS(4309), + [sym_multiline_comment] = ACTIONS(3), + }, + [3497] = { + [sym_type_constraints] = STATE(3678), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3498] = { + [sym_type_constraints] = STATE(4020), + [sym_function_body] = STATE(3200), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6906), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_fun] = ACTIONS(4153), + [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_STAR] = ACTIONS(4155), + [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_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(4155), + [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), + }, + [3499] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [anon_sym_DASH_GT] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_while] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_suspend] = ACTIONS(5133), + [anon_sym_sealed] = ACTIONS(5133), + [anon_sym_annotation] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_override] = ACTIONS(5133), + [anon_sym_lateinit] = ACTIONS(5133), + [anon_sym_public] = ACTIONS(5133), + [anon_sym_private] = ACTIONS(5133), + [anon_sym_internal] = ACTIONS(5133), + [anon_sym_protected] = ACTIONS(5133), + [anon_sym_tailrec] = ACTIONS(5133), + [anon_sym_operator] = ACTIONS(5133), + [anon_sym_infix] = ACTIONS(5133), + [anon_sym_inline] = ACTIONS(5133), + [anon_sym_external] = ACTIONS(5133), + [sym_property_modifier] = ACTIONS(5133), + [anon_sym_abstract] = ACTIONS(5133), + [anon_sym_final] = ACTIONS(5133), + [anon_sym_open] = ACTIONS(5133), + [anon_sym_vararg] = ACTIONS(5133), + [anon_sym_noinline] = ACTIONS(5133), + [anon_sym_crossinline] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), [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), + [3500] = { + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_RBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_DASH_GT] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3501] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [anon_sym_DASH_GT] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_while] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), + [sym_multiline_comment] = ACTIONS(3), + }, + [3502] = { + [sym_class_body] = STATE(3874), + [sym_type_constraints] = STATE(3715), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5834), + [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(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [3503] = { + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_RBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_DASH_GT] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [3504] = { + [sym_type_constraints] = STATE(3927), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6908), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3505] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [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_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(5165), - [sym_safe_nav] = ACTIONS(5165), + [sym__backtick_identifier] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [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_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_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), - [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), - [sym__backtick_identifier] = ACTIONS(4357), - [sym_safe_nav] = ACTIONS(4357), + [3506] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6910), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_DASH_GT] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3507] = { + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_RBRACK] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [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_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), }, - [3545] = { + [3508] = { + [sym_class_body] = STATE(3830), + [sym_type_constraints] = STATE(3819), [sym__alpha_identifier] = ACTIONS(4317), [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(6912), [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), [anon_sym_as] = ACTIONS(4317), [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(5834), [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_where] = ACTIONS(5822), [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), @@ -407904,2852 +401476,1855 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [3509] = { + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5818), + [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(5822), + [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), }, - [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), + [3510] = { + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_RBRACK] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), + [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_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), }, - [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(5185), - [sym_safe_nav] = ACTIONS(5185), + [3511] = { + [sym_class_body] = STATE(4023), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5834), + [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(5822), + [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), }, - [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), + [3512] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_RBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_RPAREN] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5111), + [sym_label] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_while] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), [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), + [3513] = { + [sym__alpha_identifier] = ACTIONS(4790), + [anon_sym_AT] = ACTIONS(4792), + [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_RBRACK] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4790), + [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_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(4964), - [sym_safe_nav] = ACTIONS(4964), + [sym__backtick_identifier] = ACTIONS(4792), + [sym_safe_nav] = ACTIONS(4792), [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), + [3514] = { + [sym_type_constraints] = STATE(3775), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [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), + [3515] = { + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3764), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(6916), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [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(6903), - [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), - }, - [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), + [3516] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6918), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3517] = { + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(5898), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3518] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), + [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_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(4206), - [sym__automatic_semicolon] = ACTIONS(4206), - [sym_safe_nav] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), - }, - [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), + [3519] = { + [sym_type_constraints] = STATE(3727), + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(6920), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), + [3520] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_RBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(6922), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_RPAREN] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_DASH_GT] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3521] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_RBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(6924), + [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_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), }, - [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), + [3522] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6926), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), }, - [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), + [3523] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(4738), + [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_where] = ACTIONS(4736), + [anon_sym_object] = ACTIONS(4736), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4738), + [anon_sym_BANG] = ACTIONS(4736), + [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(5201), - [sym_safe_nav] = ACTIONS(5201), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4738), }, - [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), - }, - [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), - }, - [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), + [3524] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_object] = ACTIONS(4718), + [anon_sym_fun] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4721), + [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(4721), + [anon_sym_BANGin] = ACTIONS(4721), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4721), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [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(4721), + [anon_sym_continue_AT] = ACTIONS(4721), + [anon_sym_break_AT] = ACTIONS(4721), + [anon_sym_this_AT] = ACTIONS(4721), + [anon_sym_super_AT] = ACTIONS(4721), + [sym_real_literal] = ACTIONS(4721), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4721), + [sym_bin_literal] = ACTIONS(4721), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4721), + [sym__backtick_identifier] = ACTIONS(4721), + [sym__automatic_semicolon] = ACTIONS(4721), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4721), }, - [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), + [3525] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), [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), - [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), - }, - [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(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), - }, - [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), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), }, - [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), + [3526] = { + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_RBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_DASH_GT] = ACTIONS(4409), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_while] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3527] = { + [sym__alpha_identifier] = ACTIONS(5211), + [anon_sym_AT] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_RBRACK] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_COMMA] = ACTIONS(5213), + [anon_sym_RPAREN] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym_get] = ACTIONS(5211), + [anon_sym_set] = ACTIONS(5211), + [anon_sym_STAR] = ACTIONS(5211), + [anon_sym_DASH_GT] = ACTIONS(5213), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_while] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_QMARK_COLON] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_PIPE_PIPE] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5211), + [anon_sym_COLON_COLON] = ACTIONS(5213), + [anon_sym_PLUS_EQ] = ACTIONS(5213), + [anon_sym_DASH_EQ] = ACTIONS(5213), + [anon_sym_STAR_EQ] = ACTIONS(5213), + [anon_sym_SLASH_EQ] = ACTIONS(5213), + [anon_sym_PERCENT_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5213), + [anon_sym_GT_EQ] = ACTIONS(5213), + [anon_sym_BANGin] = ACTIONS(5213), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_BANGis] = ACTIONS(5213), + [anon_sym_PLUS] = ACTIONS(5211), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_as_QMARK] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5213), + [anon_sym_suspend] = ACTIONS(5211), + [anon_sym_sealed] = ACTIONS(5211), + [anon_sym_annotation] = ACTIONS(5211), + [anon_sym_data] = ACTIONS(5211), + [anon_sym_inner] = ACTIONS(5211), + [anon_sym_value] = ACTIONS(5211), + [anon_sym_override] = ACTIONS(5211), + [anon_sym_lateinit] = ACTIONS(5211), + [anon_sym_public] = ACTIONS(5211), + [anon_sym_private] = ACTIONS(5211), + [anon_sym_internal] = ACTIONS(5211), + [anon_sym_protected] = ACTIONS(5211), + [anon_sym_tailrec] = ACTIONS(5211), + [anon_sym_operator] = ACTIONS(5211), + [anon_sym_infix] = ACTIONS(5211), + [anon_sym_inline] = ACTIONS(5211), + [anon_sym_external] = ACTIONS(5211), + [sym_property_modifier] = ACTIONS(5211), + [anon_sym_abstract] = ACTIONS(5211), + [anon_sym_final] = ACTIONS(5211), + [anon_sym_open] = ACTIONS(5211), + [anon_sym_vararg] = ACTIONS(5211), + [anon_sym_noinline] = ACTIONS(5211), + [anon_sym_crossinline] = ACTIONS(5211), + [anon_sym_expect] = ACTIONS(5211), + [anon_sym_actual] = ACTIONS(5211), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5213), + [sym_safe_nav] = ACTIONS(5213), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3528] = { + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), + [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_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), }, - [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), + [3529] = { + [sym__alpha_identifier] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_DOT] = ACTIONS(4311), + [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_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_multiline_comment] = ACTIONS(3), }, - [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), + [3530] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6930), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [sym_multiline_comment] = ACTIONS(3), }, - [3579] = { - [sym_type_constraints] = STATE(3303), - [sym_enum_class_body] = STATE(3513), + [3531] = { + [sym_function_body] = STATE(3855), + [sym__block] = STATE(3960), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_COLON] = ACTIONS(6932), [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), - }, - [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_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), [anon_sym_RBRACE] = ACTIONS(4218), [anon_sym_LPAREN] = ACTIONS(4218), - [anon_sym_RPAREN] = ACTIONS(4218), + [anon_sym_COMMA] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4216), [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(5492), - [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_where] = 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), @@ -410806,512 +403381,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [3585] = { - [sym__alpha_identifier] = ACTIONS(4934), - [anon_sym_AT] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_RBRACK] = 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_RPAREN] = ACTIONS(4936), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_where] = ACTIONS(4934), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_get] = ACTIONS(4934), - [anon_sym_set] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4934), - [anon_sym_DASH_GT] = ACTIONS(4936), - [sym_label] = ACTIONS(4936), - [anon_sym_in] = ACTIONS(4934), - [anon_sym_while] = 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_else] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4936), - [sym_safe_nav] = ACTIONS(4936), - [sym_multiline_comment] = ACTIONS(3), - }, - [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(4323), - [sym_safe_nav] = ACTIONS(4323), + [3532] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), + [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_SEMI] = ACTIONS(4928), + [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(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_safe_nav] = ACTIONS(4928), [sym_multiline_comment] = ACTIONS(3), }, - [3587] = { + [3533] = { [sym__alpha_identifier] = ACTIONS(4930), [anon_sym_AT] = ACTIONS(4932), [anon_sym_LBRACK] = ACTIONS(4932), [anon_sym_RBRACK] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), [anon_sym_as] = ACTIONS(4930), [anon_sym_EQ] = ACTIONS(4930), [anon_sym_LBRACE] = ACTIONS(4932), @@ -411322,7 +403484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -411390,11 +403551,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, - [3588] = { + [3534] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_RBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_while] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_suspend] = ACTIONS(5129), + [anon_sym_sealed] = ACTIONS(5129), + [anon_sym_annotation] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_override] = ACTIONS(5129), + [anon_sym_lateinit] = ACTIONS(5129), + [anon_sym_public] = ACTIONS(5129), + [anon_sym_private] = ACTIONS(5129), + [anon_sym_internal] = ACTIONS(5129), + [anon_sym_protected] = ACTIONS(5129), + [anon_sym_tailrec] = ACTIONS(5129), + [anon_sym_operator] = ACTIONS(5129), + [anon_sym_infix] = ACTIONS(5129), + [anon_sym_inline] = ACTIONS(5129), + [anon_sym_external] = ACTIONS(5129), + [sym_property_modifier] = ACTIONS(5129), + [anon_sym_abstract] = ACTIONS(5129), + [anon_sym_final] = ACTIONS(5129), + [anon_sym_open] = ACTIONS(5129), + [anon_sym_vararg] = ACTIONS(5129), + [anon_sym_noinline] = ACTIONS(5129), + [anon_sym_crossinline] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3535] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(6934), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), + }, + [3536] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_LBRACE] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_SEMI] = ACTIONS(5107), + [anon_sym_get] = ACTIONS(5105), + [anon_sym_set] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_DASH_GT] = ACTIONS(5107), + [sym_label] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_while] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5107), + [anon_sym_QMARK_COLON] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5107), + [anon_sym_PIPE_PIPE] = ACTIONS(5107), + [anon_sym_else] = ACTIONS(5105), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_PLUS_EQ] = ACTIONS(5107), + [anon_sym_DASH_EQ] = ACTIONS(5107), + [anon_sym_STAR_EQ] = ACTIONS(5107), + [anon_sym_SLASH_EQ] = ACTIONS(5107), + [anon_sym_PERCENT_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), + [anon_sym_LT_EQ] = ACTIONS(5107), + [anon_sym_GT_EQ] = ACTIONS(5107), + [anon_sym_BANGin] = ACTIONS(5107), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_BANGis] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_as_QMARK] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5107), + [anon_sym_DASH_DASH] = ACTIONS(5107), + [anon_sym_BANG_BANG] = ACTIONS(5107), + [anon_sym_suspend] = ACTIONS(5105), + [anon_sym_sealed] = ACTIONS(5105), + [anon_sym_annotation] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5105), + [anon_sym_inner] = ACTIONS(5105), + [anon_sym_value] = ACTIONS(5105), + [anon_sym_override] = ACTIONS(5105), + [anon_sym_lateinit] = ACTIONS(5105), + [anon_sym_public] = ACTIONS(5105), + [anon_sym_private] = ACTIONS(5105), + [anon_sym_internal] = ACTIONS(5105), + [anon_sym_protected] = ACTIONS(5105), + [anon_sym_tailrec] = ACTIONS(5105), + [anon_sym_operator] = ACTIONS(5105), + [anon_sym_infix] = ACTIONS(5105), + [anon_sym_inline] = ACTIONS(5105), + [anon_sym_external] = ACTIONS(5105), + [sym_property_modifier] = ACTIONS(5105), + [anon_sym_abstract] = ACTIONS(5105), + [anon_sym_final] = ACTIONS(5105), + [anon_sym_open] = ACTIONS(5105), + [anon_sym_vararg] = ACTIONS(5105), + [anon_sym_noinline] = ACTIONS(5105), + [anon_sym_crossinline] = ACTIONS(5105), + [anon_sym_expect] = ACTIONS(5105), + [anon_sym_actual] = ACTIONS(5105), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5107), + [sym_safe_nav] = ACTIONS(5107), + [sym_multiline_comment] = ACTIONS(3), + }, + [3537] = { + [sym__alpha_identifier] = ACTIONS(4786), + [anon_sym_AT] = ACTIONS(4788), + [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_RBRACK] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4786), + [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_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), + }, + [3538] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [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_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), + }, + [3539] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_RBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [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_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), + }, + [3540] = { [sym__alpha_identifier] = ACTIONS(4798), [anon_sym_AT] = ACTIONS(4800), [anon_sym_LBRACK] = ACTIONS(4800), [anon_sym_RBRACK] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4798), [anon_sym_as] = ACTIONS(4798), [anon_sym_EQ] = ACTIONS(4798), [anon_sym_LBRACE] = ACTIONS(4800), @@ -411405,7 +404065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -411473,3815 +404132,2769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4800), [sym_multiline_comment] = ACTIONS(3), }, - [3589] = { - [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(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(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(4928), - [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(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_safe_nav] = ACTIONS(4928), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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(4890), - [sym_safe_nav] = ACTIONS(4890), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [3541] = { + [sym_function_body] = STATE(3202), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [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_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), - [sym__backtick_identifier] = ACTIONS(4249), - [sym__automatic_semicolon] = ACTIONS(4249), - [sym_safe_nav] = ACTIONS(4249), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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(3346), - [sym_safe_nav] = ACTIONS(3346), + [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), }, - [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), + [3542] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6938), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, - [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), + [3543] = { + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_RBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_RPAREN] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3980), + [sym_label] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), [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), + [3544] = { + [aux_sym_type_constraints_repeat1] = STATE(3399), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(6842), + [anon_sym_by] = ACTIONS(4503), + [anon_sym_object] = ACTIONS(4503), + [anon_sym_fun] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_this] = ACTIONS(4503), + [anon_sym_super] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4505), + [sym_label] = ACTIONS(4503), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_null] = ACTIONS(4503), + [anon_sym_if] = ACTIONS(4503), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_try] = ACTIONS(4503), + [anon_sym_throw] = ACTIONS(4503), + [anon_sym_return] = ACTIONS(4503), + [anon_sym_continue] = ACTIONS(4503), + [anon_sym_break] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4505), + [anon_sym_continue_AT] = ACTIONS(4505), + [anon_sym_break_AT] = ACTIONS(4505), + [anon_sym_this_AT] = ACTIONS(4505), + [anon_sym_super_AT] = ACTIONS(4505), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4503), + [anon_sym_false] = ACTIONS(4503), + [anon_sym_SQUOTE] = ACTIONS(4505), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4505), }, - [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), + [3545] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_SEMI] = ACTIONS(6940), + [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(6819), + [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), - [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__backtick_identifier] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [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), + [3546] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_by] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_object] = ACTIONS(4714), + [anon_sym_fun] = 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(4716), + [sym_label] = ACTIONS(4714), + [anon_sym_in] = ACTIONS(4714), + [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_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_PLUS_PLUS] = ACTIONS(4716), + [anon_sym_DASH_DASH] = ACTIONS(4716), + [anon_sym_BANG] = ACTIONS(4714), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4716), }, - [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), + [3547] = { + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [3548] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_RBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), + [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_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), }, - [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), + [3549] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(5097), + [anon_sym_LBRACE] = ACTIONS(5099), + [anon_sym_RBRACE] = ACTIONS(5099), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_SEMI] = ACTIONS(5099), + [anon_sym_get] = ACTIONS(5097), + [anon_sym_set] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_DASH_GT] = ACTIONS(5099), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_while] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5099), + [anon_sym_QMARK_COLON] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5099), + [anon_sym_PIPE_PIPE] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5097), + [anon_sym_COLON_COLON] = ACTIONS(5099), + [anon_sym_PLUS_EQ] = ACTIONS(5099), + [anon_sym_DASH_EQ] = ACTIONS(5099), + [anon_sym_STAR_EQ] = ACTIONS(5099), + [anon_sym_SLASH_EQ] = ACTIONS(5099), + [anon_sym_PERCENT_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), + [anon_sym_LT_EQ] = ACTIONS(5099), + [anon_sym_GT_EQ] = ACTIONS(5099), + [anon_sym_BANGin] = ACTIONS(5099), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_BANGis] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_as_QMARK] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5099), + [anon_sym_DASH_DASH] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5099), + [anon_sym_suspend] = ACTIONS(5097), + [anon_sym_sealed] = ACTIONS(5097), + [anon_sym_annotation] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5097), + [anon_sym_inner] = ACTIONS(5097), + [anon_sym_value] = ACTIONS(5097), + [anon_sym_override] = ACTIONS(5097), + [anon_sym_lateinit] = ACTIONS(5097), + [anon_sym_public] = ACTIONS(5097), + [anon_sym_private] = ACTIONS(5097), + [anon_sym_internal] = ACTIONS(5097), + [anon_sym_protected] = ACTIONS(5097), + [anon_sym_tailrec] = ACTIONS(5097), + [anon_sym_operator] = ACTIONS(5097), + [anon_sym_infix] = ACTIONS(5097), + [anon_sym_inline] = ACTIONS(5097), + [anon_sym_external] = ACTIONS(5097), + [sym_property_modifier] = ACTIONS(5097), + [anon_sym_abstract] = ACTIONS(5097), + [anon_sym_final] = ACTIONS(5097), + [anon_sym_open] = ACTIONS(5097), + [anon_sym_vararg] = ACTIONS(5097), + [anon_sym_noinline] = ACTIONS(5097), + [anon_sym_crossinline] = ACTIONS(5097), + [anon_sym_expect] = ACTIONS(5097), + [anon_sym_actual] = ACTIONS(5097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5099), + [sym_safe_nav] = ACTIONS(5099), [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), + [3550] = { + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_RBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_while] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), [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), + [3551] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), + [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_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(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [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), + [3552] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [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_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), }, - [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), + [3553] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_RBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [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_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_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), + [3554] = { + [sym_type_constraints] = STATE(3945), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [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(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_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), + [3555] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_RBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [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_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_multiline_comment] = ACTIONS(3), }, - [3621] = { - [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), + [3556] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_RBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [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_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), - [sym__string_start] = ACTIONS(4441), }, - [3622] = { - [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), + [3557] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_DASH_GT] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_while] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), [sym_multiline_comment] = ACTIONS(3), }, - [3623] = { - [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), + [3558] = { + [sym_function_body] = STATE(3117), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(6946), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), + }, + [3559] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_as] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_where] = ACTIONS(5013), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_get] = ACTIONS(5013), + [anon_sym_set] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_DASH_GT] = ACTIONS(5015), + [sym_label] = ACTIONS(5015), + [anon_sym_in] = ACTIONS(5013), + [anon_sym_while] = ACTIONS(5013), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_QMARK_COLON] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_else] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(5015), + [anon_sym_PLUS_EQ] = ACTIONS(5015), + [anon_sym_DASH_EQ] = ACTIONS(5015), + [anon_sym_STAR_EQ] = ACTIONS(5015), + [anon_sym_SLASH_EQ] = ACTIONS(5015), + [anon_sym_PERCENT_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_BANGin] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5013), + [anon_sym_BANGis] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5013), + [anon_sym_as_QMARK] = ACTIONS(5015), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_BANG_BANG] = ACTIONS(5015), + [anon_sym_suspend] = ACTIONS(5013), + [anon_sym_sealed] = ACTIONS(5013), + [anon_sym_annotation] = ACTIONS(5013), + [anon_sym_data] = ACTIONS(5013), + [anon_sym_inner] = ACTIONS(5013), + [anon_sym_value] = ACTIONS(5013), + [anon_sym_override] = ACTIONS(5013), + [anon_sym_lateinit] = ACTIONS(5013), + [anon_sym_public] = ACTIONS(5013), + [anon_sym_private] = ACTIONS(5013), + [anon_sym_internal] = ACTIONS(5013), + [anon_sym_protected] = ACTIONS(5013), + [anon_sym_tailrec] = ACTIONS(5013), + [anon_sym_operator] = ACTIONS(5013), + [anon_sym_infix] = ACTIONS(5013), + [anon_sym_inline] = ACTIONS(5013), + [anon_sym_external] = ACTIONS(5013), + [sym_property_modifier] = ACTIONS(5013), + [anon_sym_abstract] = ACTIONS(5013), + [anon_sym_final] = ACTIONS(5013), + [anon_sym_open] = ACTIONS(5013), + [anon_sym_vararg] = ACTIONS(5013), + [anon_sym_noinline] = ACTIONS(5013), + [anon_sym_crossinline] = ACTIONS(5013), + [anon_sym_expect] = ACTIONS(5013), + [anon_sym_actual] = ACTIONS(5013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5015), + [sym_safe_nav] = ACTIONS(5015), [sym_multiline_comment] = ACTIONS(3), }, - [3624] = { - [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), + [3560] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5007), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_while] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), [sym_multiline_comment] = ACTIONS(3), }, - [3625] = { - [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), + [3561] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [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_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), - [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__backtick_identifier] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4734), }, - [3626] = { - [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), + [3562] = { + [sym__alpha_identifier] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1616), + [anon_sym_set] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_DASH_GT] = ACTIONS(1614), + [sym_label] = ACTIONS(1614), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1616), + [anon_sym_inner] = ACTIONS(1616), + [anon_sym_value] = ACTIONS(1616), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1616), + [anon_sym_actual] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), + [sym_multiline_comment] = ACTIONS(3), }, - [3627] = { - [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), + [3563] = { + [sym__alpha_identifier] = ACTIONS(5023), + [anon_sym_AT] = ACTIONS(5025), + [anon_sym_LBRACK] = ACTIONS(5025), + [anon_sym_RBRACK] = ACTIONS(5025), + [anon_sym_DOT] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5025), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5025), + [anon_sym_RPAREN] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5023), + [anon_sym_GT] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(5023), + [anon_sym_set] = ACTIONS(5023), + [anon_sym_STAR] = ACTIONS(5023), + [anon_sym_DASH_GT] = ACTIONS(5025), + [sym_label] = ACTIONS(5025), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_while] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_QMARK_COLON] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_else] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(5025), + [anon_sym_PLUS_EQ] = ACTIONS(5025), + [anon_sym_DASH_EQ] = ACTIONS(5025), + [anon_sym_STAR_EQ] = ACTIONS(5025), + [anon_sym_SLASH_EQ] = ACTIONS(5025), + [anon_sym_PERCENT_EQ] = ACTIONS(5025), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), + [anon_sym_LT_EQ] = ACTIONS(5025), + [anon_sym_GT_EQ] = ACTIONS(5025), + [anon_sym_BANGin] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_BANGis] = ACTIONS(5025), + [anon_sym_PLUS] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_as_QMARK] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5025), + [anon_sym_BANG_BANG] = ACTIONS(5025), + [anon_sym_suspend] = ACTIONS(5023), + [anon_sym_sealed] = ACTIONS(5023), + [anon_sym_annotation] = ACTIONS(5023), + [anon_sym_data] = ACTIONS(5023), + [anon_sym_inner] = ACTIONS(5023), + [anon_sym_value] = ACTIONS(5023), + [anon_sym_override] = ACTIONS(5023), + [anon_sym_lateinit] = ACTIONS(5023), + [anon_sym_public] = ACTIONS(5023), + [anon_sym_private] = ACTIONS(5023), + [anon_sym_internal] = ACTIONS(5023), + [anon_sym_protected] = ACTIONS(5023), + [anon_sym_tailrec] = ACTIONS(5023), + [anon_sym_operator] = ACTIONS(5023), + [anon_sym_infix] = ACTIONS(5023), + [anon_sym_inline] = ACTIONS(5023), + [anon_sym_external] = ACTIONS(5023), + [sym_property_modifier] = ACTIONS(5023), + [anon_sym_abstract] = ACTIONS(5023), + [anon_sym_final] = ACTIONS(5023), + [anon_sym_open] = ACTIONS(5023), + [anon_sym_vararg] = ACTIONS(5023), + [anon_sym_noinline] = ACTIONS(5023), + [anon_sym_crossinline] = ACTIONS(5023), + [anon_sym_expect] = ACTIONS(5023), + [anon_sym_actual] = ACTIONS(5023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5025), + [sym_safe_nav] = ACTIONS(5025), [sym_multiline_comment] = ACTIONS(3), }, - [3628] = { - [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), + [3564] = { + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_RBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [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_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), }, - [3629] = { - [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), + [3565] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_RBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_DASH_GT] = ACTIONS(4405), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_while] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), [sym_multiline_comment] = ACTIONS(3), }, - [3630] = { - [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), + [3566] = { + [sym__alpha_identifier] = ACTIONS(4862), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_RBRACK] = ACTIONS(4864), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_as] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_where] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_get] = ACTIONS(4862), + [anon_sym_set] = ACTIONS(4862), + [anon_sym_STAR] = ACTIONS(4862), + [anon_sym_DASH_GT] = ACTIONS(4864), + [sym_label] = ACTIONS(4864), + [anon_sym_in] = ACTIONS(4862), + [anon_sym_while] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_QMARK_COLON] = ACTIONS(4864), + [anon_sym_AMP_AMP] = ACTIONS(4864), + [anon_sym_PIPE_PIPE] = ACTIONS(4864), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4862), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ] = ACTIONS(4862), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4864), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_BANGin] = ACTIONS(4864), + [anon_sym_is] = ACTIONS(4862), + [anon_sym_BANGis] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_PERCENT] = ACTIONS(4862), + [anon_sym_as_QMARK] = ACTIONS(4864), + [anon_sym_PLUS_PLUS] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4864), + [anon_sym_BANG_BANG] = ACTIONS(4864), + [anon_sym_suspend] = ACTIONS(4862), + [anon_sym_sealed] = ACTIONS(4862), + [anon_sym_annotation] = ACTIONS(4862), + [anon_sym_data] = ACTIONS(4862), + [anon_sym_inner] = ACTIONS(4862), + [anon_sym_value] = ACTIONS(4862), + [anon_sym_override] = ACTIONS(4862), + [anon_sym_lateinit] = ACTIONS(4862), + [anon_sym_public] = ACTIONS(4862), + [anon_sym_private] = ACTIONS(4862), + [anon_sym_internal] = ACTIONS(4862), + [anon_sym_protected] = ACTIONS(4862), + [anon_sym_tailrec] = ACTIONS(4862), + [anon_sym_operator] = ACTIONS(4862), + [anon_sym_infix] = ACTIONS(4862), + [anon_sym_inline] = ACTIONS(4862), + [anon_sym_external] = ACTIONS(4862), + [sym_property_modifier] = ACTIONS(4862), + [anon_sym_abstract] = ACTIONS(4862), + [anon_sym_final] = ACTIONS(4862), + [anon_sym_open] = ACTIONS(4862), + [anon_sym_vararg] = ACTIONS(4862), + [anon_sym_noinline] = ACTIONS(4862), + [anon_sym_crossinline] = ACTIONS(4862), + [anon_sym_expect] = ACTIONS(4862), + [anon_sym_actual] = ACTIONS(4862), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4864), + [sym_safe_nav] = ACTIONS(4864), [sym_multiline_comment] = ACTIONS(3), }, - [3631] = { - [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), + [3567] = { + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_RBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_DASH_GT] = ACTIONS(4381), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_while] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), [sym_multiline_comment] = ACTIONS(3), }, - [3632] = { - [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), + [3568] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_RBRACK] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(5125), + [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_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), - [sym__string_start] = ACTIONS(4155), }, - [3633] = { - [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), + [3569] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_RBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_RPAREN] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_DASH_GT] = ACTIONS(4395), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), [sym_multiline_comment] = ACTIONS(3), }, - [3634] = { - [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), + [3570] = { + [aux_sym_nullable_type_repeat1] = STATE(3408), + [sym__alpha_identifier] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_as] = ACTIONS(4323), + [anon_sym_EQ] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_COMMA] = ACTIONS(4325), + [anon_sym_by] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_GT] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4323), + [anon_sym_SEMI] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [sym__quest] = ACTIONS(6873), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4323), + [anon_sym_DOT_DOT] = ACTIONS(4325), + [anon_sym_QMARK_COLON] = ACTIONS(4325), + [anon_sym_AMP_AMP] = ACTIONS(4325), + [anon_sym_PIPE_PIPE] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4323), + [anon_sym_COLON_COLON] = ACTIONS(4325), + [anon_sym_PLUS_EQ] = ACTIONS(4325), + [anon_sym_DASH_EQ] = ACTIONS(4325), + [anon_sym_STAR_EQ] = ACTIONS(4325), + [anon_sym_SLASH_EQ] = ACTIONS(4325), + [anon_sym_PERCENT_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), + [anon_sym_LT_EQ] = ACTIONS(4325), + [anon_sym_GT_EQ] = ACTIONS(4325), + [anon_sym_BANGin] = ACTIONS(4325), + [anon_sym_is] = ACTIONS(4323), + [anon_sym_BANGis] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_as_QMARK] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4325), + [anon_sym_suspend] = ACTIONS(4323), + [anon_sym_sealed] = ACTIONS(4323), + [anon_sym_annotation] = ACTIONS(4323), + [anon_sym_data] = ACTIONS(4323), + [anon_sym_inner] = ACTIONS(4323), + [anon_sym_value] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_lateinit] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_internal] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_tailrec] = ACTIONS(4323), + [anon_sym_operator] = ACTIONS(4323), + [anon_sym_infix] = ACTIONS(4323), + [anon_sym_inline] = ACTIONS(4323), + [anon_sym_external] = ACTIONS(4323), + [sym_property_modifier] = ACTIONS(4323), + [anon_sym_abstract] = ACTIONS(4323), + [anon_sym_final] = ACTIONS(4323), + [anon_sym_open] = ACTIONS(4323), + [anon_sym_vararg] = ACTIONS(4323), + [anon_sym_noinline] = ACTIONS(4323), + [anon_sym_crossinline] = ACTIONS(4323), + [anon_sym_expect] = ACTIONS(4323), + [anon_sym_actual] = ACTIONS(4323), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4325), + [sym__automatic_semicolon] = ACTIONS(4325), + [sym_safe_nav] = ACTIONS(4325), + [sym_multiline_comment] = ACTIONS(3), }, - [3635] = { - [sym_class_body] = STATE(3861), - [sym_type_constraints] = STATE(3816), + [3571] = { + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_DASH_GT] = ACTIONS(3424), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(3422), + [anon_sym_sealed] = ACTIONS(3422), + [anon_sym_annotation] = ACTIONS(3422), + [anon_sym_data] = ACTIONS(3422), + [anon_sym_inner] = ACTIONS(3422), + [anon_sym_value] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_lateinit] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_internal] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_tailrec] = ACTIONS(3422), + [anon_sym_operator] = ACTIONS(3422), + [anon_sym_infix] = ACTIONS(3422), + [anon_sym_inline] = ACTIONS(3422), + [anon_sym_external] = ACTIONS(3422), + [sym_property_modifier] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_final] = ACTIONS(3422), + [anon_sym_open] = ACTIONS(3422), + [anon_sym_vararg] = ACTIONS(3422), + [anon_sym_noinline] = ACTIONS(3422), + [anon_sym_crossinline] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3422), + [anon_sym_actual] = ACTIONS(3422), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), + [sym_multiline_comment] = ACTIONS(3), + }, + [3572] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(6950), + [sym__quest] = ACTIONS(4222), + [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), + }, + [3573] = { + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3574] = { [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), [anon_sym_EQ] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(5836), + [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(5824), - [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_where] = 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), @@ -415338,5134 +406951,3598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { - [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), + [3575] = { + [sym__alpha_identifier] = ACTIONS(4962), + [anon_sym_AT] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), + [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_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), }, - [3637] = { - [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] = { - [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), + [3576] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_as] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_get] = ACTIONS(5017), + [anon_sym_set] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_DASH_GT] = ACTIONS(5019), + [sym_label] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5017), + [anon_sym_while] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_QMARK_COLON] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_else] = ACTIONS(5017), + [anon_sym_COLON_COLON] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_BANGin] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5017), + [anon_sym_BANGis] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5017), + [anon_sym_as_QMARK] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_BANG_BANG] = ACTIONS(5019), + [anon_sym_suspend] = ACTIONS(5017), + [anon_sym_sealed] = ACTIONS(5017), + [anon_sym_annotation] = ACTIONS(5017), + [anon_sym_data] = ACTIONS(5017), + [anon_sym_inner] = ACTIONS(5017), + [anon_sym_value] = ACTIONS(5017), + [anon_sym_override] = ACTIONS(5017), + [anon_sym_lateinit] = ACTIONS(5017), + [anon_sym_public] = ACTIONS(5017), + [anon_sym_private] = ACTIONS(5017), + [anon_sym_internal] = ACTIONS(5017), + [anon_sym_protected] = ACTIONS(5017), + [anon_sym_tailrec] = ACTIONS(5017), + [anon_sym_operator] = ACTIONS(5017), + [anon_sym_infix] = ACTIONS(5017), + [anon_sym_inline] = ACTIONS(5017), + [anon_sym_external] = ACTIONS(5017), + [sym_property_modifier] = ACTIONS(5017), + [anon_sym_abstract] = ACTIONS(5017), + [anon_sym_final] = ACTIONS(5017), + [anon_sym_open] = ACTIONS(5017), + [anon_sym_vararg] = ACTIONS(5017), + [anon_sym_noinline] = ACTIONS(5017), + [anon_sym_crossinline] = ACTIONS(5017), + [anon_sym_expect] = ACTIONS(5017), + [anon_sym_actual] = ACTIONS(5017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5019), + [sym_safe_nav] = ACTIONS(5019), [sym_multiline_comment] = ACTIONS(3), }, - [3639] = { - [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), + [3577] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4224), + [anon_sym_LBRACK] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [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_SEMI] = ACTIONS(4224), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(6952), + [sym__quest] = ACTIONS(4222), + [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(4738), - [sym_safe_nav] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4224), + [sym__automatic_semicolon] = ACTIONS(4224), + [sym_safe_nav] = ACTIONS(4224), [sym_multiline_comment] = ACTIONS(3), }, - [3640] = { - [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_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__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_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), + [3578] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_RPAREN] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_DASH_GT] = ACTIONS(4637), + [sym_label] = ACTIONS(4637), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_while] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), [sym_multiline_comment] = ACTIONS(3), }, - [3644] = { - [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), + [3579] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_DASH_GT] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, - [3645] = { - [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_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_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), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [3580] = { + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(4000), + [anon_sym_STAR_EQ] = ACTIONS(4000), + [anon_sym_SLASH_EQ] = ACTIONS(4000), + [anon_sym_PERCENT_EQ] = ACTIONS(4000), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4000), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4000), [sym_multiline_comment] = ACTIONS(3), }, - [3648] = { - [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_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), + [3581] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5007), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_while] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), [sym_multiline_comment] = ACTIONS(3), }, - [3650] = { - [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), + [3582] = { + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_RPAREN] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_DASH_GT] = ACTIONS(1824), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_suspend] = ACTIONS(1822), + [anon_sym_sealed] = ACTIONS(1822), + [anon_sym_annotation] = ACTIONS(1822), + [anon_sym_data] = ACTIONS(1822), + [anon_sym_inner] = ACTIONS(1822), + [anon_sym_value] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_lateinit] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_internal] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_tailrec] = ACTIONS(1822), + [anon_sym_operator] = ACTIONS(1822), + [anon_sym_infix] = ACTIONS(1822), + [anon_sym_inline] = ACTIONS(1822), + [anon_sym_external] = ACTIONS(1822), + [sym_property_modifier] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_final] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1822), + [anon_sym_vararg] = ACTIONS(1822), + [anon_sym_noinline] = ACTIONS(1822), + [anon_sym_crossinline] = ACTIONS(1822), + [anon_sym_expect] = ACTIONS(1822), + [anon_sym_actual] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), [sym_multiline_comment] = ACTIONS(3), }, - [3651] = { - [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), + [3583] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [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_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), }, - [3652] = { - [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), + [3584] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [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_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), }, - [3653] = { - [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), + [3585] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_RBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5039), + [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_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), }, - [3654] = { - [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), + [3586] = { + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), }, - [3655] = { - [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), + [3587] = { + [sym__alpha_identifier] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_get] = ACTIONS(5001), + [anon_sym_set] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5003), + [sym_label] = ACTIONS(5003), + [anon_sym_in] = ACTIONS(5001), + [anon_sym_while] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_QMARK_COLON] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_else] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5003), + [anon_sym_PLUS_EQ] = ACTIONS(5003), + [anon_sym_DASH_EQ] = ACTIONS(5003), + [anon_sym_STAR_EQ] = ACTIONS(5003), + [anon_sym_SLASH_EQ] = ACTIONS(5003), + [anon_sym_PERCENT_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_BANGin] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_BANGis] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_as_QMARK] = ACTIONS(5003), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_BANG_BANG] = ACTIONS(5003), + [anon_sym_suspend] = ACTIONS(5001), + [anon_sym_sealed] = ACTIONS(5001), + [anon_sym_annotation] = ACTIONS(5001), + [anon_sym_data] = ACTIONS(5001), + [anon_sym_inner] = ACTIONS(5001), + [anon_sym_value] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_lateinit] = ACTIONS(5001), + [anon_sym_public] = ACTIONS(5001), + [anon_sym_private] = ACTIONS(5001), + [anon_sym_internal] = ACTIONS(5001), + [anon_sym_protected] = ACTIONS(5001), + [anon_sym_tailrec] = ACTIONS(5001), + [anon_sym_operator] = ACTIONS(5001), + [anon_sym_infix] = ACTIONS(5001), + [anon_sym_inline] = ACTIONS(5001), + [anon_sym_external] = ACTIONS(5001), + [sym_property_modifier] = ACTIONS(5001), + [anon_sym_abstract] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_open] = ACTIONS(5001), + [anon_sym_vararg] = ACTIONS(5001), + [anon_sym_noinline] = ACTIONS(5001), + [anon_sym_crossinline] = ACTIONS(5001), + [anon_sym_expect] = ACTIONS(5001), + [anon_sym_actual] = ACTIONS(5001), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5003), + [sym_safe_nav] = ACTIONS(5003), [sym_multiline_comment] = ACTIONS(3), }, - [3656] = { - [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), + [3588] = { + [sym__alpha_identifier] = ACTIONS(4774), + [anon_sym_AT] = ACTIONS(4776), + [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_RBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), + [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_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), }, - [3657] = { - [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), + [3589] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [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_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), }, - [3658] = { - [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), + [3590] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(6850), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [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(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4009), + [sym__string_start] = ACTIONS(4278), }, - [3659] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_RBRACK] = ACTIONS(4287), + [3591] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(6844), [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_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [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_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_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), [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_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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4292), + [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(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_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_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), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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), - [sym__backtick_identifier] = ACTIONS(4218), - [sym__automatic_semicolon] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), - [sym_multiline_comment] = ACTIONS(3), - }, - [3662] = { - [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(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__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_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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [3666] = { - [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), + [3592] = { + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_RBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_RPAREN] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_DASH_GT] = ACTIONS(4509), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), [sym_multiline_comment] = ACTIONS(3), }, - [3667] = { - [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), + [3593] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_RBRACK] = ACTIONS(5045), + [anon_sym_DOT] = ACTIONS(5043), + [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_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), }, - [3668] = { - [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), + [3594] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [anon_sym_DASH_GT] = ACTIONS(4996), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_while] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(6825), + [anon_sym_PLUS_EQ] = ACTIONS(4996), + [anon_sym_DASH_EQ] = ACTIONS(4996), + [anon_sym_STAR_EQ] = ACTIONS(4996), + [anon_sym_SLASH_EQ] = ACTIONS(4996), + [anon_sym_PERCENT_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), [sym_multiline_comment] = ACTIONS(3), }, - [3669] = { - [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), + [3595] = { + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_DASH_GT] = ACTIONS(1736), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(1734), + [anon_sym_sealed] = ACTIONS(1734), + [anon_sym_annotation] = ACTIONS(1734), + [anon_sym_data] = ACTIONS(1734), + [anon_sym_inner] = ACTIONS(1734), + [anon_sym_value] = ACTIONS(1734), + [anon_sym_override] = ACTIONS(1734), + [anon_sym_lateinit] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_internal] = ACTIONS(1734), + [anon_sym_protected] = ACTIONS(1734), + [anon_sym_tailrec] = ACTIONS(1734), + [anon_sym_operator] = ACTIONS(1734), + [anon_sym_infix] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_external] = ACTIONS(1734), + [sym_property_modifier] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_final] = ACTIONS(1734), + [anon_sym_open] = ACTIONS(1734), + [anon_sym_vararg] = ACTIONS(1734), + [anon_sym_noinline] = ACTIONS(1734), + [anon_sym_crossinline] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [sym_multiline_comment] = ACTIONS(3), }, - [3670] = { - [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), + [3596] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [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_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, - [3671] = { - [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), + [3597] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_while] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), [sym_multiline_comment] = ACTIONS(3), }, - [3672] = { - [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), + [3598] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_RBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [anon_sym_DASH_GT] = ACTIONS(4824), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), [sym_multiline_comment] = ACTIONS(3), }, - [3673] = { - [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), + [3599] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_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), }, - [3674] = { - [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), + [3600] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [anon_sym_DASH_GT] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_while] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), [sym_multiline_comment] = ACTIONS(3), }, - [3675] = { - [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), + [3601] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [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_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), }, - [3676] = { - [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), + [3602] = { + [sym__alpha_identifier] = ACTIONS(4768), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_RBRACK] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_RPAREN] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_where] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_get] = ACTIONS(4768), + [anon_sym_set] = ACTIONS(4768), + [anon_sym_STAR] = ACTIONS(4768), + [anon_sym_DASH_GT] = ACTIONS(4770), + [sym_label] = ACTIONS(4770), + [anon_sym_in] = ACTIONS(4768), + [anon_sym_while] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_QMARK_COLON] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_COLON_COLON] = ACTIONS(4770), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_PERCENT_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4770), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_BANGin] = ACTIONS(4770), + [anon_sym_is] = ACTIONS(4768), + [anon_sym_BANGis] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4768), + [anon_sym_as_QMARK] = ACTIONS(4770), + [anon_sym_PLUS_PLUS] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4770), + [anon_sym_BANG_BANG] = ACTIONS(4770), + [anon_sym_suspend] = ACTIONS(4768), + [anon_sym_sealed] = ACTIONS(4768), + [anon_sym_annotation] = ACTIONS(4768), + [anon_sym_data] = ACTIONS(4768), + [anon_sym_inner] = ACTIONS(4768), + [anon_sym_value] = ACTIONS(4768), + [anon_sym_override] = ACTIONS(4768), + [anon_sym_lateinit] = ACTIONS(4768), + [anon_sym_public] = ACTIONS(4768), + [anon_sym_private] = ACTIONS(4768), + [anon_sym_internal] = ACTIONS(4768), + [anon_sym_protected] = ACTIONS(4768), + [anon_sym_tailrec] = ACTIONS(4768), + [anon_sym_operator] = ACTIONS(4768), + [anon_sym_infix] = ACTIONS(4768), + [anon_sym_inline] = ACTIONS(4768), + [anon_sym_external] = ACTIONS(4768), + [sym_property_modifier] = ACTIONS(4768), + [anon_sym_abstract] = ACTIONS(4768), + [anon_sym_final] = ACTIONS(4768), + [anon_sym_open] = ACTIONS(4768), + [anon_sym_vararg] = ACTIONS(4768), + [anon_sym_noinline] = ACTIONS(4768), + [anon_sym_crossinline] = ACTIONS(4768), + [anon_sym_expect] = ACTIONS(4768), + [anon_sym_actual] = ACTIONS(4768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4770), + [sym_safe_nav] = ACTIONS(4770), + [sym_multiline_comment] = ACTIONS(3), }, - [3677] = { - [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), + [3603] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [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_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), }, - [3678] = { - [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), + [3604] = { + [aux_sym_user_type_repeat1] = STATE(3305), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6954), + [anon_sym_as] = ACTIONS(4139), + [anon_sym_EQ] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_COMMA] = ACTIONS(4141), + [anon_sym_by] = ACTIONS(4139), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_where] = ACTIONS(4139), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), [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), + [sym_label] = ACTIONS(4141), + [anon_sym_in] = ACTIONS(4139), + [anon_sym_DOT_DOT] = ACTIONS(4141), + [anon_sym_QMARK_COLON] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_PIPE_PIPE] = ACTIONS(4141), + [anon_sym_else] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS_EQ] = ACTIONS(4141), + [anon_sym_DASH_EQ] = ACTIONS(4141), + [anon_sym_STAR_EQ] = ACTIONS(4141), + [anon_sym_SLASH_EQ] = ACTIONS(4141), + [anon_sym_PERCENT_EQ] = ACTIONS(4141), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4141), + [anon_sym_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4141), + [anon_sym_LT_EQ] = ACTIONS(4141), + [anon_sym_GT_EQ] = ACTIONS(4141), + [anon_sym_BANGin] = ACTIONS(4141), + [anon_sym_is] = ACTIONS(4139), + [anon_sym_BANGis] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), [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), + [anon_sym_as_QMARK] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4141), + [sym__automatic_semicolon] = ACTIONS(4141), + [sym_safe_nav] = ACTIONS(4141), [sym_multiline_comment] = ACTIONS(3), }, - [3679] = { - [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), + [3605] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6957), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(4281), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [3680] = { - [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), + [3606] = { + [sym__alpha_identifier] = ACTIONS(4573), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4573), + [anon_sym_object] = ACTIONS(4573), + [anon_sym_fun] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4573), + [anon_sym_set] = ACTIONS(4573), + [anon_sym_this] = ACTIONS(4573), + [anon_sym_super] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4575), + [sym_label] = ACTIONS(4573), + [anon_sym_in] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(4573), + [anon_sym_if] = ACTIONS(4573), + [anon_sym_else] = ACTIONS(4573), + [anon_sym_when] = ACTIONS(4573), + [anon_sym_try] = ACTIONS(4573), + [anon_sym_throw] = ACTIONS(4573), + [anon_sym_return] = ACTIONS(4573), + [anon_sym_continue] = ACTIONS(4573), + [anon_sym_break] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4573), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4573), + [anon_sym_suspend] = ACTIONS(4573), + [anon_sym_sealed] = ACTIONS(4573), + [anon_sym_annotation] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4573), + [anon_sym_inner] = ACTIONS(4573), + [anon_sym_value] = ACTIONS(4573), + [anon_sym_override] = ACTIONS(4573), + [anon_sym_lateinit] = ACTIONS(4573), + [anon_sym_public] = ACTIONS(4573), + [anon_sym_private] = ACTIONS(4573), + [anon_sym_internal] = ACTIONS(4573), + [anon_sym_protected] = ACTIONS(4573), + [anon_sym_tailrec] = ACTIONS(4573), + [anon_sym_operator] = ACTIONS(4573), + [anon_sym_infix] = ACTIONS(4573), + [anon_sym_inline] = ACTIONS(4573), + [anon_sym_external] = ACTIONS(4573), + [sym_property_modifier] = ACTIONS(4573), + [anon_sym_abstract] = ACTIONS(4573), + [anon_sym_final] = ACTIONS(4573), + [anon_sym_open] = ACTIONS(4573), + [anon_sym_vararg] = ACTIONS(4573), + [anon_sym_noinline] = ACTIONS(4573), + [anon_sym_crossinline] = ACTIONS(4573), + [anon_sym_expect] = ACTIONS(4573), + [anon_sym_actual] = ACTIONS(4573), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4575), + [anon_sym_continue_AT] = ACTIONS(4575), + [anon_sym_break_AT] = ACTIONS(4575), + [anon_sym_this_AT] = ACTIONS(4575), + [anon_sym_super_AT] = ACTIONS(4575), + [sym_real_literal] = ACTIONS(4575), + [sym_integer_literal] = ACTIONS(4573), + [sym_hex_literal] = ACTIONS(4575), + [sym_bin_literal] = ACTIONS(4575), + [anon_sym_true] = ACTIONS(4573), + [anon_sym_false] = ACTIONS(4573), + [anon_sym_SQUOTE] = ACTIONS(4575), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4575), }, - [3681] = { - [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), + [3607] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_catch] = ACTIONS(4393), + [anon_sym_finally] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), [sym_multiline_comment] = ACTIONS(3), }, - [3682] = { - [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), - [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] = { - [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(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [3608] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_catch] = ACTIONS(4403), + [anon_sym_finally] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3609] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_constructor] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4192), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4192), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4192), + [anon_sym_QMARK_COLON] = ACTIONS(4192), + [anon_sym_AMP_AMP] = ACTIONS(4192), + [anon_sym_PIPE_PIPE] = ACTIONS(4192), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS_EQ] = ACTIONS(4192), + [anon_sym_DASH_EQ] = ACTIONS(4192), + [anon_sym_STAR_EQ] = ACTIONS(4192), + [anon_sym_SLASH_EQ] = ACTIONS(4192), + [anon_sym_PERCENT_EQ] = ACTIONS(4192), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4192), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4192), + [anon_sym_LT_EQ] = ACTIONS(4192), + [anon_sym_GT_EQ] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4192), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_safe_nav] = ACTIONS(4192), [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), + [3610] = { + [sym_type_constraints] = STATE(4025), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(6961), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [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), + [3611] = { + [sym_type_constraints] = STATE(4001), + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(6965), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_RBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [anon_sym_DASH_GT] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [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_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), + [3612] = { + [sym_type_constraints] = STATE(3990), + [sym_function_body] = STATE(3503), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_RBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4155), + [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_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(4155), + [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(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4155), + [sym_safe_nav] = ACTIONS(4155), [sym_multiline_comment] = ACTIONS(3), }, - [3691] = { - [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), + [3613] = { + [sym__alpha_identifier] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_as] = ACTIONS(4371), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_constructor] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4371), + [anon_sym_where] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_get] = ACTIONS(4371), + [anon_sym_set] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4371), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4371), + [anon_sym_DOT_DOT] = ACTIONS(4373), + [anon_sym_QMARK_COLON] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_PIPE_PIPE] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_PLUS_EQ] = ACTIONS(4373), + [anon_sym_DASH_EQ] = ACTIONS(4373), + [anon_sym_STAR_EQ] = ACTIONS(4373), + [anon_sym_SLASH_EQ] = ACTIONS(4373), + [anon_sym_PERCENT_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), + [anon_sym_LT_EQ] = ACTIONS(4373), + [anon_sym_GT_EQ] = ACTIONS(4373), + [anon_sym_BANGin] = ACTIONS(4373), + [anon_sym_is] = ACTIONS(4371), + [anon_sym_BANGis] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_as_QMARK] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4371), + [anon_sym_sealed] = ACTIONS(4371), + [anon_sym_annotation] = ACTIONS(4371), + [anon_sym_data] = ACTIONS(4371), + [anon_sym_inner] = ACTIONS(4371), + [anon_sym_value] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_lateinit] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_internal] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_tailrec] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_infix] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym_external] = ACTIONS(4371), + [sym_property_modifier] = ACTIONS(4371), + [anon_sym_abstract] = ACTIONS(4371), + [anon_sym_final] = ACTIONS(4371), + [anon_sym_open] = ACTIONS(4371), + [anon_sym_vararg] = ACTIONS(4371), + [anon_sym_noinline] = ACTIONS(4371), + [anon_sym_crossinline] = ACTIONS(4371), + [anon_sym_expect] = ACTIONS(4371), + [anon_sym_actual] = ACTIONS(4371), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4373), + [sym__automatic_semicolon] = ACTIONS(4373), + [sym_safe_nav] = ACTIONS(4373), [sym_multiline_comment] = ACTIONS(3), }, - [3692] = { - [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), + [3614] = { + [sym_type_constraints] = STATE(3775), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [sym_multiline_comment] = ACTIONS(3), }, - [3693] = { - [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(7025), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(6785), - [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(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), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4277), - [sym_safe_nav] = ACTIONS(4277), + [3615] = { + [sym_type_constraints] = STATE(4041), + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, - [3695] = { - [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] = { - [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), + [3616] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), }, - [3697] = { - [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), + [3617] = { + [sym_type_constraints] = STATE(3949), + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), - [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__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4218), }, - [3698] = { - [sym_class_body] = STATE(3255), - [sym_type_constraints] = STATE(3006), + [3618] = { + [sym_function_body] = STATE(3500), + [sym__block] = STATE(3403), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(7029), + [anon_sym_COLON] = ACTIONS(6971), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), [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(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_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_null] = ACTIONS(4216), - [anon_sym_if] = ACTIONS(4216), + [anon_sym_PIPE_PIPE] = ACTIONS(4218), [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), @@ -420478,3498 +410555,5574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4216), [anon_sym_DASH] = ACTIONS(4216), [anon_sym_SLASH] = ACTIONS(4216), - [anon_sym_PERCENT] = ACTIONS(4218), + [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), - }, - [3699] = { - [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_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), + [3619] = { + [sym_type_constraints] = STATE(3945), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [3701] = { - [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), + [3620] = { + [sym__alpha_identifier] = ACTIONS(4468), + [anon_sym_AT] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_as] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(4470), + [anon_sym_LPAREN] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4468), + [anon_sym_GT] = ACTIONS(4468), + [anon_sym_where] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_get] = ACTIONS(4468), + [anon_sym_set] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [sym_label] = ACTIONS(4470), + [anon_sym_in] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_QMARK_COLON] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_catch] = ACTIONS(4468), + [anon_sym_finally] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_PLUS_EQ] = ACTIONS(4470), + [anon_sym_DASH_EQ] = ACTIONS(4470), + [anon_sym_STAR_EQ] = ACTIONS(4470), + [anon_sym_SLASH_EQ] = ACTIONS(4470), + [anon_sym_PERCENT_EQ] = ACTIONS(4470), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), + [anon_sym_EQ_EQ] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), + [anon_sym_LT_EQ] = ACTIONS(4470), + [anon_sym_GT_EQ] = ACTIONS(4470), + [anon_sym_BANGin] = ACTIONS(4470), + [anon_sym_is] = ACTIONS(4468), + [anon_sym_BANGis] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_SLASH] = ACTIONS(4468), + [anon_sym_PERCENT] = ACTIONS(4468), + [anon_sym_as_QMARK] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_BANG_BANG] = ACTIONS(4470), + [anon_sym_suspend] = ACTIONS(4468), + [anon_sym_sealed] = ACTIONS(4468), + [anon_sym_annotation] = ACTIONS(4468), + [anon_sym_data] = ACTIONS(4468), + [anon_sym_inner] = ACTIONS(4468), + [anon_sym_value] = ACTIONS(4468), + [anon_sym_override] = ACTIONS(4468), + [anon_sym_lateinit] = ACTIONS(4468), + [anon_sym_public] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4468), + [anon_sym_internal] = ACTIONS(4468), + [anon_sym_protected] = ACTIONS(4468), + [anon_sym_tailrec] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_infix] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym_external] = ACTIONS(4468), + [sym_property_modifier] = ACTIONS(4468), + [anon_sym_abstract] = ACTIONS(4468), + [anon_sym_final] = ACTIONS(4468), + [anon_sym_open] = ACTIONS(4468), + [anon_sym_vararg] = ACTIONS(4468), + [anon_sym_noinline] = ACTIONS(4468), + [anon_sym_crossinline] = ACTIONS(4468), + [anon_sym_expect] = ACTIONS(4468), + [anon_sym_actual] = ACTIONS(4468), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4470), + [sym__automatic_semicolon] = ACTIONS(4470), + [sym_safe_nav] = ACTIONS(4470), [sym_multiline_comment] = ACTIONS(3), }, - [3702] = { - [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), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [3621] = { + [sym_type_constraints] = STATE(3937), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [3622] = { + [sym_class_body] = STATE(3882), + [sym_type_constraints] = STATE(3807), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3623] = { + [sym__alpha_identifier] = ACTIONS(4472), + [anon_sym_AT] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_as] = ACTIONS(4472), + [anon_sym_EQ] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_LPAREN] = ACTIONS(4474), + [anon_sym_COMMA] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4472), + [anon_sym_GT] = ACTIONS(4472), + [anon_sym_where] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_get] = ACTIONS(4472), + [anon_sym_set] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [sym_label] = ACTIONS(4474), + [anon_sym_in] = ACTIONS(4472), + [anon_sym_DOT_DOT] = ACTIONS(4474), + [anon_sym_QMARK_COLON] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_else] = ACTIONS(4472), + [anon_sym_catch] = ACTIONS(4472), + [anon_sym_finally] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_PLUS_EQ] = ACTIONS(4474), + [anon_sym_DASH_EQ] = ACTIONS(4474), + [anon_sym_STAR_EQ] = ACTIONS(4474), + [anon_sym_SLASH_EQ] = ACTIONS(4474), + [anon_sym_PERCENT_EQ] = ACTIONS(4474), + [anon_sym_BANG_EQ] = ACTIONS(4472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4474), + [anon_sym_EQ_EQ] = ACTIONS(4472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4474), + [anon_sym_LT_EQ] = ACTIONS(4474), + [anon_sym_GT_EQ] = ACTIONS(4474), + [anon_sym_BANGin] = ACTIONS(4474), + [anon_sym_is] = ACTIONS(4472), + [anon_sym_BANGis] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_SLASH] = ACTIONS(4472), + [anon_sym_PERCENT] = ACTIONS(4472), + [anon_sym_as_QMARK] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_BANG_BANG] = ACTIONS(4474), + [anon_sym_suspend] = ACTIONS(4472), + [anon_sym_sealed] = ACTIONS(4472), + [anon_sym_annotation] = ACTIONS(4472), + [anon_sym_data] = ACTIONS(4472), + [anon_sym_inner] = ACTIONS(4472), + [anon_sym_value] = ACTIONS(4472), + [anon_sym_override] = ACTIONS(4472), + [anon_sym_lateinit] = ACTIONS(4472), + [anon_sym_public] = ACTIONS(4472), + [anon_sym_private] = ACTIONS(4472), + [anon_sym_internal] = ACTIONS(4472), + [anon_sym_protected] = ACTIONS(4472), + [anon_sym_tailrec] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_infix] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym_external] = ACTIONS(4472), + [sym_property_modifier] = ACTIONS(4472), + [anon_sym_abstract] = ACTIONS(4472), + [anon_sym_final] = ACTIONS(4472), + [anon_sym_open] = ACTIONS(4472), + [anon_sym_vararg] = ACTIONS(4472), + [anon_sym_noinline] = ACTIONS(4472), + [anon_sym_crossinline] = ACTIONS(4472), + [anon_sym_expect] = ACTIONS(4472), + [anon_sym_actual] = ACTIONS(4472), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4474), + [sym__automatic_semicolon] = ACTIONS(4474), + [sym_safe_nav] = ACTIONS(4474), [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), + [3624] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), }, - [3706] = { - [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(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_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), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4445), + [3625] = { + [sym_function_body] = STATE(3225), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), }, - [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(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(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), - [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), + [3626] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_typealias] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_interface] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_val] = ACTIONS(4030), + [anon_sym_var] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_for] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_do] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = 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(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4035), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3627] = { + [aux_sym_type_constraints_repeat1] = STATE(3627), + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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(6973), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = 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), }, - [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), + [3628] = { + [sym_class_body] = STATE(3830), + [sym_type_constraints] = STATE(3819), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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), }, - [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), + [3629] = { + [sym_function_body] = STATE(3263), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [3630] = { + [sym_function_body] = STATE(3924), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [sym_multiline_comment] = ACTIONS(3), }, - [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(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_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), + [3631] = { + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3632] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6976), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3169), - [sym_safe_nav] = ACTIONS(7061), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3633] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_typealias] = ACTIONS(4190), + [anon_sym_class] = ACTIONS(4190), + [anon_sym_interface] = ACTIONS(4190), + [anon_sym_enum] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_val] = ACTIONS(4190), + [anon_sym_var] = ACTIONS(4190), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_for] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_do] = ACTIONS(4190), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4192), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [3634] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3635] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_constructor] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_COMMA] = ACTIONS(4035), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4035), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4030), + [sym_label] = ACTIONS(4035), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4035), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [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(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3636] = { + [sym__alpha_identifier] = ACTIONS(4744), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_EQ] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_COMMA] = ACTIONS(4746), + [anon_sym_by] = ACTIONS(4744), + [anon_sym_object] = ACTIONS(4744), + [anon_sym_fun] = 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(4746), + [sym_label] = ACTIONS(4744), + [anon_sym_in] = ACTIONS(4744), + [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_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_PLUS_PLUS] = ACTIONS(4746), + [anon_sym_DASH_DASH] = ACTIONS(4746), + [anon_sym_BANG] = ACTIONS(4744), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4746), + }, + [3637] = { + [sym_type_constraints] = STATE(4035), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(6980), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3638] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4192), + [anon_sym_COLON] = ACTIONS(4190), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_constructor] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4192), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_LT] = ACTIONS(4192), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4192), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4192), + [anon_sym_BANGin] = ACTIONS(4192), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4192), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4192), + [anon_sym_continue_AT] = ACTIONS(4192), + [anon_sym_break_AT] = ACTIONS(4192), + [anon_sym_this_AT] = ACTIONS(4192), + [anon_sym_super_AT] = ACTIONS(4192), + [sym_real_literal] = ACTIONS(4192), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4192), + [sym_bin_literal] = ACTIONS(4192), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [sym__backtick_identifier] = ACTIONS(4192), + [sym__automatic_semicolon] = ACTIONS(4192), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4192), + }, + [3639] = { + [sym_type_constraints] = STATE(3927), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3640] = { + [sym_class_body] = STATE(3852), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(6982), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3641] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3642] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_as] = ACTIONS(4902), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4902), + [anon_sym_GT] = ACTIONS(4902), + [anon_sym_object] = ACTIONS(4403), + [anon_sym_fun] = ACTIONS(4403), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_this] = ACTIONS(4403), + [anon_sym_super] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4403), + [anon_sym_in] = ACTIONS(4403), + [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(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_when] = ACTIONS(4403), + [anon_sym_try] = ACTIONS(4403), + [anon_sym_throw] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [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(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_as_QMARK] = ACTIONS(4904), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_BANG_BANG] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4405), + [anon_sym_continue_AT] = ACTIONS(4405), + [anon_sym_break_AT] = ACTIONS(4405), + [anon_sym_this_AT] = ACTIONS(4405), + [anon_sym_super_AT] = ACTIONS(4405), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(4403), + [anon_sym_false] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4904), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4405), }, - [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), + [3643] = { + [sym_class_body] = STATE(3913), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(6984), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3644] = { + [sym_type_constraints] = STATE(3727), + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3645] = { + [sym_class_body] = STATE(4014), + [sym_type_constraints] = STATE(3720), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3646] = { + [aux_sym_type_constraints_repeat1] = STATE(3627), + [sym__alpha_identifier] = ACTIONS(4439), + [anon_sym_AT] = ACTIONS(4441), + [anon_sym_LBRACK] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4439), + [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(6986), + [anon_sym_by] = ACTIONS(4439), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [anon_sym_where] = 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), }, - [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), + [3647] = { + [sym_type_constraints] = STATE(3770), + [sym_enum_class_body] = STATE(3857), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3648] = { + [aux_sym_user_type_repeat1] = STATE(3691), + [sym__alpha_identifier] = ACTIONS(4122), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_DOT] = ACTIONS(6988), + [anon_sym_typealias] = ACTIONS(4122), + [anon_sym_class] = ACTIONS(4122), + [anon_sym_interface] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym_val] = ACTIONS(4122), + [anon_sym_var] = ACTIONS(4122), + [anon_sym_object] = ACTIONS(4122), + [anon_sym_fun] = ACTIONS(4122), + [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_for] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_do] = ACTIONS(4122), + [anon_sym_null] = ACTIONS(4122), + [anon_sym_if] = 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] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_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(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4124), }, - [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), + [3649] = { + [ts_builtin_sym_end] = ACTIONS(6990), + [sym__alpha_identifier] = ACTIONS(6992), + [anon_sym_AT] = ACTIONS(6990), + [anon_sym_LBRACK] = ACTIONS(6990), + [anon_sym_import] = ACTIONS(6992), + [anon_sym_typealias] = ACTIONS(6992), + [anon_sym_class] = ACTIONS(6992), + [anon_sym_interface] = ACTIONS(6992), + [anon_sym_enum] = ACTIONS(6992), + [anon_sym_LBRACE] = ACTIONS(6990), + [anon_sym_LPAREN] = ACTIONS(6990), + [anon_sym_val] = ACTIONS(6992), + [anon_sym_var] = ACTIONS(6992), + [anon_sym_object] = ACTIONS(6992), + [anon_sym_fun] = ACTIONS(6992), + [anon_sym_get] = ACTIONS(6992), + [anon_sym_set] = ACTIONS(6992), + [anon_sym_this] = ACTIONS(6992), + [anon_sym_super] = ACTIONS(6992), + [anon_sym_STAR] = ACTIONS(6990), + [sym_label] = ACTIONS(6992), + [anon_sym_for] = ACTIONS(6992), + [anon_sym_while] = ACTIONS(6992), + [anon_sym_do] = ACTIONS(6992), + [anon_sym_null] = ACTIONS(6992), + [anon_sym_if] = ACTIONS(6992), + [anon_sym_when] = ACTIONS(6992), + [anon_sym_try] = ACTIONS(6992), + [anon_sym_throw] = ACTIONS(6992), + [anon_sym_return] = ACTIONS(6992), + [anon_sym_continue] = ACTIONS(6992), + [anon_sym_break] = ACTIONS(6992), + [anon_sym_COLON_COLON] = ACTIONS(6990), + [anon_sym_PLUS] = ACTIONS(6992), + [anon_sym_DASH] = ACTIONS(6992), + [anon_sym_PLUS_PLUS] = ACTIONS(6990), + [anon_sym_DASH_DASH] = ACTIONS(6990), + [anon_sym_BANG] = ACTIONS(6990), + [anon_sym_suspend] = ACTIONS(6992), + [anon_sym_sealed] = ACTIONS(6992), + [anon_sym_annotation] = ACTIONS(6992), + [anon_sym_data] = ACTIONS(6992), + [anon_sym_inner] = ACTIONS(6992), + [anon_sym_value] = ACTIONS(6992), + [anon_sym_override] = ACTIONS(6992), + [anon_sym_lateinit] = ACTIONS(6992), + [anon_sym_public] = ACTIONS(6992), + [anon_sym_private] = ACTIONS(6992), + [anon_sym_internal] = ACTIONS(6992), + [anon_sym_protected] = ACTIONS(6992), + [anon_sym_tailrec] = ACTIONS(6992), + [anon_sym_operator] = ACTIONS(6992), + [anon_sym_infix] = ACTIONS(6992), + [anon_sym_inline] = ACTIONS(6992), + [anon_sym_external] = ACTIONS(6992), + [sym_property_modifier] = ACTIONS(6992), + [anon_sym_abstract] = ACTIONS(6992), + [anon_sym_final] = ACTIONS(6992), + [anon_sym_open] = ACTIONS(6992), + [anon_sym_vararg] = ACTIONS(6992), + [anon_sym_noinline] = ACTIONS(6992), + [anon_sym_crossinline] = ACTIONS(6992), + [anon_sym_expect] = ACTIONS(6992), + [anon_sym_actual] = ACTIONS(6992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6990), + [anon_sym_continue_AT] = ACTIONS(6990), + [anon_sym_break_AT] = ACTIONS(6990), + [anon_sym_this_AT] = ACTIONS(6990), + [anon_sym_super_AT] = ACTIONS(6990), + [sym_real_literal] = ACTIONS(6990), + [sym_integer_literal] = ACTIONS(6992), + [sym_hex_literal] = ACTIONS(6990), + [sym_bin_literal] = ACTIONS(6990), + [anon_sym_true] = ACTIONS(6992), + [anon_sym_false] = ACTIONS(6992), + [anon_sym_SQUOTE] = ACTIONS(6990), + [sym__backtick_identifier] = ACTIONS(6990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6990), + }, + [3650] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4393), + [anon_sym_fun] = ACTIONS(4393), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_this] = ACTIONS(4393), + [anon_sym_super] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4393), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_when] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4395), + [anon_sym_continue_AT] = ACTIONS(4395), + [anon_sym_break_AT] = ACTIONS(4395), + [anon_sym_this_AT] = ACTIONS(4395), + [anon_sym_super_AT] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4395), + [sym_integer_literal] = ACTIONS(4393), + [sym_hex_literal] = ACTIONS(4395), + [sym_bin_literal] = ACTIONS(4395), + [anon_sym_true] = ACTIONS(4393), + [anon_sym_false] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4395), + }, + [3651] = { + [sym_type_constraints] = STATE(3719), + [sym_enum_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [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), + [3652] = { + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), }, - [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), + [3653] = { + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3654] = { + [sym_class_body] = STATE(4032), + [sym_type_constraints] = STATE(3721), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), [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), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3655] = { + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3656] = { + [ts_builtin_sym_end] = ACTIONS(6994), + [sym__alpha_identifier] = ACTIONS(6996), + [anon_sym_AT] = ACTIONS(6994), + [anon_sym_LBRACK] = ACTIONS(6994), + [anon_sym_import] = ACTIONS(6996), + [anon_sym_typealias] = ACTIONS(6996), + [anon_sym_class] = ACTIONS(6996), + [anon_sym_interface] = ACTIONS(6996), + [anon_sym_enum] = ACTIONS(6996), + [anon_sym_LBRACE] = ACTIONS(6994), + [anon_sym_LPAREN] = ACTIONS(6994), + [anon_sym_val] = ACTIONS(6996), + [anon_sym_var] = ACTIONS(6996), + [anon_sym_object] = ACTIONS(6996), + [anon_sym_fun] = ACTIONS(6996), + [anon_sym_get] = ACTIONS(6996), + [anon_sym_set] = ACTIONS(6996), + [anon_sym_this] = ACTIONS(6996), + [anon_sym_super] = ACTIONS(6996), + [anon_sym_STAR] = ACTIONS(6994), + [sym_label] = ACTIONS(6996), + [anon_sym_for] = ACTIONS(6996), + [anon_sym_while] = ACTIONS(6996), + [anon_sym_do] = ACTIONS(6996), + [anon_sym_null] = ACTIONS(6996), + [anon_sym_if] = ACTIONS(6996), + [anon_sym_when] = ACTIONS(6996), + [anon_sym_try] = ACTIONS(6996), + [anon_sym_throw] = ACTIONS(6996), + [anon_sym_return] = ACTIONS(6996), + [anon_sym_continue] = ACTIONS(6996), + [anon_sym_break] = ACTIONS(6996), + [anon_sym_COLON_COLON] = ACTIONS(6994), + [anon_sym_PLUS] = ACTIONS(6996), + [anon_sym_DASH] = ACTIONS(6996), + [anon_sym_PLUS_PLUS] = ACTIONS(6994), + [anon_sym_DASH_DASH] = ACTIONS(6994), + [anon_sym_BANG] = ACTIONS(6994), + [anon_sym_suspend] = ACTIONS(6996), + [anon_sym_sealed] = ACTIONS(6996), + [anon_sym_annotation] = ACTIONS(6996), + [anon_sym_data] = ACTIONS(6996), + [anon_sym_inner] = ACTIONS(6996), + [anon_sym_value] = ACTIONS(6996), + [anon_sym_override] = ACTIONS(6996), + [anon_sym_lateinit] = ACTIONS(6996), + [anon_sym_public] = ACTIONS(6996), + [anon_sym_private] = ACTIONS(6996), + [anon_sym_internal] = ACTIONS(6996), + [anon_sym_protected] = ACTIONS(6996), + [anon_sym_tailrec] = ACTIONS(6996), + [anon_sym_operator] = ACTIONS(6996), + [anon_sym_infix] = ACTIONS(6996), + [anon_sym_inline] = ACTIONS(6996), + [anon_sym_external] = ACTIONS(6996), + [sym_property_modifier] = ACTIONS(6996), + [anon_sym_abstract] = ACTIONS(6996), + [anon_sym_final] = ACTIONS(6996), + [anon_sym_open] = ACTIONS(6996), + [anon_sym_vararg] = ACTIONS(6996), + [anon_sym_noinline] = ACTIONS(6996), + [anon_sym_crossinline] = ACTIONS(6996), + [anon_sym_expect] = ACTIONS(6996), + [anon_sym_actual] = ACTIONS(6996), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6994), + [anon_sym_continue_AT] = ACTIONS(6994), + [anon_sym_break_AT] = ACTIONS(6994), + [anon_sym_this_AT] = ACTIONS(6994), + [anon_sym_super_AT] = ACTIONS(6994), + [sym_real_literal] = ACTIONS(6994), + [sym_integer_literal] = ACTIONS(6996), + [sym_hex_literal] = ACTIONS(6994), + [sym_bin_literal] = ACTIONS(6994), + [anon_sym_true] = ACTIONS(6996), + [anon_sym_false] = ACTIONS(6996), + [anon_sym_SQUOTE] = ACTIONS(6994), + [sym__backtick_identifier] = ACTIONS(6994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6994), + }, + [3657] = { + [sym_type_constraints] = STATE(4042), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(6998), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3658] = { + [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), - [sym__backtick_identifier] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [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), }, - [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), + [3659] = { + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [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_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_this] = ACTIONS(4303), + [anon_sym_super] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), }, - [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_LBRACK] = ACTIONS(4185), - [anon_sym_RBRACK] = ACTIONS(4185), - [anon_sym_as] = ACTIONS(4183), - [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(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), - [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), + [3660] = { + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3661] = { + [sym_function_body] = STATE(3087), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6444), + [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_fun] = 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(4387), + [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_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(4387), + [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), + }, + [3662] = { + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3663] = { + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_object] = ACTIONS(4453), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4455), + [anon_sym_DASH_DASH] = ACTIONS(4455), + [anon_sym_BANG] = ACTIONS(4453), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4455), + }, + [3664] = { + [sym__alpha_identifier] = ACTIONS(4184), + [anon_sym_AT] = ACTIONS(4186), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(4186), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_as] = ACTIONS(4184), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_LPAREN] = ACTIONS(4186), + [anon_sym_COMMA] = ACTIONS(4186), + [anon_sym_by] = ACTIONS(4184), + [anon_sym_LT] = ACTIONS(4184), + [anon_sym_GT] = ACTIONS(4184), + [anon_sym_where] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym_get] = ACTIONS(4184), + [anon_sym_set] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4184), + [sym_label] = ACTIONS(4186), + [anon_sym_in] = ACTIONS(4184), + [anon_sym_DOT_DOT] = ACTIONS(4186), + [anon_sym_QMARK_COLON] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_PIPE_PIPE] = ACTIONS(4186), + [anon_sym_else] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_BANG_EQ] = ACTIONS(4184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4186), + [anon_sym_EQ_EQ] = ACTIONS(4184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4186), + [anon_sym_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_EQ] = ACTIONS(4186), + [anon_sym_BANGin] = ACTIONS(4186), + [anon_sym_is] = ACTIONS(4184), + [anon_sym_BANGis] = ACTIONS(4186), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_SLASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), + [anon_sym_as_QMARK] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_BANG_BANG] = ACTIONS(4186), + [anon_sym_suspend] = ACTIONS(4184), + [anon_sym_sealed] = ACTIONS(4184), + [anon_sym_annotation] = ACTIONS(4184), + [anon_sym_data] = ACTIONS(4184), + [anon_sym_inner] = ACTIONS(4184), + [anon_sym_value] = ACTIONS(4184), + [anon_sym_override] = ACTIONS(4184), + [anon_sym_lateinit] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_internal] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_tailrec] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_infix] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym_external] = ACTIONS(4184), + [sym_property_modifier] = ACTIONS(4184), + [anon_sym_abstract] = ACTIONS(4184), + [anon_sym_final] = ACTIONS(4184), + [anon_sym_open] = ACTIONS(4184), + [anon_sym_vararg] = ACTIONS(4184), + [anon_sym_noinline] = ACTIONS(4184), + [anon_sym_crossinline] = ACTIONS(4184), + [anon_sym_expect] = ACTIONS(4184), + [anon_sym_actual] = ACTIONS(4184), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4186), + [sym__automatic_semicolon] = ACTIONS(4186), + [sym_safe_nav] = ACTIONS(4186), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3665] = { + [sym_type_constraints] = STATE(3786), + [sym_enum_class_body] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3666] = { + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [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), + [3667] = { + [sym_type_constraints] = STATE(3991), + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [3668] = { + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [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_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(7000), + [anon_sym_L] = ACTIONS(7002), + [sym__backtick_identifier] = ACTIONS(4497), + [sym__automatic_semicolon] = ACTIONS(4497), + [sym_safe_nav] = ACTIONS(4497), [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), + [3669] = { + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [3670] = { + [sym_class_body] = STATE(3874), + [sym_type_constraints] = STATE(3715), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [3671] = { + [sym_class_body] = STATE(3830), + [sym_type_constraints] = STATE(3819), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7004), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [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), + [3672] = { + [sym_class_body] = STATE(3858), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3673] = { + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), }, - [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), + [3674] = { + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3764), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [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), + [3675] = { + [sym_class_body] = STATE(4023), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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), }, - [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), - [sym__backtick_identifier] = ACTIONS(4357), - [sym__automatic_semicolon] = ACTIONS(4357), - [sym_safe_nav] = ACTIONS(4357), + [3676] = { + [sym_function_body] = STATE(3481), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7006), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3677] = { + [sym_type_constraints] = STATE(3775), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7008), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [sym_multiline_comment] = ACTIONS(3), }, - [3741] = { + [3678] = { + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [3679] = { + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3764), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7010), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3680] = { + [sym_type_constraints] = STATE(3970), + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3681] = { + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(6026), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [3682] = { + [sym_type_constraints] = STATE(3727), + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7012), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3683] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(7014), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [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(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [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(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4030), + [anon_sym_as_QMARK] = ACTIONS(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4035), + [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), + }, + [3684] = { + [aux_sym_type_constraints_repeat1] = STATE(3646), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(6986), + [anon_sym_by] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + }, + [3685] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_COLON] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_constructor] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_where] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4030), + [anon_sym_set] = ACTIONS(4030), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [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(4035), + [anon_sym_BANGin] = ACTIONS(4035), + [anon_sym_is] = ACTIONS(4030), + [anon_sym_BANGis] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4030), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym__automatic_semicolon] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [3686] = { [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_EQ] = ACTIONS(4756), [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_by] = ACTIONS(4754), [anon_sym_where] = ACTIONS(4754), - [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_object] = ACTIONS(4754), + [anon_sym_fun] = 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_this] = ACTIONS(4754), + [anon_sym_super] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [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_BANG] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4754), [anon_sym_suspend] = ACTIONS(4754), [anon_sym_sealed] = ACTIONS(4754), [anon_sym_annotation] = ACTIONS(4754), @@ -423997,1004 +416150,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [3687] = { [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_as] = ACTIONS(4275), - [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(4275), - [anon_sym_DOT] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4277), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4030), + [anon_sym_as] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(7018), + [anon_sym_LT] = ACTIONS(4030), + [anon_sym_GT] = ACTIONS(4030), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), [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_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4275), [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_DOT_DOT] = ACTIONS(4035), + [anon_sym_QMARK_COLON] = ACTIONS(4035), + [anon_sym_AMP_AMP] = ACTIONS(4035), + [anon_sym_PIPE_PIPE] = ACTIONS(4035), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), [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_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(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_BANGin] = ACTIONS(4278), [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_BANGis] = ACTIONS(4278), [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_SLASH] = ACTIONS(4030), + [anon_sym_PERCENT] = ACTIONS(4030), + [anon_sym_as_QMARK] = ACTIONS(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4035), [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_multiline_comment] = ACTIONS(3), - }, - [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_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(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), - }, - [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_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_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(4738), - [sym__automatic_semicolon] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4035), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [3688] = { + [sym_value_arguments] = STATE(3887), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3689] = { + [aux_sym_user_type_repeat1] = STATE(3648), + [sym__alpha_identifier] = ACTIONS(4139), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_LBRACK] = ACTIONS(4141), + [anon_sym_DOT] = ACTIONS(6988), + [anon_sym_typealias] = ACTIONS(4139), + [anon_sym_class] = ACTIONS(4139), + [anon_sym_interface] = ACTIONS(4139), + [anon_sym_enum] = ACTIONS(4139), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym_val] = ACTIONS(4139), + [anon_sym_var] = ACTIONS(4139), + [anon_sym_object] = ACTIONS(4139), + [anon_sym_fun] = ACTIONS(4139), + [anon_sym_get] = ACTIONS(4139), + [anon_sym_set] = ACTIONS(4139), + [anon_sym_this] = ACTIONS(4139), + [anon_sym_super] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(4141), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_for] = ACTIONS(4139), + [anon_sym_while] = ACTIONS(4139), + [anon_sym_do] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(4139), + [anon_sym_if] = ACTIONS(4139), + [anon_sym_when] = ACTIONS(4139), + [anon_sym_try] = ACTIONS(4139), + [anon_sym_throw] = ACTIONS(4139), + [anon_sym_return] = ACTIONS(4139), + [anon_sym_continue] = ACTIONS(4139), + [anon_sym_break] = ACTIONS(4139), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_suspend] = ACTIONS(4139), + [anon_sym_sealed] = ACTIONS(4139), + [anon_sym_annotation] = ACTIONS(4139), + [anon_sym_data] = ACTIONS(4139), + [anon_sym_inner] = ACTIONS(4139), + [anon_sym_value] = ACTIONS(4139), + [anon_sym_override] = ACTIONS(4139), + [anon_sym_lateinit] = ACTIONS(4139), + [anon_sym_public] = ACTIONS(4139), + [anon_sym_private] = ACTIONS(4139), + [anon_sym_internal] = ACTIONS(4139), + [anon_sym_protected] = ACTIONS(4139), + [anon_sym_tailrec] = ACTIONS(4139), + [anon_sym_operator] = ACTIONS(4139), + [anon_sym_infix] = ACTIONS(4139), + [anon_sym_inline] = ACTIONS(4139), + [anon_sym_external] = ACTIONS(4139), + [sym_property_modifier] = ACTIONS(4139), + [anon_sym_abstract] = ACTIONS(4139), + [anon_sym_final] = ACTIONS(4139), + [anon_sym_open] = ACTIONS(4139), + [anon_sym_vararg] = ACTIONS(4139), + [anon_sym_noinline] = ACTIONS(4139), + [anon_sym_crossinline] = ACTIONS(4139), + [anon_sym_expect] = ACTIONS(4139), + [anon_sym_actual] = ACTIONS(4139), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4141), + [anon_sym_continue_AT] = ACTIONS(4141), + [anon_sym_break_AT] = ACTIONS(4141), + [anon_sym_this_AT] = ACTIONS(4141), + [anon_sym_super_AT] = ACTIONS(4141), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(4139), + [anon_sym_false] = ACTIONS(4139), + [anon_sym_SQUOTE] = ACTIONS(4141), + [sym__backtick_identifier] = ACTIONS(4141), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4141), }, - [3754] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3766), + [3690] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3693), [sym__alpha_identifier] = ACTIONS(4684), [anon_sym_AT] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), [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_COMMA] = ACTIONS(7024), + [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), @@ -425051,220 +416492,1359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [3691] = { + [aux_sym_user_type_repeat1] = STATE(3691), + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(7026), + [anon_sym_typealias] = ACTIONS(4171), + [anon_sym_class] = ACTIONS(4171), + [anon_sym_interface] = ACTIONS(4171), + [anon_sym_enum] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_val] = ACTIONS(4171), + [anon_sym_var] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4171), + [anon_sym_for] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_do] = ACTIONS(4171), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), + }, + [3692] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(2971), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [3693] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(7024), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + }, + [3694] = { + [sym_class_body] = STATE(3211), + [sym_type_constraints] = STATE(3059), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7029), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_fun] = 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_STAR] = ACTIONS(4319), + [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_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(4319), + [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7061), + [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), }, - [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), + [3695] = { + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = 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(3216), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_fun] = 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), + }, + [3696] = { + [sym_function_body] = STATE(3832), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [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_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), }, - [3757] = { + [3697] = { + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [3698] = { + [sym_class_body] = STATE(3220), + [sym_type_constraints] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [3699] = { + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), + }, + [3700] = { + [sym_type_constraints] = STATE(3955), + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3701] = { + [sym_type_constraints] = STATE(3820), + [sym_enum_class_body] = STATE(3840), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + }, + [3702] = { + [sym_type_constraints] = STATE(2988), + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [3703] = { + [sym_class_body] = STATE(3260), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7033), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [3704] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [3705] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7035), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [3706] = { + [sym_type_constraints] = STATE(3951), + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(3216), + [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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), + }, + [3707] = { [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_EQ] = ACTIONS(4742), [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_by] = ACTIONS(4740), [anon_sym_where] = ACTIONS(4740), - [anon_sym_DOT] = ACTIONS(4740), + [anon_sym_object] = ACTIONS(4740), + [anon_sym_fun] = 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_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_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_BANG] = ACTIONS(4740), [anon_sym_suspend] = ACTIONS(4740), [anon_sym_sealed] = ACTIONS(4740), [anon_sym_annotation] = ACTIONS(4740), @@ -425292,892 +417872,1715 @@ 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), + [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), }, - [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), + [3708] = { + [sym__alpha_identifier] = ACTIONS(4417), + [anon_sym_AT] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4417), + [anon_sym_as] = ACTIONS(4417), + [anon_sym_EQ] = ACTIONS(4417), + [anon_sym_constructor] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_RBRACE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4417), + [anon_sym_GT] = ACTIONS(4417), + [anon_sym_where] = ACTIONS(4417), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_get] = ACTIONS(4417), + [anon_sym_set] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4417), + [sym_label] = ACTIONS(4419), + [anon_sym_in] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_QMARK_COLON] = ACTIONS(4419), + [anon_sym_AMP_AMP] = ACTIONS(4419), + [anon_sym_PIPE_PIPE] = ACTIONS(4419), + [anon_sym_else] = ACTIONS(4417), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_PLUS_EQ] = ACTIONS(4419), + [anon_sym_DASH_EQ] = ACTIONS(4419), + [anon_sym_STAR_EQ] = ACTIONS(4419), + [anon_sym_SLASH_EQ] = ACTIONS(4419), + [anon_sym_PERCENT_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ] = ACTIONS(4417), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ] = ACTIONS(4417), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4419), + [anon_sym_LT_EQ] = ACTIONS(4419), + [anon_sym_GT_EQ] = ACTIONS(4419), + [anon_sym_BANGin] = ACTIONS(4419), + [anon_sym_is] = ACTIONS(4417), + [anon_sym_BANGis] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_SLASH] = ACTIONS(4417), + [anon_sym_PERCENT] = ACTIONS(4417), + [anon_sym_as_QMARK] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_BANG_BANG] = ACTIONS(4419), + [anon_sym_suspend] = ACTIONS(4417), + [anon_sym_sealed] = ACTIONS(4417), + [anon_sym_annotation] = ACTIONS(4417), + [anon_sym_data] = ACTIONS(4417), + [anon_sym_inner] = ACTIONS(4417), + [anon_sym_value] = ACTIONS(4417), + [anon_sym_override] = ACTIONS(4417), + [anon_sym_lateinit] = ACTIONS(4417), + [anon_sym_public] = ACTIONS(4417), + [anon_sym_private] = ACTIONS(4417), + [anon_sym_internal] = ACTIONS(4417), + [anon_sym_protected] = ACTIONS(4417), + [anon_sym_tailrec] = ACTIONS(4417), + [anon_sym_operator] = ACTIONS(4417), + [anon_sym_infix] = ACTIONS(4417), + [anon_sym_inline] = ACTIONS(4417), + [anon_sym_external] = ACTIONS(4417), + [sym_property_modifier] = ACTIONS(4417), + [anon_sym_abstract] = ACTIONS(4417), + [anon_sym_final] = ACTIONS(4417), + [anon_sym_open] = ACTIONS(4417), + [anon_sym_vararg] = ACTIONS(4417), + [anon_sym_noinline] = ACTIONS(4417), + [anon_sym_crossinline] = ACTIONS(4417), + [anon_sym_expect] = ACTIONS(4417), + [anon_sym_actual] = ACTIONS(4417), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4419), + [sym__automatic_semicolon] = ACTIONS(4419), + [sym_safe_nav] = ACTIONS(4419), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3709] = { + [sym_type_constraints] = STATE(3947), + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3710] = { + [sym__alpha_identifier] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_typealias] = ACTIONS(4307), + [anon_sym_class] = ACTIONS(4307), + [anon_sym_interface] = ACTIONS(4307), + [anon_sym_enum] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_val] = ACTIONS(4307), + [anon_sym_var] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_fun] = ACTIONS(4307), + [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_for] = ACTIONS(4307), + [anon_sym_while] = ACTIONS(4307), + [anon_sym_do] = ACTIONS(4307), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_if] = 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] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [anon_sym_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4309), + }, + [3711] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), + [sym_multiline_comment] = ACTIONS(3), + }, + [3712] = { + [sym__alpha_identifier] = ACTIONS(4647), + [anon_sym_AT] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [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_LT] = ACTIONS(4647), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_where] = 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), + }, + [3713] = { + [sym__alpha_identifier] = ACTIONS(4171), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_DOT] = ACTIONS(4171), + [anon_sym_typealias] = ACTIONS(4171), + [anon_sym_class] = ACTIONS(4171), + [anon_sym_interface] = ACTIONS(4171), + [anon_sym_enum] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_val] = ACTIONS(4171), + [anon_sym_var] = ACTIONS(4171), + [anon_sym_object] = ACTIONS(4171), + [anon_sym_fun] = ACTIONS(4171), + [anon_sym_get] = ACTIONS(4171), + [anon_sym_set] = ACTIONS(4171), + [anon_sym_this] = ACTIONS(4171), + [anon_sym_super] = ACTIONS(4171), + [anon_sym_STAR] = ACTIONS(4173), + [sym_label] = ACTIONS(4171), + [anon_sym_for] = ACTIONS(4171), + [anon_sym_while] = ACTIONS(4171), + [anon_sym_do] = ACTIONS(4171), + [anon_sym_null] = ACTIONS(4171), + [anon_sym_if] = ACTIONS(4171), + [anon_sym_when] = ACTIONS(4171), + [anon_sym_try] = ACTIONS(4171), + [anon_sym_throw] = ACTIONS(4171), + [anon_sym_return] = ACTIONS(4171), + [anon_sym_continue] = ACTIONS(4171), + [anon_sym_break] = ACTIONS(4171), + [anon_sym_COLON_COLON] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4171), + [anon_sym_DASH] = ACTIONS(4171), + [anon_sym_PLUS_PLUS] = ACTIONS(4173), + [anon_sym_DASH_DASH] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_suspend] = ACTIONS(4171), + [anon_sym_sealed] = ACTIONS(4171), + [anon_sym_annotation] = ACTIONS(4171), + [anon_sym_data] = ACTIONS(4171), + [anon_sym_inner] = ACTIONS(4171), + [anon_sym_value] = ACTIONS(4171), + [anon_sym_override] = ACTIONS(4171), + [anon_sym_lateinit] = ACTIONS(4171), + [anon_sym_public] = ACTIONS(4171), + [anon_sym_private] = ACTIONS(4171), + [anon_sym_internal] = ACTIONS(4171), + [anon_sym_protected] = ACTIONS(4171), + [anon_sym_tailrec] = ACTIONS(4171), + [anon_sym_operator] = ACTIONS(4171), + [anon_sym_infix] = ACTIONS(4171), + [anon_sym_inline] = ACTIONS(4171), + [anon_sym_external] = ACTIONS(4171), + [sym_property_modifier] = ACTIONS(4171), + [anon_sym_abstract] = ACTIONS(4171), + [anon_sym_final] = ACTIONS(4171), + [anon_sym_open] = ACTIONS(4171), + [anon_sym_vararg] = ACTIONS(4171), + [anon_sym_noinline] = ACTIONS(4171), + [anon_sym_crossinline] = ACTIONS(4171), + [anon_sym_expect] = ACTIONS(4171), + [anon_sym_actual] = ACTIONS(4171), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4173), + [anon_sym_continue_AT] = ACTIONS(4173), + [anon_sym_break_AT] = ACTIONS(4173), + [anon_sym_this_AT] = ACTIONS(4173), + [anon_sym_super_AT] = ACTIONS(4173), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(4171), + [anon_sym_false] = ACTIONS(4171), + [anon_sym_SQUOTE] = ACTIONS(4173), + [sym__backtick_identifier] = ACTIONS(4173), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4173), + }, + [3714] = { + [sym__alpha_identifier] = ACTIONS(4657), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_as] = ACTIONS(4657), + [anon_sym_EQ] = ACTIONS(4657), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4657), + [anon_sym_set] = ACTIONS(4657), + [anon_sym_STAR] = ACTIONS(4657), + [sym_label] = ACTIONS(4659), + [anon_sym_in] = ACTIONS(4657), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_else] = ACTIONS(4657), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4657), + [anon_sym_BANGis] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4657), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4657), + [anon_sym_PERCENT] = ACTIONS(4657), + [anon_sym_as_QMARK] = ACTIONS(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [anon_sym_suspend] = ACTIONS(4657), + [anon_sym_sealed] = ACTIONS(4657), + [anon_sym_annotation] = ACTIONS(4657), + [anon_sym_data] = ACTIONS(4657), + [anon_sym_inner] = ACTIONS(4657), + [anon_sym_value] = ACTIONS(4657), + [anon_sym_override] = ACTIONS(4657), + [anon_sym_lateinit] = ACTIONS(4657), + [anon_sym_public] = ACTIONS(4657), + [anon_sym_private] = ACTIONS(4657), + [anon_sym_internal] = ACTIONS(4657), + [anon_sym_protected] = ACTIONS(4657), + [anon_sym_tailrec] = ACTIONS(4657), + [anon_sym_operator] = ACTIONS(4657), + [anon_sym_infix] = ACTIONS(4657), + [anon_sym_inline] = ACTIONS(4657), + [anon_sym_external] = ACTIONS(4657), + [sym_property_modifier] = ACTIONS(4657), + [anon_sym_abstract] = ACTIONS(4657), + [anon_sym_final] = ACTIONS(4657), + [anon_sym_open] = ACTIONS(4657), + [anon_sym_vararg] = ACTIONS(4657), + [anon_sym_noinline] = ACTIONS(4657), + [anon_sym_crossinline] = ACTIONS(4657), + [anon_sym_expect] = ACTIONS(4657), + [anon_sym_actual] = ACTIONS(4657), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + }, + [3715] = { + [sym_class_body] = STATE(3830), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_EQ] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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(4441), - [sym_safe_nav] = ACTIONS(4441), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3716] = { + [sym_class_body] = STATE(3208), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7037), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [3717] = { + [sym_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), + }, + [3718] = { + [sym_function_body] = STATE(3481), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7041), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3719] = { + [sym_enum_class_body] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3720] = { + [sym_class_body] = STATE(3882), + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3721] = { + [sym_class_body] = STATE(3888), + [sym__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_as] = ACTIONS(4653), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_LBRACE] = ACTIONS(5834), + [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_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), + [sym__backtick_identifier] = ACTIONS(4655), + [sym__automatic_semicolon] = ACTIONS(4655), + [sym_safe_nav] = ACTIONS(4655), [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), + [3722] = { + [sym_type_constraints] = STATE(4033), + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [3723] = { + [sym_type_constraints] = STATE(4034), + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), - [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__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [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), + [3724] = { + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), }, - [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(4738), - [sym__automatic_semicolon] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), + [3725] = { + [sym_type_constraints] = STATE(4035), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3726] = { + [sym__alpha_identifier] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_as] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4269), + [anon_sym_COMMA] = ACTIONS(4269), + [anon_sym_by] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_where] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_get] = ACTIONS(4267), + [anon_sym_set] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [sym_label] = ACTIONS(4269), + [anon_sym_in] = ACTIONS(4267), + [anon_sym_DOT_DOT] = ACTIONS(4269), + [anon_sym_QMARK_COLON] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [anon_sym_else] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_PLUS_EQ] = ACTIONS(4269), + [anon_sym_DASH_EQ] = ACTIONS(4269), + [anon_sym_STAR_EQ] = ACTIONS(4269), + [anon_sym_SLASH_EQ] = ACTIONS(4269), + [anon_sym_PERCENT_EQ] = ACTIONS(4269), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4269), + [anon_sym_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4269), + [anon_sym_LT_EQ] = ACTIONS(4269), + [anon_sym_GT_EQ] = ACTIONS(4269), + [anon_sym_BANGin] = ACTIONS(4269), + [anon_sym_is] = ACTIONS(4267), + [anon_sym_BANGis] = ACTIONS(4269), + [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(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_BANG_BANG] = ACTIONS(4269), + [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(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__backtick_identifier] = ACTIONS(4269), + [sym__automatic_semicolon] = ACTIONS(4269), + [sym_safe_nav] = ACTIONS(4269), [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), + [3727] = { + [sym_enum_class_body] = STATE(3857), + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + }, + [3728] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -426185,242 +419588,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3729] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3730] = { + [sym__alpha_identifier] = ACTIONS(4417), + [anon_sym_AT] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_constructor] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_RBRACE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_where] = ACTIONS(4417), + [anon_sym_object] = ACTIONS(4417), + [anon_sym_fun] = ACTIONS(4417), + [anon_sym_get] = ACTIONS(4417), + [anon_sym_set] = ACTIONS(4417), + [anon_sym_this] = ACTIONS(4417), + [anon_sym_super] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4419), + [sym_label] = ACTIONS(4417), + [anon_sym_in] = ACTIONS(4417), + [anon_sym_null] = ACTIONS(4417), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_else] = ACTIONS(4417), + [anon_sym_when] = ACTIONS(4417), + [anon_sym_try] = ACTIONS(4417), + [anon_sym_throw] = ACTIONS(4417), + [anon_sym_return] = ACTIONS(4417), + [anon_sym_continue] = ACTIONS(4417), + [anon_sym_break] = ACTIONS(4417), + [anon_sym_COLON_COLON] = ACTIONS(4419), + [anon_sym_BANGin] = ACTIONS(4419), + [anon_sym_is] = ACTIONS(4417), + [anon_sym_BANGis] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_suspend] = ACTIONS(4417), + [anon_sym_sealed] = ACTIONS(4417), + [anon_sym_annotation] = ACTIONS(4417), + [anon_sym_data] = ACTIONS(4417), + [anon_sym_inner] = ACTIONS(4417), + [anon_sym_value] = ACTIONS(4417), + [anon_sym_override] = ACTIONS(4417), + [anon_sym_lateinit] = ACTIONS(4417), + [anon_sym_public] = ACTIONS(4417), + [anon_sym_private] = ACTIONS(4417), + [anon_sym_internal] = ACTIONS(4417), + [anon_sym_protected] = ACTIONS(4417), + [anon_sym_tailrec] = ACTIONS(4417), + [anon_sym_operator] = ACTIONS(4417), + [anon_sym_infix] = ACTIONS(4417), + [anon_sym_inline] = ACTIONS(4417), + [anon_sym_external] = ACTIONS(4417), + [sym_property_modifier] = ACTIONS(4417), + [anon_sym_abstract] = ACTIONS(4417), + [anon_sym_final] = ACTIONS(4417), + [anon_sym_open] = ACTIONS(4417), + [anon_sym_vararg] = ACTIONS(4417), + [anon_sym_noinline] = ACTIONS(4417), + [anon_sym_crossinline] = ACTIONS(4417), + [anon_sym_expect] = ACTIONS(4417), + [anon_sym_actual] = ACTIONS(4417), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4419), + [anon_sym_continue_AT] = ACTIONS(4419), + [anon_sym_break_AT] = ACTIONS(4419), + [anon_sym_this_AT] = ACTIONS(4419), + [anon_sym_super_AT] = ACTIONS(4419), + [sym_real_literal] = ACTIONS(4419), + [sym_integer_literal] = ACTIONS(4417), + [sym_hex_literal] = ACTIONS(4419), + [sym_bin_literal] = ACTIONS(4419), + [anon_sym_true] = ACTIONS(4417), + [anon_sym_false] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4419), + [sym__backtick_identifier] = ACTIONS(4419), + [sym__automatic_semicolon] = ACTIONS(4419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4419), + }, + [3731] = { + [sym_type_constraints] = STATE(4042), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [3732] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -426428,161 +419912,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(7067), [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), + [3733] = { + [sym_function_body] = STATE(3448), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), [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), + [3734] = { + [sym_type_constraints] = STATE(4025), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3735] = { + [sym__alpha_identifier] = ACTIONS(4625), + [anon_sym_AT] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_as] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4625), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_where] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_get] = ACTIONS(4625), + [anon_sym_set] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4625), + [sym_label] = ACTIONS(4627), + [anon_sym_in] = ACTIONS(4625), + [anon_sym_DOT_DOT] = ACTIONS(4627), + [anon_sym_QMARK_COLON] = ACTIONS(4627), + [anon_sym_AMP_AMP] = ACTIONS(4627), + [anon_sym_PIPE_PIPE] = ACTIONS(4627), + [anon_sym_else] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_PLUS_EQ] = ACTIONS(4627), + [anon_sym_DASH_EQ] = ACTIONS(4627), + [anon_sym_STAR_EQ] = ACTIONS(4627), + [anon_sym_SLASH_EQ] = ACTIONS(4627), + [anon_sym_PERCENT_EQ] = ACTIONS(4627), + [anon_sym_BANG_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), + [anon_sym_EQ_EQ] = ACTIONS(4625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_BANGin] = ACTIONS(4627), + [anon_sym_is] = ACTIONS(4625), + [anon_sym_BANGis] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4625), + [anon_sym_PERCENT] = ACTIONS(4625), + [anon_sym_as_QMARK] = ACTIONS(4627), + [anon_sym_PLUS_PLUS] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4627), + [anon_sym_BANG_BANG] = ACTIONS(4627), + [anon_sym_suspend] = ACTIONS(4625), + [anon_sym_sealed] = ACTIONS(4625), + [anon_sym_annotation] = ACTIONS(4625), + [anon_sym_data] = ACTIONS(4625), + [anon_sym_inner] = ACTIONS(4625), + [anon_sym_value] = ACTIONS(4625), + [anon_sym_override] = ACTIONS(4625), + [anon_sym_lateinit] = ACTIONS(4625), + [anon_sym_public] = ACTIONS(4625), + [anon_sym_private] = ACTIONS(4625), + [anon_sym_internal] = ACTIONS(4625), + [anon_sym_protected] = ACTIONS(4625), + [anon_sym_tailrec] = ACTIONS(4625), + [anon_sym_operator] = ACTIONS(4625), + [anon_sym_infix] = ACTIONS(4625), + [anon_sym_inline] = ACTIONS(4625), + [anon_sym_external] = ACTIONS(4625), + [sym_property_modifier] = ACTIONS(4625), + [anon_sym_abstract] = ACTIONS(4625), + [anon_sym_final] = ACTIONS(4625), + [anon_sym_open] = ACTIONS(4625), + [anon_sym_vararg] = ACTIONS(4625), + [anon_sym_noinline] = ACTIONS(4625), + [anon_sym_crossinline] = ACTIONS(4625), + [anon_sym_expect] = ACTIONS(4625), + [anon_sym_actual] = ACTIONS(4625), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4627), + [sym__automatic_semicolon] = ACTIONS(4627), + [sym_safe_nav] = ACTIONS(4627), + [sym_multiline_comment] = ACTIONS(3), + }, + [3736] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3182), + [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(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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -426590,220 +420236,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7067), [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), + [3737] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3193), [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_LBRACK] = ACTIONS(7043), [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_where] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [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(7067), + [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(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(7067), [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), + [3738] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [anon_sym_EQ] = ACTIONS(3186), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LPAREN] = ACTIONS(7049), [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), + [sym_label] = ACTIONS(7055), [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_COLON_COLON] = ACTIONS(7067), [anon_sym_PLUS_EQ] = ACTIONS(3188), [anon_sym_DASH_EQ] = ACTIONS(3188), [anon_sym_STAR_EQ] = ACTIONS(3188), @@ -426822,10 +420387,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3186), [anon_sym_inner] = ACTIONS(3186), [anon_sym_value] = ACTIONS(3186), @@ -426834,219 +420399,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3188), [sym__automatic_semicolon] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), [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), + [3739] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), [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_LBRACK] = ACTIONS(7043), [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3131), + [anon_sym_DASH_EQ] = ACTIONS(3131), + [anon_sym_STAR_EQ] = ACTIONS(3131), + [anon_sym_SLASH_EQ] = ACTIONS(3131), + [anon_sym_PERCENT_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(7067), [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_interface] = ACTIONS(4335), - [anon_sym_enum] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [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), - [anon_sym_this] = ACTIONS(4335), - [anon_sym_super] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4337), - [sym_label] = ACTIONS(4335), - [anon_sym_for] = ACTIONS(4335), - [anon_sym_while] = ACTIONS(4335), - [anon_sym_do] = ACTIONS(4335), - [anon_sym_null] = ACTIONS(4335), - [anon_sym_if] = 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] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_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), - [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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4337), - }, - [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), + [3740] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3160), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [anon_sym_EQ] = ACTIONS(3160), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LPAREN] = ACTIONS(7049), [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_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), [anon_sym_in] = ACTIONS(3160), - [anon_sym_DOT_DOT] = ACTIONS(7053), - [anon_sym_QMARK_COLON] = ACTIONS(7055), + [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(7061), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_PLUS_EQ] = ACTIONS(3162), [anon_sym_DASH_EQ] = ACTIONS(3162), [anon_sym_STAR_EQ] = ACTIONS(3162), @@ -427061,14 +420545,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [3741] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [3742] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427076,80 +420722,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3743] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427157,323 +420803,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - }, - [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__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3744] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [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(7043), - [anon_sym_where] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3088), + [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(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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427481,80 +420884,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3745] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427562,161 +420965,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3746] = { + [sym_enum_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5818), + [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_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), }, - [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), + [3747] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [anon_sym_EQ] = ACTIONS(3117), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LPAREN] = ACTIONS(7049), [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7043), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), [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_COLON_COLON] = ACTIONS(7067), [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_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427725,79 +421128,79 @@ 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(3119), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3748] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -427805,323 +421208,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3749] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3167), [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_LBRACK] = ACTIONS(7043), [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), - }, - [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), - }, - [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3750] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3140), + [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(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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -428129,987 +421370,906 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3751] = { + [sym_function_body] = STATE(3435), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3752] = { + [sym__alpha_identifier] = ACTIONS(4728), + [anon_sym_AT] = ACTIONS(4730), + [anon_sym_COLON] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_DOT] = ACTIONS(4728), + [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_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_where] = 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), }, - [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), + [3753] = { + [sym__alpha_identifier] = ACTIONS(4453), + [anon_sym_AT] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4453), + [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_by] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4453), + [anon_sym_where] = 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), }, - [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(7125), - [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_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(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), - }, - [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_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(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), + [3754] = { + [sym__alpha_identifier] = ACTIONS(4577), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_DOT] = ACTIONS(4577), + [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_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), }, - [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), + [3755] = { + [sym__alpha_identifier] = ACTIONS(4519), + [anon_sym_AT] = ACTIONS(4521), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_RBRACE] = ACTIONS(4521), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4521), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_where] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4521), + [anon_sym_get] = ACTIONS(4519), + [anon_sym_set] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [sym_label] = ACTIONS(4521), + [anon_sym_in] = ACTIONS(4519), + [anon_sym_DOT_DOT] = ACTIONS(4521), + [anon_sym_QMARK_COLON] = ACTIONS(4521), + [anon_sym_AMP_AMP] = ACTIONS(4521), + [anon_sym_PIPE_PIPE] = ACTIONS(4521), + [anon_sym_else] = ACTIONS(4519), + [anon_sym_COLON_COLON] = ACTIONS(4521), + [anon_sym_PLUS_EQ] = ACTIONS(4521), + [anon_sym_DASH_EQ] = ACTIONS(4521), + [anon_sym_STAR_EQ] = ACTIONS(4521), + [anon_sym_SLASH_EQ] = ACTIONS(4521), + [anon_sym_PERCENT_EQ] = ACTIONS(4521), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4521), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4521), + [anon_sym_LT_EQ] = ACTIONS(4521), + [anon_sym_GT_EQ] = ACTIONS(4521), + [anon_sym_BANGin] = ACTIONS(4521), + [anon_sym_is] = ACTIONS(4519), + [anon_sym_BANGis] = ACTIONS(4521), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_as_QMARK] = ACTIONS(4521), + [anon_sym_PLUS_PLUS] = ACTIONS(4521), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_BANG_BANG] = ACTIONS(4521), + [anon_sym_suspend] = ACTIONS(4519), + [anon_sym_sealed] = ACTIONS(4519), + [anon_sym_annotation] = ACTIONS(4519), + [anon_sym_data] = ACTIONS(4519), + [anon_sym_inner] = ACTIONS(4519), + [anon_sym_value] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_lateinit] = ACTIONS(4519), + [anon_sym_public] = ACTIONS(4519), + [anon_sym_private] = ACTIONS(4519), + [anon_sym_internal] = ACTIONS(4519), + [anon_sym_protected] = ACTIONS(4519), + [anon_sym_tailrec] = ACTIONS(4519), + [anon_sym_operator] = ACTIONS(4519), + [anon_sym_infix] = ACTIONS(4519), + [anon_sym_inline] = ACTIONS(4519), + [anon_sym_external] = ACTIONS(4519), + [sym_property_modifier] = ACTIONS(4519), + [anon_sym_abstract] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_open] = ACTIONS(4519), + [anon_sym_vararg] = ACTIONS(4519), + [anon_sym_noinline] = ACTIONS(4519), + [anon_sym_crossinline] = ACTIONS(4519), + [anon_sym_expect] = ACTIONS(4519), + [anon_sym_actual] = ACTIONS(4519), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4521), + [sym__automatic_semicolon] = ACTIONS(4521), + [sym_safe_nav] = ACTIONS(4521), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3756] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3757] = { + [sym__alpha_identifier] = ACTIONS(4511), + [anon_sym_AT] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4511), + [anon_sym_as] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_by] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_where] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4513), + [anon_sym_get] = ACTIONS(4511), + [anon_sym_set] = ACTIONS(4511), + [anon_sym_STAR] = ACTIONS(4511), + [sym_label] = ACTIONS(4513), + [anon_sym_in] = ACTIONS(4511), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_QMARK_COLON] = ACTIONS(4513), + [anon_sym_AMP_AMP] = ACTIONS(4513), + [anon_sym_PIPE_PIPE] = ACTIONS(4513), + [anon_sym_else] = ACTIONS(4511), + [anon_sym_COLON_COLON] = ACTIONS(4513), + [anon_sym_PLUS_EQ] = ACTIONS(4513), + [anon_sym_DASH_EQ] = ACTIONS(4513), + [anon_sym_STAR_EQ] = ACTIONS(4513), + [anon_sym_SLASH_EQ] = ACTIONS(4513), + [anon_sym_PERCENT_EQ] = ACTIONS(4513), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4513), + [anon_sym_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4513), + [anon_sym_LT_EQ] = ACTIONS(4513), + [anon_sym_GT_EQ] = ACTIONS(4513), + [anon_sym_BANGin] = ACTIONS(4513), + [anon_sym_is] = ACTIONS(4511), + [anon_sym_BANGis] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4511), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_as_QMARK] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_BANG_BANG] = ACTIONS(4513), + [anon_sym_suspend] = ACTIONS(4511), + [anon_sym_sealed] = ACTIONS(4511), + [anon_sym_annotation] = ACTIONS(4511), + [anon_sym_data] = ACTIONS(4511), + [anon_sym_inner] = ACTIONS(4511), + [anon_sym_value] = ACTIONS(4511), + [anon_sym_override] = ACTIONS(4511), + [anon_sym_lateinit] = ACTIONS(4511), + [anon_sym_public] = ACTIONS(4511), + [anon_sym_private] = ACTIONS(4511), + [anon_sym_internal] = ACTIONS(4511), + [anon_sym_protected] = ACTIONS(4511), + [anon_sym_tailrec] = ACTIONS(4511), + [anon_sym_operator] = ACTIONS(4511), + [anon_sym_infix] = ACTIONS(4511), + [anon_sym_inline] = ACTIONS(4511), + [anon_sym_external] = ACTIONS(4511), + [sym_property_modifier] = ACTIONS(4511), + [anon_sym_abstract] = ACTIONS(4511), + [anon_sym_final] = ACTIONS(4511), + [anon_sym_open] = ACTIONS(4511), + [anon_sym_vararg] = ACTIONS(4511), + [anon_sym_noinline] = ACTIONS(4511), + [anon_sym_crossinline] = ACTIONS(4511), + [anon_sym_expect] = ACTIONS(4511), + [anon_sym_actual] = ACTIONS(4511), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4513), + [sym__automatic_semicolon] = ACTIONS(4513), + [sym_safe_nav] = ACTIONS(4513), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3758] = { + [sym__alpha_identifier] = ACTIONS(4573), + [anon_sym_AT] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_as] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_RBRACE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_by] = ACTIONS(4573), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4573), + [anon_sym_where] = ACTIONS(4573), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4573), + [anon_sym_set] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4573), + [sym_label] = ACTIONS(4575), + [anon_sym_in] = ACTIONS(4573), + [anon_sym_DOT_DOT] = ACTIONS(4575), + [anon_sym_QMARK_COLON] = ACTIONS(4575), + [anon_sym_AMP_AMP] = ACTIONS(4575), + [anon_sym_PIPE_PIPE] = ACTIONS(4575), + [anon_sym_else] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4575), + [anon_sym_PLUS_EQ] = ACTIONS(4575), + [anon_sym_DASH_EQ] = ACTIONS(4575), + [anon_sym_STAR_EQ] = ACTIONS(4575), + [anon_sym_SLASH_EQ] = ACTIONS(4575), + [anon_sym_PERCENT_EQ] = ACTIONS(4575), + [anon_sym_BANG_EQ] = ACTIONS(4573), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4575), + [anon_sym_EQ_EQ] = ACTIONS(4573), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4575), + [anon_sym_LT_EQ] = ACTIONS(4575), + [anon_sym_GT_EQ] = ACTIONS(4575), + [anon_sym_BANGin] = ACTIONS(4575), + [anon_sym_is] = ACTIONS(4573), + [anon_sym_BANGis] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_SLASH] = ACTIONS(4573), + [anon_sym_PERCENT] = ACTIONS(4573), + [anon_sym_as_QMARK] = ACTIONS(4575), + [anon_sym_PLUS_PLUS] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4575), + [anon_sym_BANG_BANG] = ACTIONS(4575), + [anon_sym_suspend] = ACTIONS(4573), + [anon_sym_sealed] = ACTIONS(4573), + [anon_sym_annotation] = ACTIONS(4573), + [anon_sym_data] = ACTIONS(4573), + [anon_sym_inner] = ACTIONS(4573), + [anon_sym_value] = ACTIONS(4573), + [anon_sym_override] = ACTIONS(4573), + [anon_sym_lateinit] = ACTIONS(4573), + [anon_sym_public] = ACTIONS(4573), + [anon_sym_private] = ACTIONS(4573), + [anon_sym_internal] = ACTIONS(4573), + [anon_sym_protected] = ACTIONS(4573), + [anon_sym_tailrec] = ACTIONS(4573), + [anon_sym_operator] = ACTIONS(4573), + [anon_sym_infix] = ACTIONS(4573), + [anon_sym_inline] = ACTIONS(4573), + [anon_sym_external] = ACTIONS(4573), + [sym_property_modifier] = ACTIONS(4573), + [anon_sym_abstract] = ACTIONS(4573), + [anon_sym_final] = ACTIONS(4573), + [anon_sym_open] = ACTIONS(4573), + [anon_sym_vararg] = ACTIONS(4573), + [anon_sym_noinline] = ACTIONS(4573), + [anon_sym_crossinline] = ACTIONS(4573), + [anon_sym_expect] = ACTIONS(4573), + [anon_sym_actual] = ACTIONS(4573), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4575), + [sym__automatic_semicolon] = ACTIONS(4575), + [sym_safe_nav] = ACTIONS(4575), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3759] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3760] = { + [sym__alpha_identifier] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_constructor] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4371), + [anon_sym_object] = ACTIONS(4371), + [anon_sym_fun] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4371), + [anon_sym_set] = ACTIONS(4371), + [anon_sym_this] = ACTIONS(4371), + [anon_sym_super] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4371), + [anon_sym_in] = ACTIONS(4371), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_else] = ACTIONS(4371), + [anon_sym_when] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_BANGin] = ACTIONS(4373), + [anon_sym_is] = ACTIONS(4371), + [anon_sym_BANGis] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4371), + [anon_sym_suspend] = ACTIONS(4371), + [anon_sym_sealed] = ACTIONS(4371), + [anon_sym_annotation] = ACTIONS(4371), + [anon_sym_data] = ACTIONS(4371), + [anon_sym_inner] = ACTIONS(4371), + [anon_sym_value] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_lateinit] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_internal] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_tailrec] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_infix] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym_external] = ACTIONS(4371), + [sym_property_modifier] = ACTIONS(4371), + [anon_sym_abstract] = ACTIONS(4371), + [anon_sym_final] = ACTIONS(4371), + [anon_sym_open] = ACTIONS(4371), + [anon_sym_vararg] = ACTIONS(4371), + [anon_sym_noinline] = ACTIONS(4371), + [anon_sym_crossinline] = ACTIONS(4371), + [anon_sym_expect] = ACTIONS(4371), + [anon_sym_actual] = ACTIONS(4371), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4373), + [anon_sym_continue_AT] = ACTIONS(4373), + [anon_sym_break_AT] = ACTIONS(4373), + [anon_sym_this_AT] = ACTIONS(4373), + [anon_sym_super_AT] = ACTIONS(4373), + [sym_real_literal] = ACTIONS(4373), + [sym_integer_literal] = ACTIONS(4371), + [sym_hex_literal] = ACTIONS(4373), + [sym_bin_literal] = ACTIONS(4373), + [anon_sym_true] = ACTIONS(4371), + [anon_sym_false] = ACTIONS(4371), + [anon_sym_SQUOTE] = ACTIONS(4373), + [sym__backtick_identifier] = ACTIONS(4373), + [sym__automatic_semicolon] = ACTIONS(4373), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4373), }, - [3805] = { + [3761] = { + [sym__alpha_identifier] = ACTIONS(4661), + [anon_sym_AT] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_as] = ACTIONS(4661), + [anon_sym_EQ] = ACTIONS(4661), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_get] = ACTIONS(4661), + [anon_sym_set] = ACTIONS(4661), + [anon_sym_STAR] = ACTIONS(4661), + [sym_label] = ACTIONS(4663), + [anon_sym_in] = ACTIONS(4661), + [anon_sym_DOT_DOT] = ACTIONS(4663), + [anon_sym_QMARK_COLON] = ACTIONS(4663), + [anon_sym_AMP_AMP] = ACTIONS(4663), + [anon_sym_PIPE_PIPE] = ACTIONS(4663), + [anon_sym_else] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4663), + [anon_sym_PLUS_EQ] = ACTIONS(4663), + [anon_sym_DASH_EQ] = ACTIONS(4663), + [anon_sym_STAR_EQ] = ACTIONS(4663), + [anon_sym_SLASH_EQ] = ACTIONS(4663), + [anon_sym_PERCENT_EQ] = ACTIONS(4663), + [anon_sym_BANG_EQ] = ACTIONS(4661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4663), + [anon_sym_EQ_EQ] = ACTIONS(4661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4663), + [anon_sym_LT_EQ] = ACTIONS(4663), + [anon_sym_GT_EQ] = ACTIONS(4663), + [anon_sym_BANGin] = ACTIONS(4663), + [anon_sym_is] = ACTIONS(4661), + [anon_sym_BANGis] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4661), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4661), + [anon_sym_PERCENT] = ACTIONS(4661), + [anon_sym_as_QMARK] = ACTIONS(4663), + [anon_sym_PLUS_PLUS] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4663), + [anon_sym_BANG_BANG] = ACTIONS(4663), + [anon_sym_suspend] = ACTIONS(4661), + [anon_sym_sealed] = ACTIONS(4661), + [anon_sym_annotation] = ACTIONS(4661), + [anon_sym_data] = ACTIONS(4661), + [anon_sym_inner] = ACTIONS(4661), + [anon_sym_value] = ACTIONS(4661), + [anon_sym_override] = ACTIONS(4661), + [anon_sym_lateinit] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4661), + [anon_sym_private] = ACTIONS(4661), + [anon_sym_internal] = ACTIONS(4661), + [anon_sym_protected] = ACTIONS(4661), + [anon_sym_tailrec] = ACTIONS(4661), + [anon_sym_operator] = ACTIONS(4661), + [anon_sym_infix] = ACTIONS(4661), + [anon_sym_inline] = ACTIONS(4661), + [anon_sym_external] = ACTIONS(4661), + [sym_property_modifier] = ACTIONS(4661), + [anon_sym_abstract] = ACTIONS(4661), + [anon_sym_final] = ACTIONS(4661), + [anon_sym_open] = ACTIONS(4661), + [anon_sym_vararg] = ACTIONS(4661), + [anon_sym_noinline] = ACTIONS(4661), + [anon_sym_crossinline] = ACTIONS(4661), + [anon_sym_expect] = ACTIONS(4661), + [anon_sym_actual] = ACTIONS(4661), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4663), + [sym__automatic_semicolon] = ACTIONS(4663), + [sym_safe_nav] = ACTIONS(4663), + [sym_multiline_comment] = ACTIONS(3), + }, + [3762] = { [sym__alpha_identifier] = ACTIONS(4581), [anon_sym_AT] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4581), [anon_sym_LBRACK] = ACTIONS(4583), + [anon_sym_DOT] = ACTIONS(4581), [anon_sym_as] = ACTIONS(4581), [anon_sym_EQ] = ACTIONS(4581), [anon_sym_LBRACE] = ACTIONS(4583), @@ -429119,7 +422279,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -429181,486 +422340,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4581), [anon_sym_actual] = ACTIONS(4581), [sym_line_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(7087), [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), + [3763] = { + [sym__alpha_identifier] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4249), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_typealias] = ACTIONS(4247), + [anon_sym_class] = ACTIONS(4247), + [anon_sym_interface] = ACTIONS(4247), + [anon_sym_enum] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_LPAREN] = ACTIONS(4249), + [anon_sym_val] = ACTIONS(4247), + [anon_sym_var] = ACTIONS(4247), + [anon_sym_object] = ACTIONS(4247), + [anon_sym_fun] = ACTIONS(4247), + [anon_sym_get] = ACTIONS(4247), + [anon_sym_set] = ACTIONS(4247), + [anon_sym_this] = ACTIONS(4247), + [anon_sym_super] = ACTIONS(4247), + [anon_sym_STAR] = ACTIONS(4249), + [sym_label] = ACTIONS(4247), + [anon_sym_for] = ACTIONS(4247), + [anon_sym_while] = ACTIONS(4247), + [anon_sym_do] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4247), + [anon_sym_if] = 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] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_PLUS_PLUS] = ACTIONS(4249), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4249), }, - [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), + [3764] = { + [sym_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), [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), + [3765] = { + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [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), + [3766] = { + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3767] = { + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3768] = { + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3769] = { + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [3770] = { + [sym_enum_class_body] = STATE(3840), + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + }, + [3771] = { + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3103), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [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), + [3772] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [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), + [3773] = { + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [3774] = { + [sym_function_body] = STATE(3538), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = 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_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), + }, + [3775] = { + [sym_enum_class_body] = STATE(4014), + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + }, + [3776] = { + [sym_value_arguments] = STATE(3194), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [3777] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [anon_sym_EQ] = ACTIONS(3156), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LPAREN] = ACTIONS(7049), [anon_sym_COMMA] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7043), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), [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_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), [anon_sym_else] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_COLON_COLON] = ACTIONS(7067), [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_BANG_EQ] = ACTIONS(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -429669,256 +423558,338 @@ 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(3158), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), [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), + [3778] = { + [sym__alpha_identifier] = ACTIONS(4744), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_DOT] = ACTIONS(4744), + [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_by] = ACTIONS(4744), + [anon_sym_LT] = ACTIONS(4744), + [anon_sym_GT] = ACTIONS(4744), + [anon_sym_where] = 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), [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), + [3779] = { + [sym__alpha_identifier] = ACTIONS(4672), + [anon_sym_AT] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_as] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_by] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_where] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_get] = ACTIONS(4672), + [anon_sym_set] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [sym_label] = ACTIONS(4674), + [anon_sym_in] = ACTIONS(4672), + [anon_sym_DOT_DOT] = ACTIONS(4674), + [anon_sym_QMARK_COLON] = ACTIONS(4674), + [anon_sym_AMP_AMP] = ACTIONS(4674), + [anon_sym_PIPE_PIPE] = ACTIONS(4674), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_PLUS_EQ] = ACTIONS(4674), + [anon_sym_DASH_EQ] = ACTIONS(4674), + [anon_sym_STAR_EQ] = ACTIONS(4674), + [anon_sym_SLASH_EQ] = ACTIONS(4674), + [anon_sym_PERCENT_EQ] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4672), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), + [anon_sym_EQ_EQ] = ACTIONS(4672), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), + [anon_sym_LT_EQ] = ACTIONS(4674), + [anon_sym_GT_EQ] = ACTIONS(4674), + [anon_sym_BANGin] = ACTIONS(4674), + [anon_sym_is] = ACTIONS(4672), + [anon_sym_BANGis] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_as_QMARK] = ACTIONS(4674), + [anon_sym_PLUS_PLUS] = ACTIONS(4674), + [anon_sym_DASH_DASH] = ACTIONS(4674), + [anon_sym_BANG_BANG] = ACTIONS(4674), + [anon_sym_suspend] = ACTIONS(4672), + [anon_sym_sealed] = ACTIONS(4672), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_data] = ACTIONS(4672), + [anon_sym_inner] = ACTIONS(4672), + [anon_sym_value] = ACTIONS(4672), + [anon_sym_override] = ACTIONS(4672), + [anon_sym_lateinit] = ACTIONS(4672), + [anon_sym_public] = ACTIONS(4672), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_internal] = ACTIONS(4672), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_tailrec] = ACTIONS(4672), + [anon_sym_operator] = ACTIONS(4672), + [anon_sym_infix] = ACTIONS(4672), + [anon_sym_inline] = ACTIONS(4672), + [anon_sym_external] = ACTIONS(4672), + [sym_property_modifier] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_final] = ACTIONS(4672), + [anon_sym_open] = ACTIONS(4672), + [anon_sym_vararg] = ACTIONS(4672), + [anon_sym_noinline] = ACTIONS(4672), + [anon_sym_crossinline] = ACTIONS(4672), + [anon_sym_expect] = ACTIONS(4672), + [anon_sym_actual] = ACTIONS(4672), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4674), + [sym__automatic_semicolon] = ACTIONS(4674), + [sym_safe_nav] = ACTIONS(4674), [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), + [3780] = { + [sym__alpha_identifier] = ACTIONS(4748), + [anon_sym_AT] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4748), + [anon_sym_as] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_by] = ACTIONS(4748), + [anon_sym_LT] = ACTIONS(4748), + [anon_sym_GT] = ACTIONS(4748), + [anon_sym_where] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_get] = ACTIONS(4748), + [anon_sym_set] = ACTIONS(4748), + [anon_sym_STAR] = ACTIONS(4748), + [sym_label] = ACTIONS(4751), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4751), + [anon_sym_QMARK_COLON] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_COLON_COLON] = ACTIONS(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4748), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4748), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_BANGin] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4748), + [anon_sym_BANGis] = ACTIONS(4751), + [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(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_BANG_BANG] = ACTIONS(4751), + [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(4751), + [sym__automatic_semicolon] = ACTIONS(4751), + [sym_safe_nav] = ACTIONS(4751), + [sym_multiline_comment] = ACTIONS(3), }, - [3815] = { + [3781] = { + [sym__alpha_identifier] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_as] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_LPAREN] = ACTIONS(4696), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4694), + [anon_sym_GT] = ACTIONS(4694), + [anon_sym_where] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4694), + [anon_sym_set] = ACTIONS(4694), + [anon_sym_STAR] = ACTIONS(4694), + [sym_label] = ACTIONS(4696), + [anon_sym_in] = ACTIONS(4694), + [anon_sym_DOT_DOT] = ACTIONS(4696), + [anon_sym_QMARK_COLON] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_PLUS_EQ] = ACTIONS(4696), + [anon_sym_DASH_EQ] = ACTIONS(4696), + [anon_sym_STAR_EQ] = ACTIONS(4696), + [anon_sym_SLASH_EQ] = ACTIONS(4696), + [anon_sym_PERCENT_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ] = ACTIONS(4694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ] = ACTIONS(4694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_BANGin] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_BANGis] = ACTIONS(4696), + [anon_sym_PLUS] = ACTIONS(4694), + [anon_sym_DASH] = ACTIONS(4694), + [anon_sym_SLASH] = ACTIONS(4694), + [anon_sym_PERCENT] = ACTIONS(4694), + [anon_sym_as_QMARK] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_BANG_BANG] = ACTIONS(4696), + [anon_sym_suspend] = ACTIONS(4694), + [anon_sym_sealed] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4694), + [anon_sym_data] = ACTIONS(4694), + [anon_sym_inner] = ACTIONS(4694), + [anon_sym_value] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_lateinit] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4694), + [anon_sym_tailrec] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_external] = ACTIONS(4694), + [sym_property_modifier] = ACTIONS(4694), + [anon_sym_abstract] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_vararg] = ACTIONS(4694), + [anon_sym_noinline] = ACTIONS(4694), + [anon_sym_crossinline] = ACTIONS(4694), + [anon_sym_expect] = ACTIONS(4694), + [anon_sym_actual] = ACTIONS(4694), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4696), + [sym__automatic_semicolon] = ACTIONS(4696), + [sym_safe_nav] = ACTIONS(4696), + [sym_multiline_comment] = ACTIONS(3), + }, + [3782] = { [sym__alpha_identifier] = ACTIONS(4732), [anon_sym_AT] = ACTIONS(4734), [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), [anon_sym_as] = ACTIONS(4732), [anon_sym_EQ] = ACTIONS(4732), [anon_sym_LBRACE] = ACTIONS(4734), @@ -429929,7 +423900,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -429996,680 +423966,2306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3783] = { + [sym__alpha_identifier] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_typealias] = ACTIONS(4263), + [anon_sym_class] = ACTIONS(4263), + [anon_sym_interface] = ACTIONS(4263), + [anon_sym_enum] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_LPAREN] = ACTIONS(4265), + [anon_sym_val] = ACTIONS(4263), + [anon_sym_var] = ACTIONS(4263), + [anon_sym_object] = ACTIONS(4263), + [anon_sym_fun] = ACTIONS(4263), + [anon_sym_get] = ACTIONS(4263), + [anon_sym_set] = ACTIONS(4263), + [anon_sym_this] = ACTIONS(4263), + [anon_sym_super] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4265), + [sym_label] = ACTIONS(4263), + [anon_sym_for] = ACTIONS(4263), + [anon_sym_while] = ACTIONS(4263), + [anon_sym_do] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_when] = ACTIONS(4263), + [anon_sym_try] = ACTIONS(4263), + [anon_sym_throw] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_PLUS_PLUS] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_BANG] = ACTIONS(4265), + [anon_sym_suspend] = ACTIONS(4263), + [anon_sym_sealed] = ACTIONS(4263), + [anon_sym_annotation] = ACTIONS(4263), + [anon_sym_data] = ACTIONS(4263), + [anon_sym_inner] = ACTIONS(4263), + [anon_sym_value] = ACTIONS(4263), + [anon_sym_override] = ACTIONS(4263), + [anon_sym_lateinit] = ACTIONS(4263), + [anon_sym_public] = ACTIONS(4263), + [anon_sym_private] = ACTIONS(4263), + [anon_sym_internal] = ACTIONS(4263), + [anon_sym_protected] = ACTIONS(4263), + [anon_sym_tailrec] = ACTIONS(4263), + [anon_sym_operator] = ACTIONS(4263), + [anon_sym_infix] = ACTIONS(4263), + [anon_sym_inline] = ACTIONS(4263), + [anon_sym_external] = ACTIONS(4263), + [sym_property_modifier] = ACTIONS(4263), + [anon_sym_abstract] = ACTIONS(4263), + [anon_sym_final] = ACTIONS(4263), + [anon_sym_open] = ACTIONS(4263), + [anon_sym_vararg] = ACTIONS(4263), + [anon_sym_noinline] = ACTIONS(4263), + [anon_sym_crossinline] = ACTIONS(4263), + [anon_sym_expect] = ACTIONS(4263), + [anon_sym_actual] = ACTIONS(4263), + [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(4263), + [sym_hex_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_SQUOTE] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4265), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4265), }, - [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), + [3784] = { + [sym_class_body] = STATE(4032), + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), [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), + [3785] = { + [sym_function_body] = STATE(3202), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = ACTIONS(4216), + [anon_sym_object] = ACTIONS(4216), + [anon_sym_fun] = 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), }, - [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), + [3786] = { + [sym_enum_class_body] = STATE(3849), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), + [sym_multiline_comment] = ACTIONS(3), + }, + [3787] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(7095), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [3788] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1952), + [sym__in_operator] = STATE(1946), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1954), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1957), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7051), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7053), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7057), + [anon_sym_DOT_DOT] = ACTIONS(7059), + [anon_sym_QMARK_COLON] = ACTIONS(7061), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE_PIPE] = ACTIONS(7065), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7071), + [anon_sym_EQ_EQ] = ACTIONS(7069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7071), + [anon_sym_LT_EQ] = ACTIONS(7073), + [anon_sym_GT_EQ] = ACTIONS(7073), + [anon_sym_BANGin] = ACTIONS(7075), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(3096), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [3789] = { + [sym__alpha_identifier] = ACTIONS(4736), + [anon_sym_AT] = ACTIONS(4738), + [anon_sym_LBRACK] = ACTIONS(4738), + [anon_sym_DOT] = 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_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_where] = 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(4738), + [sym__automatic_semicolon] = ACTIONS(4738), + [sym_safe_nav] = ACTIONS(4738), + [sym_multiline_comment] = ACTIONS(3), + }, + [3790] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4721), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_as] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4721), + [anon_sym_RBRACE] = ACTIONS(4721), + [anon_sym_LPAREN] = ACTIONS(4721), + [anon_sym_COMMA] = ACTIONS(4721), + [anon_sym_by] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4718), + [anon_sym_GT] = ACTIONS(4718), + [anon_sym_where] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4721), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4721), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4721), + [anon_sym_QMARK_COLON] = ACTIONS(4721), + [anon_sym_AMP_AMP] = ACTIONS(4721), + [anon_sym_PIPE_PIPE] = ACTIONS(4721), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4721), + [anon_sym_PLUS_EQ] = ACTIONS(4721), + [anon_sym_DASH_EQ] = ACTIONS(4721), + [anon_sym_STAR_EQ] = ACTIONS(4721), + [anon_sym_SLASH_EQ] = ACTIONS(4721), + [anon_sym_PERCENT_EQ] = ACTIONS(4721), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4721), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4721), + [anon_sym_LT_EQ] = ACTIONS(4721), + [anon_sym_GT_EQ] = ACTIONS(4721), + [anon_sym_BANGin] = ACTIONS(4721), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4721), + [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(4721), + [anon_sym_PLUS_PLUS] = ACTIONS(4721), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_BANG_BANG] = ACTIONS(4721), + [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(4721), + [sym__automatic_semicolon] = ACTIONS(4721), + [sym_safe_nav] = ACTIONS(4721), + [sym_multiline_comment] = ACTIONS(3), + }, + [3791] = { + [ts_builtin_sym_end] = ACTIONS(1435), + [sym__alpha_identifier] = ACTIONS(7097), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_typealias] = ACTIONS(7097), + [anon_sym_class] = ACTIONS(7097), + [anon_sym_interface] = ACTIONS(7097), + [anon_sym_enum] = ACTIONS(7097), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_val] = ACTIONS(7097), + [anon_sym_var] = ACTIONS(7097), + [anon_sym_object] = ACTIONS(7097), + [anon_sym_fun] = ACTIONS(7097), + [anon_sym_get] = ACTIONS(7097), + [anon_sym_set] = ACTIONS(7097), + [anon_sym_this] = ACTIONS(7097), + [anon_sym_super] = ACTIONS(7097), + [anon_sym_STAR] = ACTIONS(1435), + [sym_label] = ACTIONS(7097), + [anon_sym_for] = ACTIONS(7097), + [anon_sym_while] = ACTIONS(7097), + [anon_sym_do] = ACTIONS(7097), + [anon_sym_null] = ACTIONS(7097), + [anon_sym_if] = ACTIONS(7097), + [anon_sym_when] = ACTIONS(7097), + [anon_sym_try] = ACTIONS(7097), + [anon_sym_throw] = ACTIONS(7097), + [anon_sym_return] = ACTIONS(7097), + [anon_sym_continue] = ACTIONS(7097), + [anon_sym_break] = ACTIONS(7097), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_suspend] = ACTIONS(7097), + [anon_sym_sealed] = ACTIONS(7097), + [anon_sym_annotation] = ACTIONS(7097), + [anon_sym_data] = ACTIONS(7097), + [anon_sym_inner] = ACTIONS(7097), + [anon_sym_value] = ACTIONS(7097), + [anon_sym_override] = ACTIONS(7097), + [anon_sym_lateinit] = ACTIONS(7097), + [anon_sym_public] = ACTIONS(7097), + [anon_sym_private] = ACTIONS(7097), + [anon_sym_internal] = ACTIONS(7097), + [anon_sym_protected] = ACTIONS(7097), + [anon_sym_tailrec] = ACTIONS(7097), + [anon_sym_operator] = ACTIONS(7097), + [anon_sym_infix] = ACTIONS(7097), + [anon_sym_inline] = ACTIONS(7097), + [anon_sym_external] = ACTIONS(7097), + [sym_property_modifier] = ACTIONS(7097), + [anon_sym_abstract] = ACTIONS(7097), + [anon_sym_final] = ACTIONS(7097), + [anon_sym_open] = ACTIONS(7097), + [anon_sym_vararg] = ACTIONS(7097), + [anon_sym_noinline] = ACTIONS(7097), + [anon_sym_crossinline] = ACTIONS(7097), + [anon_sym_expect] = ACTIONS(7097), + [anon_sym_actual] = ACTIONS(7097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1435), + [anon_sym_continue_AT] = ACTIONS(1435), + [anon_sym_break_AT] = ACTIONS(1435), + [anon_sym_this_AT] = ACTIONS(1435), + [anon_sym_super_AT] = ACTIONS(1435), + [sym_real_literal] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(7097), + [sym_hex_literal] = ACTIONS(1435), + [sym_bin_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(7097), + [anon_sym_false] = ACTIONS(7097), + [anon_sym_SQUOTE] = ACTIONS(1435), + [sym__backtick_identifier] = ACTIONS(1435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1435), + }, + [3792] = { + [sym_class_body] = STATE(3982), + [sym__alpha_identifier] = ACTIONS(4724), + [anon_sym_AT] = ACTIONS(4726), + [anon_sym_LBRACK] = ACTIONS(4726), + [anon_sym_DOT] = ACTIONS(4724), + [anon_sym_as] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_where] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_get] = ACTIONS(4724), + [anon_sym_set] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4724), + [anon_sym_DOT_DOT] = ACTIONS(4726), + [anon_sym_QMARK_COLON] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4724), + [anon_sym_COLON_COLON] = ACTIONS(4726), + [anon_sym_PLUS_EQ] = ACTIONS(4726), + [anon_sym_DASH_EQ] = ACTIONS(4726), + [anon_sym_STAR_EQ] = ACTIONS(4726), + [anon_sym_SLASH_EQ] = ACTIONS(4726), + [anon_sym_PERCENT_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), + [anon_sym_LT_EQ] = ACTIONS(4726), + [anon_sym_GT_EQ] = ACTIONS(4726), + [anon_sym_BANGin] = ACTIONS(4726), + [anon_sym_is] = ACTIONS(4724), + [anon_sym_BANGis] = ACTIONS(4726), + [anon_sym_PLUS] = ACTIONS(4724), + [anon_sym_DASH] = ACTIONS(4724), + [anon_sym_SLASH] = ACTIONS(4724), + [anon_sym_PERCENT] = ACTIONS(4724), + [anon_sym_as_QMARK] = ACTIONS(4726), + [anon_sym_PLUS_PLUS] = ACTIONS(4726), + [anon_sym_DASH_DASH] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4726), + [anon_sym_suspend] = ACTIONS(4724), + [anon_sym_sealed] = ACTIONS(4724), + [anon_sym_annotation] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4724), + [anon_sym_inner] = ACTIONS(4724), + [anon_sym_value] = ACTIONS(4724), + [anon_sym_override] = ACTIONS(4724), + [anon_sym_lateinit] = ACTIONS(4724), + [anon_sym_public] = ACTIONS(4724), + [anon_sym_private] = ACTIONS(4724), + [anon_sym_internal] = ACTIONS(4724), + [anon_sym_protected] = ACTIONS(4724), + [anon_sym_tailrec] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4724), + [anon_sym_infix] = ACTIONS(4724), + [anon_sym_inline] = ACTIONS(4724), + [anon_sym_external] = ACTIONS(4724), + [sym_property_modifier] = ACTIONS(4724), + [anon_sym_abstract] = ACTIONS(4724), + [anon_sym_final] = ACTIONS(4724), + [anon_sym_open] = ACTIONS(4724), + [anon_sym_vararg] = ACTIONS(4724), + [anon_sym_noinline] = ACTIONS(4724), + [anon_sym_crossinline] = ACTIONS(4724), + [anon_sym_expect] = ACTIONS(4724), + [anon_sym_actual] = ACTIONS(4724), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4726), + [sym__automatic_semicolon] = ACTIONS(4726), + [sym_safe_nav] = ACTIONS(4726), + [sym_multiline_comment] = ACTIONS(3), + }, + [3793] = { + [sym_enum_class_body] = STATE(3963), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [3794] = { + [sym_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3795] = { + [sym__alpha_identifier] = ACTIONS(4762), + [anon_sym_AT] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4762), + [anon_sym_as] = ACTIONS(4762), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_LT] = ACTIONS(4762), + [anon_sym_GT] = ACTIONS(4762), + [anon_sym_where] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_get] = ACTIONS(4762), + [anon_sym_set] = ACTIONS(4762), + [anon_sym_STAR] = ACTIONS(4762), + [sym_label] = ACTIONS(4764), + [anon_sym_in] = ACTIONS(4762), + [anon_sym_DOT_DOT] = ACTIONS(4764), + [anon_sym_QMARK_COLON] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_else] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), + [anon_sym_EQ_EQ] = ACTIONS(4762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(4762), + [anon_sym_BANGis] = ACTIONS(4764), + [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(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_BANG_BANG] = ACTIONS(4764), + [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_AT2] = ACTIONS(7099), + [sym__backtick_identifier] = ACTIONS(4764), + [sym__automatic_semicolon] = ACTIONS(4764), + [sym_safe_nav] = ACTIONS(4764), + [sym_multiline_comment] = ACTIONS(3), + }, + [3796] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [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_by] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = 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), + }, + [3797] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3797), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + }, + [3798] = { + [sym_class_body] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_while] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + }, + [3799] = { + [sym_function_body] = STATE(3117), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_object] = ACTIONS(4329), + [anon_sym_fun] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_this] = ACTIONS(4329), + [anon_sym_super] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4329), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_null] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_when] = ACTIONS(4329), + [anon_sym_try] = ACTIONS(4329), + [anon_sym_throw] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4331), + [anon_sym_continue_AT] = ACTIONS(4331), + [anon_sym_break_AT] = ACTIONS(4331), + [anon_sym_this_AT] = ACTIONS(4331), + [anon_sym_super_AT] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4331), + [sym_integer_literal] = ACTIONS(4329), + [sym_hex_literal] = ACTIONS(4331), + [sym_bin_literal] = ACTIONS(4331), + [anon_sym_true] = ACTIONS(4329), + [anon_sym_false] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4331), + }, + [3800] = { + [sym__alpha_identifier] = ACTIONS(4740), + [anon_sym_AT] = ACTIONS(4742), + [anon_sym_LBRACK] = ACTIONS(4742), + [anon_sym_DOT] = ACTIONS(4740), + [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_by] = ACTIONS(4740), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_where] = 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), + }, + [3801] = { + [sym__alpha_identifier] = ACTIONS(4754), + [anon_sym_AT] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DOT] = ACTIONS(4754), + [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_by] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_GT] = ACTIONS(4754), + [anon_sym_where] = 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), + }, + [3802] = { + [sym_function_body] = STATE(3500), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7108), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_RBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [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_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), + }, + [3803] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_DASH_GT] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [3804] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3806), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), + [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(7112), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = 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(4206), - [sym__automatic_semicolon] = ACTIONS(4206), - [sym_safe_nav] = ACTIONS(4206), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [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), + [3805] = { + [sym_class_body] = STATE(3548), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7114), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_while] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), [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), + [3806] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3797), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(7112), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), [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), + [3807] = { + [sym_class_body] = STATE(3849), + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), [sym_multiline_comment] = ACTIONS(3), }, - [3823] = { - [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(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), + [3808] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7022), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [3824] = { + [3809] = { + [sym_value_arguments] = STATE(4012), + [sym__alpha_identifier] = ACTIONS(7116), + [anon_sym_AT] = ACTIONS(7118), + [anon_sym_LBRACK] = ACTIONS(7118), + [anon_sym_typealias] = ACTIONS(7116), + [anon_sym_class] = ACTIONS(7116), + [anon_sym_interface] = ACTIONS(7116), + [anon_sym_enum] = ACTIONS(7116), + [anon_sym_LBRACE] = ACTIONS(7118), + [anon_sym_LPAREN] = ACTIONS(7120), + [anon_sym_val] = ACTIONS(7116), + [anon_sym_var] = ACTIONS(7116), + [anon_sym_object] = ACTIONS(7116), + [anon_sym_fun] = ACTIONS(7116), + [anon_sym_get] = ACTIONS(7116), + [anon_sym_set] = ACTIONS(7116), + [anon_sym_this] = ACTIONS(7116), + [anon_sym_super] = ACTIONS(7116), + [anon_sym_STAR] = ACTIONS(7118), + [sym_label] = ACTIONS(7116), + [anon_sym_for] = ACTIONS(7116), + [anon_sym_while] = ACTIONS(7116), + [anon_sym_do] = ACTIONS(7116), + [anon_sym_null] = ACTIONS(7116), + [anon_sym_if] = ACTIONS(7116), + [anon_sym_when] = ACTIONS(7116), + [anon_sym_try] = ACTIONS(7116), + [anon_sym_throw] = ACTIONS(7116), + [anon_sym_return] = ACTIONS(7116), + [anon_sym_continue] = ACTIONS(7116), + [anon_sym_break] = ACTIONS(7116), + [anon_sym_COLON_COLON] = ACTIONS(7118), + [anon_sym_PLUS] = ACTIONS(7116), + [anon_sym_DASH] = ACTIONS(7116), + [anon_sym_PLUS_PLUS] = ACTIONS(7118), + [anon_sym_DASH_DASH] = ACTIONS(7118), + [anon_sym_BANG] = ACTIONS(7118), + [anon_sym_suspend] = ACTIONS(7116), + [anon_sym_sealed] = ACTIONS(7116), + [anon_sym_annotation] = ACTIONS(7116), + [anon_sym_data] = ACTIONS(7116), + [anon_sym_inner] = ACTIONS(7116), + [anon_sym_value] = ACTIONS(7116), + [anon_sym_override] = ACTIONS(7116), + [anon_sym_lateinit] = ACTIONS(7116), + [anon_sym_public] = ACTIONS(7116), + [anon_sym_private] = ACTIONS(7116), + [anon_sym_internal] = ACTIONS(7116), + [anon_sym_protected] = ACTIONS(7116), + [anon_sym_tailrec] = ACTIONS(7116), + [anon_sym_operator] = ACTIONS(7116), + [anon_sym_infix] = ACTIONS(7116), + [anon_sym_inline] = ACTIONS(7116), + [anon_sym_external] = ACTIONS(7116), + [sym_property_modifier] = ACTIONS(7116), + [anon_sym_abstract] = ACTIONS(7116), + [anon_sym_final] = ACTIONS(7116), + [anon_sym_open] = ACTIONS(7116), + [anon_sym_vararg] = ACTIONS(7116), + [anon_sym_noinline] = ACTIONS(7116), + [anon_sym_crossinline] = ACTIONS(7116), + [anon_sym_expect] = ACTIONS(7116), + [anon_sym_actual] = ACTIONS(7116), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7118), + [anon_sym_continue_AT] = ACTIONS(7118), + [anon_sym_break_AT] = ACTIONS(7118), + [anon_sym_this_AT] = ACTIONS(7118), + [anon_sym_super_AT] = ACTIONS(7118), + [sym_real_literal] = ACTIONS(7118), + [sym_integer_literal] = ACTIONS(7116), + [sym_hex_literal] = ACTIONS(7118), + [sym_bin_literal] = ACTIONS(7118), + [anon_sym_true] = ACTIONS(7116), + [anon_sym_false] = ACTIONS(7116), + [anon_sym_SQUOTE] = ACTIONS(7118), + [sym__backtick_identifier] = ACTIONS(7118), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7118), + }, + [3810] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(2971), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), + }, + [3811] = { + [sym_class_body] = STATE(3211), + [sym_type_constraints] = STATE(3059), [sym__alpha_identifier] = ACTIONS(4317), [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7123), [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_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4319), [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_val] = ACTIONS(4317), - [anon_sym_var] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(3216), [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_STAR] = ACTIONS(4319), [sym_label] = ACTIONS(4317), - [anon_sym_for] = ACTIONS(4317), - [anon_sym_while] = ACTIONS(4317), - [anon_sym_do] = 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), @@ -430677,35 +426273,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(4317), [anon_sym_break] = ACTIONS(4317), [anon_sym_COLON_COLON] = 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(4319), + [anon_sym_as_QMARK] = ACTIONS(4319), [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_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_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), @@ -430722,3376 +426310,2192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), - }, - [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), - }, - [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_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), - }, - [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(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__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(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(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__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__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), + [3812] = { + [sym_type_constraints] = STATE(3048), + [sym_enum_class_body] = STATE(3220), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = 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_fun] = 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), }, - [3850] = { - [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), + [3813] = { + [sym_function_body] = STATE(3855), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_COLON] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_as] = ACTIONS(4216), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym_LT] = ACTIONS(4216), + [anon_sym_GT] = 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(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(4218), + [sym__automatic_semicolon] = ACTIONS(4218), + [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [3851] = { - [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), + [3814] = { + [sym_class_body] = STATE(3220), + [sym_type_constraints] = STATE(2985), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3240), + [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_fun] = 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), }, - [3852] = { - [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), + [3815] = { + [sym_type_constraints] = STATE(2988), + [sym_enum_class_body] = STATE(3260), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7127), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [3816] = { + [sym_function_body] = STATE(3879), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_PLUS_EQ] = ACTIONS(4331), + [anon_sym_DASH_EQ] = ACTIONS(4331), + [anon_sym_STAR_EQ] = ACTIONS(4331), + [anon_sym_SLASH_EQ] = ACTIONS(4331), + [anon_sym_PERCENT_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), [sym_multiline_comment] = ACTIONS(3), }, - [3853] = { - [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(4284), - [sym__automatic_semicolon] = ACTIONS(4284), - [sym_safe_nav] = ACTIONS(4284), + [3817] = { + [sym_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5834), + [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_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), }, - [3854] = { - [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), + [3818] = { + [sym_class_body] = STATE(3896), + [sym__alpha_identifier] = ACTIONS(4621), + [anon_sym_AT] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_as] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4621), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_where] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_get] = ACTIONS(4621), + [anon_sym_set] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4621), + [sym_label] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4621), + [anon_sym_DOT_DOT] = ACTIONS(4623), + [anon_sym_QMARK_COLON] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4623), + [anon_sym_PIPE_PIPE] = ACTIONS(4623), + [anon_sym_else] = ACTIONS(4621), + [anon_sym_COLON_COLON] = ACTIONS(4623), + [anon_sym_PLUS_EQ] = ACTIONS(4623), + [anon_sym_DASH_EQ] = ACTIONS(4623), + [anon_sym_STAR_EQ] = ACTIONS(4623), + [anon_sym_SLASH_EQ] = ACTIONS(4623), + [anon_sym_PERCENT_EQ] = ACTIONS(4623), + [anon_sym_BANG_EQ] = ACTIONS(4621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), + [anon_sym_EQ_EQ] = ACTIONS(4621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_BANGin] = ACTIONS(4623), + [anon_sym_is] = ACTIONS(4621), + [anon_sym_BANGis] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4621), + [anon_sym_PERCENT] = ACTIONS(4621), + [anon_sym_as_QMARK] = ACTIONS(4623), + [anon_sym_PLUS_PLUS] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4623), + [anon_sym_BANG_BANG] = ACTIONS(4623), + [anon_sym_suspend] = ACTIONS(4621), + [anon_sym_sealed] = ACTIONS(4621), + [anon_sym_annotation] = ACTIONS(4621), + [anon_sym_data] = ACTIONS(4621), + [anon_sym_inner] = ACTIONS(4621), + [anon_sym_value] = ACTIONS(4621), + [anon_sym_override] = ACTIONS(4621), + [anon_sym_lateinit] = ACTIONS(4621), + [anon_sym_public] = ACTIONS(4621), + [anon_sym_private] = ACTIONS(4621), + [anon_sym_internal] = ACTIONS(4621), + [anon_sym_protected] = ACTIONS(4621), + [anon_sym_tailrec] = ACTIONS(4621), + [anon_sym_operator] = ACTIONS(4621), + [anon_sym_infix] = ACTIONS(4621), + [anon_sym_inline] = ACTIONS(4621), + [anon_sym_external] = ACTIONS(4621), + [sym_property_modifier] = ACTIONS(4621), + [anon_sym_abstract] = ACTIONS(4621), + [anon_sym_final] = ACTIONS(4621), + [anon_sym_open] = ACTIONS(4621), + [anon_sym_vararg] = ACTIONS(4621), + [anon_sym_noinline] = ACTIONS(4621), + [anon_sym_crossinline] = ACTIONS(4621), + [anon_sym_expect] = ACTIONS(4621), + [anon_sym_actual] = ACTIONS(4621), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4623), + [sym__automatic_semicolon] = ACTIONS(4623), + [sym_safe_nav] = ACTIONS(4623), [sym_multiline_comment] = ACTIONS(3), }, - [3855] = { - [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), - [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), + [3819] = { + [sym_class_body] = STATE(3858), + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), + [sym_multiline_comment] = ACTIONS(3), }, - [3856] = { - [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), + [3820] = { + [sym_enum_class_body] = STATE(3835), + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4637), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), [sym_multiline_comment] = ACTIONS(3), }, - [3857] = { - [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), + [3821] = { + [sym__alpha_identifier] = ACTIONS(4643), + [anon_sym_AT] = ACTIONS(4645), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4643), + [anon_sym_as] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(4645), + [anon_sym_COMMA] = ACTIONS(4645), + [anon_sym_LT] = ACTIONS(4643), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_where] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4645), + [anon_sym_get] = ACTIONS(4643), + [anon_sym_set] = ACTIONS(4643), + [anon_sym_STAR] = ACTIONS(4643), + [sym_label] = ACTIONS(4645), + [anon_sym_in] = ACTIONS(4643), + [anon_sym_DOT_DOT] = ACTIONS(4645), + [anon_sym_QMARK_COLON] = ACTIONS(4645), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4645), + [anon_sym_else] = ACTIONS(4643), + [anon_sym_COLON_COLON] = ACTIONS(4645), + [anon_sym_PLUS_EQ] = ACTIONS(4645), + [anon_sym_DASH_EQ] = ACTIONS(4645), + [anon_sym_STAR_EQ] = ACTIONS(4645), + [anon_sym_SLASH_EQ] = ACTIONS(4645), + [anon_sym_PERCENT_EQ] = ACTIONS(4645), + [anon_sym_BANG_EQ] = ACTIONS(4643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4645), + [anon_sym_EQ_EQ] = ACTIONS(4643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4645), + [anon_sym_LT_EQ] = ACTIONS(4645), + [anon_sym_GT_EQ] = ACTIONS(4645), + [anon_sym_BANGin] = ACTIONS(4645), + [anon_sym_is] = ACTIONS(4643), + [anon_sym_BANGis] = ACTIONS(4645), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_as_QMARK] = ACTIONS(4645), + [anon_sym_PLUS_PLUS] = ACTIONS(4645), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_BANG_BANG] = ACTIONS(4645), + [anon_sym_suspend] = ACTIONS(4643), + [anon_sym_sealed] = ACTIONS(4643), + [anon_sym_annotation] = ACTIONS(4643), + [anon_sym_data] = ACTIONS(4643), + [anon_sym_inner] = ACTIONS(4643), + [anon_sym_value] = ACTIONS(4643), + [anon_sym_override] = ACTIONS(4643), + [anon_sym_lateinit] = ACTIONS(4643), + [anon_sym_public] = ACTIONS(4643), + [anon_sym_private] = ACTIONS(4643), + [anon_sym_internal] = ACTIONS(4643), + [anon_sym_protected] = ACTIONS(4643), + [anon_sym_tailrec] = ACTIONS(4643), + [anon_sym_operator] = ACTIONS(4643), + [anon_sym_infix] = ACTIONS(4643), + [anon_sym_inline] = ACTIONS(4643), + [anon_sym_external] = ACTIONS(4643), + [sym_property_modifier] = ACTIONS(4643), + [anon_sym_abstract] = ACTIONS(4643), + [anon_sym_final] = ACTIONS(4643), + [anon_sym_open] = ACTIONS(4643), + [anon_sym_vararg] = ACTIONS(4643), + [anon_sym_noinline] = ACTIONS(4643), + [anon_sym_crossinline] = ACTIONS(4643), + [anon_sym_expect] = ACTIONS(4643), + [anon_sym_actual] = ACTIONS(4643), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4645), + [sym__automatic_semicolon] = ACTIONS(4645), + [sym_safe_nav] = ACTIONS(4645), + [sym_multiline_comment] = ACTIONS(3), }, - [3858] = { - [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), + [3822] = { + [sym_class_body] = STATE(3260), + [sym_type_constraints] = STATE(3002), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7131), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4241), + [anon_sym_fun] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_this] = ACTIONS(4241), + [anon_sym_super] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4241), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_when] = ACTIONS(4241), + [anon_sym_try] = ACTIONS(4241), + [anon_sym_throw] = ACTIONS(4241), + [anon_sym_return] = ACTIONS(4241), + [anon_sym_continue] = ACTIONS(4241), + [anon_sym_break] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4243), + [anon_sym_continue_AT] = ACTIONS(4243), + [anon_sym_break_AT] = ACTIONS(4243), + [anon_sym_this_AT] = ACTIONS(4243), + [anon_sym_super_AT] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4243), + [sym_integer_literal] = ACTIONS(4241), + [sym_hex_literal] = ACTIONS(4243), + [sym_bin_literal] = ACTIONS(4243), + [anon_sym_true] = ACTIONS(4241), + [anon_sym_false] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4243), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4243), + }, + [3823] = { + [sym_type_constraints] = STATE(3005), + [sym_enum_class_body] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_fun] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_this] = ACTIONS(3268), + [anon_sym_super] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_when] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3272), + [anon_sym_continue_AT] = ACTIONS(3272), + [anon_sym_break_AT] = ACTIONS(3272), + [anon_sym_this_AT] = ACTIONS(3272), + [anon_sym_super_AT] = ACTIONS(3272), + [sym_real_literal] = ACTIONS(3272), + [sym_integer_literal] = ACTIONS(3268), + [sym_hex_literal] = ACTIONS(3272), + [sym_bin_literal] = ACTIONS(3272), + [anon_sym_true] = ACTIONS(3268), + [anon_sym_false] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3272), + }, + [3824] = { + [sym_type_constraints] = STATE(3022), + [sym_enum_class_body] = STATE(3144), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(4228), + [anon_sym_fun] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_this] = ACTIONS(4228), + [anon_sym_super] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4228), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_null] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_when] = ACTIONS(4228), + [anon_sym_try] = ACTIONS(4228), + [anon_sym_throw] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4230), + [anon_sym_continue_AT] = ACTIONS(4230), + [anon_sym_break_AT] = ACTIONS(4230), + [anon_sym_this_AT] = ACTIONS(4230), + [anon_sym_super_AT] = ACTIONS(4230), + [sym_real_literal] = ACTIONS(4230), + [sym_integer_literal] = ACTIONS(4228), + [sym_hex_literal] = ACTIONS(4230), + [sym_bin_literal] = ACTIONS(4230), + [anon_sym_true] = ACTIONS(4228), + [anon_sym_false] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4230), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4230), + }, + [3825] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3797), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4690), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_PLUS_EQ] = ACTIONS(4692), + [anon_sym_DASH_EQ] = ACTIONS(4692), + [anon_sym_STAR_EQ] = ACTIONS(4692), + [anon_sym_SLASH_EQ] = ACTIONS(4692), + [anon_sym_PERCENT_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4690), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + }, + [3826] = { + [sym__alpha_identifier] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_as] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4517), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_where] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4517), + [anon_sym_get] = ACTIONS(4515), + [anon_sym_set] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [sym_label] = ACTIONS(4517), + [anon_sym_in] = ACTIONS(4515), + [anon_sym_DOT_DOT] = ACTIONS(4517), + [anon_sym_QMARK_COLON] = ACTIONS(4517), + [anon_sym_AMP_AMP] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4517), + [anon_sym_else] = ACTIONS(4515), + [anon_sym_COLON_COLON] = ACTIONS(4517), + [anon_sym_PLUS_EQ] = ACTIONS(4517), + [anon_sym_DASH_EQ] = ACTIONS(4517), + [anon_sym_STAR_EQ] = ACTIONS(4517), + [anon_sym_SLASH_EQ] = ACTIONS(4517), + [anon_sym_PERCENT_EQ] = ACTIONS(4517), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_BANGin] = ACTIONS(4517), + [anon_sym_is] = ACTIONS(4515), + [anon_sym_BANGis] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_as_QMARK] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_BANG_BANG] = ACTIONS(4517), + [anon_sym_suspend] = ACTIONS(4515), + [anon_sym_sealed] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4515), + [anon_sym_data] = ACTIONS(4515), + [anon_sym_inner] = ACTIONS(4515), + [anon_sym_value] = ACTIONS(4515), + [anon_sym_override] = ACTIONS(4515), + [anon_sym_lateinit] = ACTIONS(4515), + [anon_sym_public] = ACTIONS(4515), + [anon_sym_private] = ACTIONS(4515), + [anon_sym_internal] = ACTIONS(4515), + [anon_sym_protected] = ACTIONS(4515), + [anon_sym_tailrec] = ACTIONS(4515), + [anon_sym_operator] = ACTIONS(4515), + [anon_sym_infix] = ACTIONS(4515), + [anon_sym_inline] = ACTIONS(4515), + [anon_sym_external] = ACTIONS(4515), + [sym_property_modifier] = ACTIONS(4515), + [anon_sym_abstract] = ACTIONS(4515), + [anon_sym_final] = ACTIONS(4515), + [anon_sym_open] = ACTIONS(4515), + [anon_sym_vararg] = ACTIONS(4515), + [anon_sym_noinline] = ACTIONS(4515), + [anon_sym_crossinline] = ACTIONS(4515), + [anon_sym_expect] = ACTIONS(4515), + [anon_sym_actual] = ACTIONS(4515), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4517), + [sym__automatic_semicolon] = ACTIONS(4517), + [sym_safe_nav] = ACTIONS(4517), + [sym_multiline_comment] = ACTIONS(3), + }, + [3827] = { + [sym_class_body] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5834), + [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_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_multiline_comment] = ACTIONS(3), + }, + [3828] = { + [sym__alpha_identifier] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1822), + [anon_sym_where] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [sym_label] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_QMARK_COLON] = ACTIONS(1824), + [anon_sym_AMP_AMP] = ACTIONS(1824), + [anon_sym_PIPE_PIPE] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1824), + [anon_sym_DASH_EQ] = ACTIONS(1824), + [anon_sym_STAR_EQ] = ACTIONS(1824), + [anon_sym_SLASH_EQ] = ACTIONS(1824), + [anon_sym_PERCENT_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), + [anon_sym_LT_EQ] = ACTIONS(1824), + [anon_sym_GT_EQ] = ACTIONS(1824), + [anon_sym_BANGin] = ACTIONS(1824), + [anon_sym_is] = ACTIONS(1822), + [anon_sym_BANGis] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_as_QMARK] = ACTIONS(1824), + [anon_sym_PLUS_PLUS] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1824), + [anon_sym_BANG_BANG] = ACTIONS(1824), + [anon_sym_suspend] = ACTIONS(1822), + [anon_sym_sealed] = ACTIONS(1822), + [anon_sym_annotation] = ACTIONS(1822), + [anon_sym_data] = ACTIONS(1822), + [anon_sym_inner] = ACTIONS(1822), + [anon_sym_value] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_lateinit] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_internal] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_tailrec] = ACTIONS(1822), + [anon_sym_operator] = ACTIONS(1822), + [anon_sym_infix] = ACTIONS(1822), + [anon_sym_inline] = ACTIONS(1822), + [anon_sym_external] = ACTIONS(1822), + [sym_property_modifier] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_final] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1822), + [anon_sym_vararg] = ACTIONS(1822), + [anon_sym_noinline] = ACTIONS(1822), + [anon_sym_crossinline] = ACTIONS(1822), + [anon_sym_expect] = ACTIONS(1822), + [anon_sym_actual] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1824), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym_safe_nav] = ACTIONS(1824), + [sym_multiline_comment] = ACTIONS(3), + }, + [3829] = { + [sym__alpha_identifier] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [sym_label] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(3142), + [anon_sym_QMARK_COLON] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(3142), + [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(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_as_QMARK] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_BANG_BANG] = ACTIONS(3142), + [anon_sym_suspend] = ACTIONS(3140), + [anon_sym_sealed] = ACTIONS(3140), + [anon_sym_annotation] = ACTIONS(3140), + [anon_sym_data] = ACTIONS(3140), + [anon_sym_inner] = ACTIONS(3140), + [anon_sym_value] = ACTIONS(3140), + [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(3140), + [anon_sym_actual] = ACTIONS(3140), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5169), - [sym__automatic_semicolon] = ACTIONS(5169), - [sym_safe_nav] = ACTIONS(5169), + [sym__backtick_identifier] = ACTIONS(3142), + [sym__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(3142), [sym_multiline_comment] = ACTIONS(3), }, - [3859] = { - [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), + [3830] = { + [sym__alpha_identifier] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_as] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym_COMMA] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_where] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4381), + [anon_sym_get] = ACTIONS(4379), + [anon_sym_set] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [sym_label] = ACTIONS(4381), + [anon_sym_in] = ACTIONS(4379), + [anon_sym_DOT_DOT] = ACTIONS(4381), + [anon_sym_QMARK_COLON] = ACTIONS(4381), + [anon_sym_AMP_AMP] = ACTIONS(4381), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_else] = ACTIONS(4379), + [anon_sym_COLON_COLON] = ACTIONS(4381), + [anon_sym_PLUS_EQ] = ACTIONS(4381), + [anon_sym_DASH_EQ] = ACTIONS(4381), + [anon_sym_STAR_EQ] = ACTIONS(4381), + [anon_sym_SLASH_EQ] = ACTIONS(4381), + [anon_sym_PERCENT_EQ] = ACTIONS(4381), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4381), + [anon_sym_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4381), + [anon_sym_LT_EQ] = ACTIONS(4381), + [anon_sym_GT_EQ] = ACTIONS(4381), + [anon_sym_BANGin] = ACTIONS(4381), + [anon_sym_is] = ACTIONS(4379), + [anon_sym_BANGis] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_as_QMARK] = ACTIONS(4381), + [anon_sym_PLUS_PLUS] = ACTIONS(4381), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_BANG_BANG] = ACTIONS(4381), + [anon_sym_suspend] = ACTIONS(4379), + [anon_sym_sealed] = ACTIONS(4379), + [anon_sym_annotation] = ACTIONS(4379), + [anon_sym_data] = ACTIONS(4379), + [anon_sym_inner] = ACTIONS(4379), + [anon_sym_value] = ACTIONS(4379), + [anon_sym_override] = ACTIONS(4379), + [anon_sym_lateinit] = ACTIONS(4379), + [anon_sym_public] = ACTIONS(4379), + [anon_sym_private] = ACTIONS(4379), + [anon_sym_internal] = ACTIONS(4379), + [anon_sym_protected] = ACTIONS(4379), + [anon_sym_tailrec] = ACTIONS(4379), + [anon_sym_operator] = ACTIONS(4379), + [anon_sym_infix] = ACTIONS(4379), + [anon_sym_inline] = ACTIONS(4379), + [anon_sym_external] = ACTIONS(4379), + [sym_property_modifier] = ACTIONS(4379), + [anon_sym_abstract] = ACTIONS(4379), + [anon_sym_final] = ACTIONS(4379), + [anon_sym_open] = ACTIONS(4379), + [anon_sym_vararg] = ACTIONS(4379), + [anon_sym_noinline] = ACTIONS(4379), + [anon_sym_crossinline] = ACTIONS(4379), + [anon_sym_expect] = ACTIONS(4379), + [anon_sym_actual] = ACTIONS(4379), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4381), + [sym__automatic_semicolon] = ACTIONS(4381), + [sym_safe_nav] = ACTIONS(4381), [sym_multiline_comment] = ACTIONS(3), }, - [3860] = { - [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), + [3831] = { + [sym__alpha_identifier] = ACTIONS(4768), + [anon_sym_AT] = ACTIONS(4770), + [anon_sym_LBRACK] = ACTIONS(4770), + [anon_sym_DOT] = ACTIONS(4768), + [anon_sym_as] = ACTIONS(4768), + [anon_sym_EQ] = ACTIONS(4768), + [anon_sym_LBRACE] = ACTIONS(4770), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_LPAREN] = ACTIONS(4770), + [anon_sym_COMMA] = ACTIONS(4770), + [anon_sym_LT] = ACTIONS(4768), + [anon_sym_GT] = ACTIONS(4768), + [anon_sym_where] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4770), + [anon_sym_get] = ACTIONS(4768), + [anon_sym_set] = ACTIONS(4768), + [anon_sym_STAR] = ACTIONS(4768), + [sym_label] = ACTIONS(4770), + [anon_sym_in] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_QMARK_COLON] = ACTIONS(4770), + [anon_sym_AMP_AMP] = ACTIONS(4770), + [anon_sym_PIPE_PIPE] = ACTIONS(4770), + [anon_sym_else] = ACTIONS(4768), + [anon_sym_COLON_COLON] = ACTIONS(4770), + [anon_sym_PLUS_EQ] = ACTIONS(4770), + [anon_sym_DASH_EQ] = ACTIONS(4770), + [anon_sym_STAR_EQ] = ACTIONS(4770), + [anon_sym_SLASH_EQ] = ACTIONS(4770), + [anon_sym_PERCENT_EQ] = ACTIONS(4770), + [anon_sym_BANG_EQ] = ACTIONS(4768), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4770), + [anon_sym_EQ_EQ] = ACTIONS(4768), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4770), + [anon_sym_LT_EQ] = ACTIONS(4770), + [anon_sym_GT_EQ] = ACTIONS(4770), + [anon_sym_BANGin] = ACTIONS(4770), + [anon_sym_is] = ACTIONS(4768), + [anon_sym_BANGis] = ACTIONS(4770), + [anon_sym_PLUS] = ACTIONS(4768), + [anon_sym_DASH] = ACTIONS(4768), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4768), + [anon_sym_as_QMARK] = ACTIONS(4770), + [anon_sym_PLUS_PLUS] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4770), + [anon_sym_BANG_BANG] = ACTIONS(4770), + [anon_sym_suspend] = ACTIONS(4768), + [anon_sym_sealed] = ACTIONS(4768), + [anon_sym_annotation] = ACTIONS(4768), + [anon_sym_data] = ACTIONS(4768), + [anon_sym_inner] = ACTIONS(4768), + [anon_sym_value] = ACTIONS(4768), + [anon_sym_override] = ACTIONS(4768), + [anon_sym_lateinit] = ACTIONS(4768), + [anon_sym_public] = ACTIONS(4768), + [anon_sym_private] = ACTIONS(4768), + [anon_sym_internal] = ACTIONS(4768), + [anon_sym_protected] = ACTIONS(4768), + [anon_sym_tailrec] = ACTIONS(4768), + [anon_sym_operator] = ACTIONS(4768), + [anon_sym_infix] = ACTIONS(4768), + [anon_sym_inline] = ACTIONS(4768), + [anon_sym_external] = ACTIONS(4768), + [sym_property_modifier] = ACTIONS(4768), + [anon_sym_abstract] = ACTIONS(4768), + [anon_sym_final] = ACTIONS(4768), + [anon_sym_open] = ACTIONS(4768), + [anon_sym_vararg] = ACTIONS(4768), + [anon_sym_noinline] = ACTIONS(4768), + [anon_sym_crossinline] = ACTIONS(4768), + [anon_sym_expect] = ACTIONS(4768), + [anon_sym_actual] = ACTIONS(4768), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4770), + [sym__automatic_semicolon] = ACTIONS(4770), + [sym_safe_nav] = ACTIONS(4770), [sym_multiline_comment] = ACTIONS(3), }, - [3861] = { - [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), + [3832] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [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_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), [sym_multiline_comment] = ACTIONS(3), }, - [3862] = { - [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), + [3833] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), [sym_multiline_comment] = ACTIONS(3), }, - [3863] = { - [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), + [3834] = { + [sym__alpha_identifier] = ACTIONS(4966), + [anon_sym_AT] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4966), + [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_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(4868), - [sym__automatic_semicolon] = ACTIONS(4868), - [sym_safe_nav] = ACTIONS(4868), + [sym__backtick_identifier] = ACTIONS(4968), + [sym__automatic_semicolon] = ACTIONS(4968), + [sym_safe_nav] = ACTIONS(4968), [sym_multiline_comment] = ACTIONS(3), }, - [3864] = { - [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), + [3835] = { + [sym__alpha_identifier] = ACTIONS(5023), + [anon_sym_AT] = ACTIONS(5025), + [anon_sym_LBRACK] = ACTIONS(5025), + [anon_sym_DOT] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5025), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5023), + [anon_sym_GT] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(5023), + [anon_sym_set] = ACTIONS(5023), + [anon_sym_STAR] = ACTIONS(5023), + [sym_label] = ACTIONS(5025), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_QMARK_COLON] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_else] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(5025), + [anon_sym_PLUS_EQ] = ACTIONS(5025), + [anon_sym_DASH_EQ] = ACTIONS(5025), + [anon_sym_STAR_EQ] = ACTIONS(5025), + [anon_sym_SLASH_EQ] = ACTIONS(5025), + [anon_sym_PERCENT_EQ] = ACTIONS(5025), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), + [anon_sym_LT_EQ] = ACTIONS(5025), + [anon_sym_GT_EQ] = ACTIONS(5025), + [anon_sym_BANGin] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_BANGis] = ACTIONS(5025), + [anon_sym_PLUS] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_as_QMARK] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5025), + [anon_sym_BANG_BANG] = ACTIONS(5025), + [anon_sym_suspend] = ACTIONS(5023), + [anon_sym_sealed] = ACTIONS(5023), + [anon_sym_annotation] = ACTIONS(5023), + [anon_sym_data] = ACTIONS(5023), + [anon_sym_inner] = ACTIONS(5023), + [anon_sym_value] = ACTIONS(5023), + [anon_sym_override] = ACTIONS(5023), + [anon_sym_lateinit] = ACTIONS(5023), + [anon_sym_public] = ACTIONS(5023), + [anon_sym_private] = ACTIONS(5023), + [anon_sym_internal] = ACTIONS(5023), + [anon_sym_protected] = ACTIONS(5023), + [anon_sym_tailrec] = ACTIONS(5023), + [anon_sym_operator] = ACTIONS(5023), + [anon_sym_infix] = ACTIONS(5023), + [anon_sym_inline] = ACTIONS(5023), + [anon_sym_external] = ACTIONS(5023), + [sym_property_modifier] = ACTIONS(5023), + [anon_sym_abstract] = ACTIONS(5023), + [anon_sym_final] = ACTIONS(5023), + [anon_sym_open] = ACTIONS(5023), + [anon_sym_vararg] = ACTIONS(5023), + [anon_sym_noinline] = ACTIONS(5023), + [anon_sym_crossinline] = ACTIONS(5023), + [anon_sym_expect] = ACTIONS(5023), + [anon_sym_actual] = ACTIONS(5023), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5025), + [sym__automatic_semicolon] = ACTIONS(5025), + [sym_safe_nav] = ACTIONS(5025), + [sym_multiline_comment] = ACTIONS(3), }, - [3865] = { - [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), + [3836] = { + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [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_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), }, - [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), + [3837] = { + [sym__alpha_identifier] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_where] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [sym_label] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_DOT_DOT] = ACTIONS(3424), + [anon_sym_QMARK_COLON] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_as_QMARK] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_BANG_BANG] = ACTIONS(3424), + [anon_sym_suspend] = ACTIONS(3422), + [anon_sym_sealed] = ACTIONS(3422), + [anon_sym_annotation] = ACTIONS(3422), + [anon_sym_data] = ACTIONS(3422), + [anon_sym_inner] = ACTIONS(3422), + [anon_sym_value] = ACTIONS(3422), + [anon_sym_override] = ACTIONS(3422), + [anon_sym_lateinit] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_internal] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_tailrec] = ACTIONS(3422), + [anon_sym_operator] = ACTIONS(3422), + [anon_sym_infix] = ACTIONS(3422), + [anon_sym_inline] = ACTIONS(3422), + [anon_sym_external] = ACTIONS(3422), + [sym_property_modifier] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_final] = ACTIONS(3422), + [anon_sym_open] = ACTIONS(3422), + [anon_sym_vararg] = ACTIONS(3422), + [anon_sym_noinline] = ACTIONS(3422), + [anon_sym_crossinline] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3422), + [anon_sym_actual] = ACTIONS(3422), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3424), + [sym__automatic_semicolon] = ACTIONS(3424), + [sym_safe_nav] = ACTIONS(3424), [sym_multiline_comment] = ACTIONS(3), }, - [3867] = { + [3838] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [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_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), + }, + [3839] = { [sym__alpha_identifier] = ACTIONS(4962), [anon_sym_AT] = ACTIONS(4964), [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4962), [anon_sym_as] = ACTIONS(4962), [anon_sym_EQ] = ACTIONS(4962), [anon_sym_LBRACE] = ACTIONS(4964), @@ -434101,7 +428505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -434168,396 +428571,1596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3840] = { + [sym__alpha_identifier] = ACTIONS(4635), + [anon_sym_AT] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4635), + [anon_sym_as] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4637), + [anon_sym_COMMA] = ACTIONS(4637), + [anon_sym_LT] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_where] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4637), + [anon_sym_get] = ACTIONS(4635), + [anon_sym_set] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [sym_label] = ACTIONS(4637), + [anon_sym_in] = ACTIONS(4635), + [anon_sym_DOT_DOT] = ACTIONS(4637), + [anon_sym_QMARK_COLON] = ACTIONS(4637), + [anon_sym_AMP_AMP] = ACTIONS(4637), + [anon_sym_PIPE_PIPE] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4635), + [anon_sym_COLON_COLON] = ACTIONS(4637), + [anon_sym_PLUS_EQ] = ACTIONS(4637), + [anon_sym_DASH_EQ] = ACTIONS(4637), + [anon_sym_STAR_EQ] = ACTIONS(4637), + [anon_sym_SLASH_EQ] = ACTIONS(4637), + [anon_sym_PERCENT_EQ] = ACTIONS(4637), + [anon_sym_BANG_EQ] = ACTIONS(4635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4637), + [anon_sym_EQ_EQ] = ACTIONS(4635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4637), + [anon_sym_LT_EQ] = ACTIONS(4637), + [anon_sym_GT_EQ] = ACTIONS(4637), + [anon_sym_BANGin] = ACTIONS(4637), + [anon_sym_is] = ACTIONS(4635), + [anon_sym_BANGis] = ACTIONS(4637), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4635), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_as_QMARK] = ACTIONS(4637), + [anon_sym_PLUS_PLUS] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_BANG_BANG] = ACTIONS(4637), + [anon_sym_suspend] = ACTIONS(4635), + [anon_sym_sealed] = ACTIONS(4635), + [anon_sym_annotation] = ACTIONS(4635), + [anon_sym_data] = ACTIONS(4635), + [anon_sym_inner] = ACTIONS(4635), + [anon_sym_value] = ACTIONS(4635), + [anon_sym_override] = ACTIONS(4635), + [anon_sym_lateinit] = ACTIONS(4635), + [anon_sym_public] = ACTIONS(4635), + [anon_sym_private] = ACTIONS(4635), + [anon_sym_internal] = ACTIONS(4635), + [anon_sym_protected] = ACTIONS(4635), + [anon_sym_tailrec] = ACTIONS(4635), + [anon_sym_operator] = ACTIONS(4635), + [anon_sym_infix] = ACTIONS(4635), + [anon_sym_inline] = ACTIONS(4635), + [anon_sym_external] = ACTIONS(4635), + [sym_property_modifier] = ACTIONS(4635), + [anon_sym_abstract] = ACTIONS(4635), + [anon_sym_final] = ACTIONS(4635), + [anon_sym_open] = ACTIONS(4635), + [anon_sym_vararg] = ACTIONS(4635), + [anon_sym_noinline] = ACTIONS(4635), + [anon_sym_crossinline] = ACTIONS(4635), + [anon_sym_expect] = ACTIONS(4635), + [anon_sym_actual] = ACTIONS(4635), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4637), + [sym__automatic_semicolon] = ACTIONS(4637), + [sym_safe_nav] = ACTIONS(4637), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3841] = { + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [3842] = { + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [3843] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), + [sym_multiline_comment] = ACTIONS(3), + }, + [3844] = { + [sym__alpha_identifier] = ACTIONS(4958), + [anon_sym_AT] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4958), + [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_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), - [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__backtick_identifier] = ACTIONS(4960), + [sym__automatic_semicolon] = ACTIONS(4960), + [sym_safe_nav] = ACTIONS(4960), + [sym_multiline_comment] = ACTIONS(3), + }, + [3845] = { + [sym__alpha_identifier] = ACTIONS(5171), + [anon_sym_AT] = ACTIONS(5173), + [anon_sym_LBRACK] = ACTIONS(5173), + [anon_sym_DOT] = ACTIONS(5171), + [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_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(5173), + [sym__automatic_semicolon] = ACTIONS(5173), + [sym_safe_nav] = ACTIONS(5173), + [sym_multiline_comment] = ACTIONS(3), + }, + [3846] = { + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_EQ] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4665), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_PLUS_EQ] = ACTIONS(4667), + [anon_sym_DASH_EQ] = ACTIONS(4667), + [anon_sym_STAR_EQ] = ACTIONS(4667), + [anon_sym_SLASH_EQ] = ACTIONS(4667), + [anon_sym_PERCENT_EQ] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4665), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + }, + [3847] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [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_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), + }, + [3848] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [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_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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3849] = { + [sym__alpha_identifier] = ACTIONS(5035), + [anon_sym_AT] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [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_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), + }, + [3850] = { + [sym__alpha_identifier] = ACTIONS(5039), + [anon_sym_AT] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5039), + [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_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), + }, + [3851] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [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_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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3852] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), + [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_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), + }, + [3853] = { + [sym__alpha_identifier] = ACTIONS(5013), + [anon_sym_AT] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_as] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_where] = ACTIONS(5013), + [anon_sym_SEMI] = ACTIONS(5015), + [anon_sym_get] = ACTIONS(5013), + [anon_sym_set] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [sym_label] = ACTIONS(5015), + [anon_sym_in] = ACTIONS(5013), + [anon_sym_DOT_DOT] = ACTIONS(5015), + [anon_sym_QMARK_COLON] = ACTIONS(5015), + [anon_sym_AMP_AMP] = ACTIONS(5015), + [anon_sym_PIPE_PIPE] = ACTIONS(5015), + [anon_sym_else] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(5015), + [anon_sym_PLUS_EQ] = ACTIONS(5015), + [anon_sym_DASH_EQ] = ACTIONS(5015), + [anon_sym_STAR_EQ] = ACTIONS(5015), + [anon_sym_SLASH_EQ] = ACTIONS(5015), + [anon_sym_PERCENT_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ] = ACTIONS(5013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5015), + [anon_sym_LT_EQ] = ACTIONS(5015), + [anon_sym_GT_EQ] = ACTIONS(5015), + [anon_sym_BANGin] = ACTIONS(5015), + [anon_sym_is] = ACTIONS(5013), + [anon_sym_BANGis] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_PERCENT] = ACTIONS(5013), + [anon_sym_as_QMARK] = ACTIONS(5015), + [anon_sym_PLUS_PLUS] = ACTIONS(5015), + [anon_sym_DASH_DASH] = ACTIONS(5015), + [anon_sym_BANG_BANG] = ACTIONS(5015), + [anon_sym_suspend] = ACTIONS(5013), + [anon_sym_sealed] = ACTIONS(5013), + [anon_sym_annotation] = ACTIONS(5013), + [anon_sym_data] = ACTIONS(5013), + [anon_sym_inner] = ACTIONS(5013), + [anon_sym_value] = ACTIONS(5013), + [anon_sym_override] = ACTIONS(5013), + [anon_sym_lateinit] = ACTIONS(5013), + [anon_sym_public] = ACTIONS(5013), + [anon_sym_private] = ACTIONS(5013), + [anon_sym_internal] = ACTIONS(5013), + [anon_sym_protected] = ACTIONS(5013), + [anon_sym_tailrec] = ACTIONS(5013), + [anon_sym_operator] = ACTIONS(5013), + [anon_sym_infix] = ACTIONS(5013), + [anon_sym_inline] = ACTIONS(5013), + [anon_sym_external] = ACTIONS(5013), + [sym_property_modifier] = ACTIONS(5013), + [anon_sym_abstract] = ACTIONS(5013), + [anon_sym_final] = ACTIONS(5013), + [anon_sym_open] = ACTIONS(5013), + [anon_sym_vararg] = ACTIONS(5013), + [anon_sym_noinline] = ACTIONS(5013), + [anon_sym_crossinline] = ACTIONS(5013), + [anon_sym_expect] = ACTIONS(5013), + [anon_sym_actual] = ACTIONS(5013), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5015), + [sym__automatic_semicolon] = ACTIONS(5015), + [sym_safe_nav] = ACTIONS(5015), [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), + [3854] = { + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), [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), + [3855] = { + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_PLUS_EQ] = ACTIONS(4391), + [anon_sym_DASH_EQ] = ACTIONS(4391), + [anon_sym_STAR_EQ] = ACTIONS(4391), + [anon_sym_SLASH_EQ] = ACTIONS(4391), + [anon_sym_PERCENT_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4389), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3856] = { + [sym__alpha_identifier] = ACTIONS(4878), + [anon_sym_AT] = ACTIONS(4880), + [anon_sym_LBRACK] = ACTIONS(4880), + [anon_sym_DOT] = ACTIONS(4878), + [anon_sym_as] = ACTIONS(4878), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_LBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_LPAREN] = ACTIONS(4880), + [anon_sym_COMMA] = ACTIONS(4880), + [anon_sym_LT] = ACTIONS(4878), + [anon_sym_GT] = ACTIONS(4878), + [anon_sym_where] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym_get] = ACTIONS(4878), + [anon_sym_set] = ACTIONS(4878), + [anon_sym_STAR] = ACTIONS(4878), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4878), + [anon_sym_DOT_DOT] = ACTIONS(4880), + [anon_sym_QMARK_COLON] = ACTIONS(4880), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_PIPE_PIPE] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(4880), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PERCENT_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), + [anon_sym_LT_EQ] = ACTIONS(4880), + [anon_sym_GT_EQ] = ACTIONS(4880), + [anon_sym_BANGin] = ACTIONS(4880), + [anon_sym_is] = ACTIONS(4878), + [anon_sym_BANGis] = ACTIONS(4880), + [anon_sym_PLUS] = ACTIONS(4878), + [anon_sym_DASH] = ACTIONS(4878), + [anon_sym_SLASH] = ACTIONS(4878), + [anon_sym_PERCENT] = ACTIONS(4878), + [anon_sym_as_QMARK] = ACTIONS(4880), + [anon_sym_PLUS_PLUS] = ACTIONS(4880), + [anon_sym_DASH_DASH] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4880), + [anon_sym_suspend] = ACTIONS(4878), + [anon_sym_sealed] = ACTIONS(4878), + [anon_sym_annotation] = ACTIONS(4878), + [anon_sym_data] = ACTIONS(4878), + [anon_sym_inner] = ACTIONS(4878), + [anon_sym_value] = ACTIONS(4878), + [anon_sym_override] = ACTIONS(4878), + [anon_sym_lateinit] = ACTIONS(4878), + [anon_sym_public] = ACTIONS(4878), + [anon_sym_private] = ACTIONS(4878), + [anon_sym_internal] = ACTIONS(4878), + [anon_sym_protected] = ACTIONS(4878), + [anon_sym_tailrec] = ACTIONS(4878), + [anon_sym_operator] = ACTIONS(4878), + [anon_sym_infix] = ACTIONS(4878), + [anon_sym_inline] = ACTIONS(4878), + [anon_sym_external] = ACTIONS(4878), + [sym_property_modifier] = ACTIONS(4878), + [anon_sym_abstract] = ACTIONS(4878), + [anon_sym_final] = ACTIONS(4878), + [anon_sym_open] = ACTIONS(4878), + [anon_sym_vararg] = ACTIONS(4878), + [anon_sym_noinline] = ACTIONS(4878), + [anon_sym_crossinline] = ACTIONS(4878), + [anon_sym_expect] = ACTIONS(4878), + [anon_sym_actual] = ACTIONS(4878), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4880), + [sym__automatic_semicolon] = ACTIONS(4880), + [sym_safe_nav] = ACTIONS(4880), + [sym_multiline_comment] = ACTIONS(3), + }, + [3857] = { + [sym__alpha_identifier] = ACTIONS(4507), + [anon_sym_AT] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4507), + [anon_sym_as] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4509), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4509), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_where] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_get] = ACTIONS(4507), + [anon_sym_set] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4507), + [sym_label] = ACTIONS(4509), + [anon_sym_in] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_QMARK_COLON] = ACTIONS(4509), + [anon_sym_AMP_AMP] = ACTIONS(4509), + [anon_sym_PIPE_PIPE] = ACTIONS(4509), + [anon_sym_else] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4509), + [anon_sym_PLUS_EQ] = ACTIONS(4509), + [anon_sym_DASH_EQ] = ACTIONS(4509), + [anon_sym_STAR_EQ] = ACTIONS(4509), + [anon_sym_SLASH_EQ] = ACTIONS(4509), + [anon_sym_PERCENT_EQ] = ACTIONS(4509), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), + [anon_sym_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), + [anon_sym_LT_EQ] = ACTIONS(4509), + [anon_sym_GT_EQ] = ACTIONS(4509), + [anon_sym_BANGin] = ACTIONS(4509), + [anon_sym_is] = ACTIONS(4507), + [anon_sym_BANGis] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_as_QMARK] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_BANG_BANG] = ACTIONS(4509), + [anon_sym_suspend] = ACTIONS(4507), + [anon_sym_sealed] = ACTIONS(4507), + [anon_sym_annotation] = ACTIONS(4507), + [anon_sym_data] = ACTIONS(4507), + [anon_sym_inner] = ACTIONS(4507), + [anon_sym_value] = ACTIONS(4507), + [anon_sym_override] = ACTIONS(4507), + [anon_sym_lateinit] = ACTIONS(4507), + [anon_sym_public] = ACTIONS(4507), + [anon_sym_private] = ACTIONS(4507), + [anon_sym_internal] = ACTIONS(4507), + [anon_sym_protected] = ACTIONS(4507), + [anon_sym_tailrec] = ACTIONS(4507), + [anon_sym_operator] = ACTIONS(4507), + [anon_sym_infix] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_external] = ACTIONS(4507), + [sym_property_modifier] = ACTIONS(4507), + [anon_sym_abstract] = ACTIONS(4507), + [anon_sym_final] = ACTIONS(4507), + [anon_sym_open] = ACTIONS(4507), + [anon_sym_vararg] = ACTIONS(4507), + [anon_sym_noinline] = ACTIONS(4507), + [anon_sym_crossinline] = ACTIONS(4507), + [anon_sym_expect] = ACTIONS(4507), + [anon_sym_actual] = ACTIONS(4507), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4509), + [sym__automatic_semicolon] = ACTIONS(4509), + [sym_safe_nav] = ACTIONS(4509), + [sym_multiline_comment] = ACTIONS(3), + }, + [3858] = { + [sym__alpha_identifier] = ACTIONS(4491), + [anon_sym_AT] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_as] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4491), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_where] = ACTIONS(4491), + [anon_sym_SEMI] = ACTIONS(4493), + [anon_sym_get] = ACTIONS(4491), + [anon_sym_set] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [sym_label] = ACTIONS(4493), + [anon_sym_in] = ACTIONS(4491), + [anon_sym_DOT_DOT] = ACTIONS(4493), + [anon_sym_QMARK_COLON] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_else] = ACTIONS(4491), + [anon_sym_COLON_COLON] = ACTIONS(4493), + [anon_sym_PLUS_EQ] = ACTIONS(4493), + [anon_sym_DASH_EQ] = ACTIONS(4493), + [anon_sym_STAR_EQ] = ACTIONS(4493), + [anon_sym_SLASH_EQ] = ACTIONS(4493), + [anon_sym_PERCENT_EQ] = ACTIONS(4493), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4493), + [anon_sym_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4493), + [anon_sym_LT_EQ] = ACTIONS(4493), + [anon_sym_GT_EQ] = ACTIONS(4493), + [anon_sym_BANGin] = ACTIONS(4493), + [anon_sym_is] = ACTIONS(4491), + [anon_sym_BANGis] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_as_QMARK] = ACTIONS(4493), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_suspend] = ACTIONS(4491), + [anon_sym_sealed] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4491), + [anon_sym_data] = ACTIONS(4491), + [anon_sym_inner] = ACTIONS(4491), + [anon_sym_value] = ACTIONS(4491), + [anon_sym_override] = ACTIONS(4491), + [anon_sym_lateinit] = ACTIONS(4491), + [anon_sym_public] = ACTIONS(4491), + [anon_sym_private] = ACTIONS(4491), + [anon_sym_internal] = ACTIONS(4491), + [anon_sym_protected] = ACTIONS(4491), + [anon_sym_tailrec] = ACTIONS(4491), + [anon_sym_operator] = ACTIONS(4491), + [anon_sym_infix] = ACTIONS(4491), + [anon_sym_inline] = ACTIONS(4491), + [anon_sym_external] = ACTIONS(4491), + [sym_property_modifier] = ACTIONS(4491), + [anon_sym_abstract] = ACTIONS(4491), + [anon_sym_final] = ACTIONS(4491), + [anon_sym_open] = ACTIONS(4491), + [anon_sym_vararg] = ACTIONS(4491), + [anon_sym_noinline] = ACTIONS(4491), + [anon_sym_crossinline] = ACTIONS(4491), + [anon_sym_expect] = ACTIONS(4491), + [anon_sym_actual] = ACTIONS(4491), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4493), + [sym__automatic_semicolon] = ACTIONS(4493), + [sym_safe_nav] = ACTIONS(4493), + [sym_multiline_comment] = ACTIONS(3), + }, + [3859] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3182), [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(7147), - [anon_sym_DOT] = ACTIONS(6724), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [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(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_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -434565,559 +430168,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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_safe_nav] = ACTIONS(6750), [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), + [3860] = { + [sym__alpha_identifier] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(5045), + [anon_sym_DOT] = ACTIONS(5043), + [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_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), - [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__backtick_identifier] = ACTIONS(5045), + [sym__automatic_semicolon] = ACTIONS(5045), + [sym_safe_nav] = ACTIONS(5045), [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), + [3861] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3140), [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(7147), - [anon_sym_DOT] = ACTIONS(6724), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [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(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_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -435125,573 +430328,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(4445), - [sym__automatic_semicolon] = ACTIONS(4445), - [sym_safe_nav] = ACTIONS(4445), - [sym_multiline_comment] = ACTIONS(3), - }, - [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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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(5097), - [sym__automatic_semicolon] = ACTIONS(5097), - [sym_safe_nav] = ACTIONS(5097), + [3862] = { + [sym__alpha_identifier] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_where] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_get] = ACTIONS(1616), + [anon_sym_set] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [sym_label] = ACTIONS(1614), + [anon_sym_in] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_QMARK_COLON] = ACTIONS(1614), + [anon_sym_AMP_AMP] = ACTIONS(1614), + [anon_sym_PIPE_PIPE] = ACTIONS(1614), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_PLUS_EQ] = ACTIONS(1614), + [anon_sym_DASH_EQ] = ACTIONS(1614), + [anon_sym_STAR_EQ] = ACTIONS(1614), + [anon_sym_SLASH_EQ] = ACTIONS(1614), + [anon_sym_PERCENT_EQ] = ACTIONS(1614), + [anon_sym_BANG_EQ] = ACTIONS(1616), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1614), + [anon_sym_EQ_EQ] = ACTIONS(1616), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1614), + [anon_sym_LT_EQ] = ACTIONS(1614), + [anon_sym_GT_EQ] = ACTIONS(1614), + [anon_sym_BANGin] = ACTIONS(1614), + [anon_sym_is] = ACTIONS(1616), + [anon_sym_BANGis] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_as_QMARK] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1614), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_BANG_BANG] = ACTIONS(1614), + [anon_sym_suspend] = ACTIONS(1616), + [anon_sym_sealed] = ACTIONS(1616), + [anon_sym_annotation] = ACTIONS(1616), + [anon_sym_data] = ACTIONS(1616), + [anon_sym_inner] = ACTIONS(1616), + [anon_sym_value] = ACTIONS(1616), + [anon_sym_override] = ACTIONS(1616), + [anon_sym_lateinit] = ACTIONS(1616), + [anon_sym_public] = ACTIONS(1616), + [anon_sym_private] = ACTIONS(1616), + [anon_sym_internal] = ACTIONS(1616), + [anon_sym_protected] = ACTIONS(1616), + [anon_sym_tailrec] = ACTIONS(1616), + [anon_sym_operator] = ACTIONS(1616), + [anon_sym_infix] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), + [anon_sym_external] = ACTIONS(1616), + [sym_property_modifier] = ACTIONS(1616), + [anon_sym_abstract] = ACTIONS(1616), + [anon_sym_final] = ACTIONS(1616), + [anon_sym_open] = ACTIONS(1616), + [anon_sym_vararg] = ACTIONS(1616), + [anon_sym_noinline] = ACTIONS(1616), + [anon_sym_crossinline] = ACTIONS(1616), + [anon_sym_expect] = ACTIONS(1616), + [anon_sym_actual] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1614), + [sym__automatic_semicolon] = ACTIONS(1614), + [sym_safe_nav] = ACTIONS(1614), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3863] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [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_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), }, - [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), + [3864] = { + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [sym_label] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_suspend] = ACTIONS(3978), + [anon_sym_sealed] = ACTIONS(3978), + [anon_sym_annotation] = ACTIONS(3978), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_override] = ACTIONS(3978), + [anon_sym_lateinit] = ACTIONS(3978), + [anon_sym_public] = ACTIONS(3978), + [anon_sym_private] = ACTIONS(3978), + [anon_sym_internal] = ACTIONS(3978), + [anon_sym_protected] = ACTIONS(3978), + [anon_sym_tailrec] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_infix] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym_external] = ACTIONS(3978), + [sym_property_modifier] = ACTIONS(3978), + [anon_sym_abstract] = ACTIONS(3978), + [anon_sym_final] = ACTIONS(3978), + [anon_sym_open] = ACTIONS(3978), + [anon_sym_vararg] = ACTIONS(3978), + [anon_sym_noinline] = ACTIONS(3978), + [anon_sym_crossinline] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3980), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), [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), + [3865] = { + [sym__alpha_identifier] = ACTIONS(4930), + [anon_sym_AT] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4930), + [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_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(4820), - [sym__automatic_semicolon] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4932), + [sym__automatic_semicolon] = ACTIONS(4932), + [sym_safe_nav] = ACTIONS(4932), [sym_multiline_comment] = ACTIONS(3), }, - [3887] = { + [3866] = { [sym__alpha_identifier] = ACTIONS(4818), [anon_sym_AT] = ACTIONS(4820), [anon_sym_LBRACK] = ACTIONS(4820), + [anon_sym_DOT] = ACTIONS(4818), [anon_sym_as] = ACTIONS(4818), [anon_sym_EQ] = ACTIONS(4818), [anon_sym_LBRACE] = ACTIONS(4820), @@ -435701,7 +430665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -435712,7 +430675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_else] = ACTIONS(4818), [anon_sym_COLON_COLON] = ACTIONS(4820), [anon_sym_PLUS_EQ] = ACTIONS(4820), [anon_sym_DASH_EQ] = ACTIONS(4820), @@ -435768,4010 +430731,1851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [3900] = { - [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_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), - }, - [3901] = { - [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__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__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__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), + [3867] = { + [sym__alpha_identifier] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_DOT] = ACTIONS(1802), + [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_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(5127), - [sym__automatic_semicolon] = ACTIONS(5127), - [sym_safe_nav] = ACTIONS(5127), - [sym_multiline_comment] = ACTIONS(3), - }, - [3905] = { - [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__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__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_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__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__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_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__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), - [sym__backtick_identifier] = ACTIONS(5133), - [sym__automatic_semicolon] = ACTIONS(5133), - [sym_safe_nav] = ACTIONS(5133), + [sym__backtick_identifier] = ACTIONS(1804), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym_safe_nav] = ACTIONS(1804), [sym_multiline_comment] = ACTIONS(3), }, - [3913] = { - [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_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), + [3868] = { + [sym__alpha_identifier] = ACTIONS(4926), + [anon_sym_AT] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4926), + [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_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), }, - [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), + [3869] = { + [sym__alpha_identifier] = ACTIONS(4922), + [anon_sym_AT] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4922), + [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_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), }, - [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), + [3870] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [sym__backtick_identifier] = ACTIONS(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [3871] = { + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [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_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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), }, - [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), + [3872] = { + [sym__alpha_identifier] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(5001), + [anon_sym_as] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_RBRACE] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5003), + [anon_sym_COMMA] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(5001), + [anon_sym_where] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5003), + [anon_sym_get] = ACTIONS(5001), + [anon_sym_set] = ACTIONS(5001), + [anon_sym_STAR] = ACTIONS(5001), + [sym_label] = ACTIONS(5003), + [anon_sym_in] = ACTIONS(5001), + [anon_sym_DOT_DOT] = ACTIONS(5003), + [anon_sym_QMARK_COLON] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_else] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5003), + [anon_sym_PLUS_EQ] = ACTIONS(5003), + [anon_sym_DASH_EQ] = ACTIONS(5003), + [anon_sym_STAR_EQ] = ACTIONS(5003), + [anon_sym_SLASH_EQ] = ACTIONS(5003), + [anon_sym_PERCENT_EQ] = ACTIONS(5003), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_BANGin] = ACTIONS(5003), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_BANGis] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(5001), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_as_QMARK] = ACTIONS(5003), + [anon_sym_PLUS_PLUS] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5003), + [anon_sym_BANG_BANG] = ACTIONS(5003), + [anon_sym_suspend] = ACTIONS(5001), + [anon_sym_sealed] = ACTIONS(5001), + [anon_sym_annotation] = ACTIONS(5001), + [anon_sym_data] = ACTIONS(5001), + [anon_sym_inner] = ACTIONS(5001), + [anon_sym_value] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_lateinit] = ACTIONS(5001), + [anon_sym_public] = ACTIONS(5001), + [anon_sym_private] = ACTIONS(5001), + [anon_sym_internal] = ACTIONS(5001), + [anon_sym_protected] = ACTIONS(5001), + [anon_sym_tailrec] = ACTIONS(5001), + [anon_sym_operator] = ACTIONS(5001), + [anon_sym_infix] = ACTIONS(5001), + [anon_sym_inline] = ACTIONS(5001), + [anon_sym_external] = ACTIONS(5001), + [sym_property_modifier] = ACTIONS(5001), + [anon_sym_abstract] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_open] = ACTIONS(5001), + [anon_sym_vararg] = ACTIONS(5001), + [anon_sym_noinline] = ACTIONS(5001), + [anon_sym_crossinline] = ACTIONS(5001), + [anon_sym_expect] = ACTIONS(5001), + [anon_sym_actual] = ACTIONS(5001), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5003), + [sym__automatic_semicolon] = ACTIONS(5003), + [sym_safe_nav] = ACTIONS(5003), [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), + [3873] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), + [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_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(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [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), + [3874] = { + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [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_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = 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(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [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), + [3875] = { + [sym__alpha_identifier] = ACTIONS(4906), + [anon_sym_AT] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4906), + [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_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(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__backtick_identifier] = ACTIONS(4908), + [sym__automatic_semicolon] = ACTIONS(4908), + [sym_safe_nav] = ACTIONS(4908), [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), + [3876] = { + [sym__alpha_identifier] = ACTIONS(4902), + [anon_sym_AT] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_DOT] = ACTIONS(4902), + [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_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(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__backtick_identifier] = ACTIONS(4904), + [sym__automatic_semicolon] = ACTIONS(4904), + [sym_safe_nav] = ACTIONS(4904), [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), + [3877] = { + [sym__alpha_identifier] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_where] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_get] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [sym_label] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_QMARK_COLON] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PERCENT_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_BANGin] = ACTIONS(1736), + [anon_sym_is] = ACTIONS(1734), + [anon_sym_BANGis] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_as_QMARK] = ACTIONS(1736), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_BANG_BANG] = ACTIONS(1736), + [anon_sym_suspend] = ACTIONS(1734), + [anon_sym_sealed] = ACTIONS(1734), + [anon_sym_annotation] = ACTIONS(1734), + [anon_sym_data] = ACTIONS(1734), + [anon_sym_inner] = ACTIONS(1734), + [anon_sym_value] = ACTIONS(1734), + [anon_sym_override] = ACTIONS(1734), + [anon_sym_lateinit] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_internal] = ACTIONS(1734), + [anon_sym_protected] = ACTIONS(1734), + [anon_sym_tailrec] = ACTIONS(1734), + [anon_sym_operator] = ACTIONS(1734), + [anon_sym_infix] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_external] = ACTIONS(1734), + [sym_property_modifier] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_final] = ACTIONS(1734), + [anon_sym_open] = ACTIONS(1734), + [anon_sym_vararg] = ACTIONS(1734), + [anon_sym_noinline] = ACTIONS(1734), + [anon_sym_crossinline] = ACTIONS(1734), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(1736), [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), + [3878] = { + [sym__alpha_identifier] = ACTIONS(4898), + [anon_sym_AT] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_DOT] = ACTIONS(4898), + [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_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(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__backtick_identifier] = ACTIONS(4900), + [sym__automatic_semicolon] = ACTIONS(4900), + [sym_safe_nav] = ACTIONS(4900), [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), + [3879] = { + [sym__alpha_identifier] = ACTIONS(4890), + [anon_sym_AT] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_DOT] = ACTIONS(4890), + [anon_sym_as] = ACTIONS(4890), + [anon_sym_EQ] = ACTIONS(4890), + [anon_sym_LBRACE] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4892), + [anon_sym_LPAREN] = ACTIONS(4892), + [anon_sym_COMMA] = ACTIONS(4892), + [anon_sym_LT] = ACTIONS(4890), + [anon_sym_GT] = ACTIONS(4890), + [anon_sym_where] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(4892), + [anon_sym_get] = ACTIONS(4890), + [anon_sym_set] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4890), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4890), + [anon_sym_DOT_DOT] = ACTIONS(4892), + [anon_sym_QMARK_COLON] = ACTIONS(4892), + [anon_sym_AMP_AMP] = ACTIONS(4892), + [anon_sym_PIPE_PIPE] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4892), + [anon_sym_DASH_EQ] = ACTIONS(4892), + [anon_sym_STAR_EQ] = ACTIONS(4892), + [anon_sym_SLASH_EQ] = ACTIONS(4892), + [anon_sym_PERCENT_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), + [anon_sym_LT_EQ] = ACTIONS(4892), + [anon_sym_GT_EQ] = ACTIONS(4892), + [anon_sym_BANGin] = ACTIONS(4892), + [anon_sym_is] = ACTIONS(4890), + [anon_sym_BANGis] = ACTIONS(4892), + [anon_sym_PLUS] = ACTIONS(4890), + [anon_sym_DASH] = ACTIONS(4890), + [anon_sym_SLASH] = ACTIONS(4890), + [anon_sym_PERCENT] = ACTIONS(4890), + [anon_sym_as_QMARK] = ACTIONS(4892), + [anon_sym_PLUS_PLUS] = ACTIONS(4892), + [anon_sym_DASH_DASH] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4892), + [anon_sym_suspend] = ACTIONS(4890), + [anon_sym_sealed] = ACTIONS(4890), + [anon_sym_annotation] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4890), + [anon_sym_inner] = ACTIONS(4890), + [anon_sym_value] = ACTIONS(4890), + [anon_sym_override] = ACTIONS(4890), + [anon_sym_lateinit] = ACTIONS(4890), + [anon_sym_public] = ACTIONS(4890), + [anon_sym_private] = ACTIONS(4890), + [anon_sym_internal] = ACTIONS(4890), + [anon_sym_protected] = ACTIONS(4890), + [anon_sym_tailrec] = ACTIONS(4890), + [anon_sym_operator] = ACTIONS(4890), + [anon_sym_infix] = ACTIONS(4890), + [anon_sym_inline] = ACTIONS(4890), + [anon_sym_external] = ACTIONS(4890), + [sym_property_modifier] = ACTIONS(4890), + [anon_sym_abstract] = ACTIONS(4890), + [anon_sym_final] = ACTIONS(4890), + [anon_sym_open] = ACTIONS(4890), + [anon_sym_vararg] = ACTIONS(4890), + [anon_sym_noinline] = ACTIONS(4890), + [anon_sym_crossinline] = ACTIONS(4890), + [anon_sym_expect] = ACTIONS(4890), + [anon_sym_actual] = ACTIONS(4890), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4892), + [sym__automatic_semicolon] = ACTIONS(4892), + [sym_safe_nav] = ACTIONS(4892), [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), + [3880] = { + [sym__alpha_identifier] = ACTIONS(4794), + [anon_sym_AT] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_typealias] = ACTIONS(4794), + [anon_sym_class] = ACTIONS(4794), + [anon_sym_interface] = ACTIONS(4794), + [anon_sym_enum] = ACTIONS(4794), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_val] = ACTIONS(4794), + [anon_sym_var] = ACTIONS(4794), + [anon_sym_object] = ACTIONS(4794), + [anon_sym_fun] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4794), + [anon_sym_set] = ACTIONS(4794), + [anon_sym_this] = ACTIONS(4794), + [anon_sym_super] = ACTIONS(4794), + [anon_sym_STAR] = ACTIONS(4796), + [sym_label] = ACTIONS(4794), + [anon_sym_for] = ACTIONS(4794), + [anon_sym_while] = ACTIONS(4794), + [anon_sym_do] = ACTIONS(4794), + [anon_sym_null] = ACTIONS(4794), + [anon_sym_if] = 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] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4796), + [anon_sym_DASH_DASH] = ACTIONS(4796), + [anon_sym_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(3195), - [sym_safe_nav] = ACTIONS(6740), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4796), }, - [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), + [3881] = { + [sym__alpha_identifier] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_DOT] = ACTIONS(1790), + [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_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(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__backtick_identifier] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym_safe_nav] = ACTIONS(1792), [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), + [3882] = { + [sym__alpha_identifier] = ACTIONS(4529), + [anon_sym_AT] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_as] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_where] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4529), + [anon_sym_set] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), + [sym_label] = ACTIONS(4531), + [anon_sym_in] = ACTIONS(4529), + [anon_sym_DOT_DOT] = ACTIONS(4531), + [anon_sym_QMARK_COLON] = ACTIONS(4531), + [anon_sym_AMP_AMP] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4531), + [anon_sym_else] = ACTIONS(4529), + [anon_sym_COLON_COLON] = ACTIONS(4531), + [anon_sym_PLUS_EQ] = ACTIONS(4531), + [anon_sym_DASH_EQ] = ACTIONS(4531), + [anon_sym_STAR_EQ] = ACTIONS(4531), + [anon_sym_SLASH_EQ] = ACTIONS(4531), + [anon_sym_PERCENT_EQ] = ACTIONS(4531), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_BANGin] = ACTIONS(4531), + [anon_sym_is] = ACTIONS(4529), + [anon_sym_BANGis] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4529), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_as_QMARK] = ACTIONS(4531), + [anon_sym_PLUS_PLUS] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4531), + [anon_sym_BANG_BANG] = ACTIONS(4531), + [anon_sym_suspend] = ACTIONS(4529), + [anon_sym_sealed] = ACTIONS(4529), + [anon_sym_annotation] = ACTIONS(4529), + [anon_sym_data] = ACTIONS(4529), + [anon_sym_inner] = ACTIONS(4529), + [anon_sym_value] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_lateinit] = ACTIONS(4529), + [anon_sym_public] = ACTIONS(4529), + [anon_sym_private] = ACTIONS(4529), + [anon_sym_internal] = ACTIONS(4529), + [anon_sym_protected] = ACTIONS(4529), + [anon_sym_tailrec] = ACTIONS(4529), + [anon_sym_operator] = ACTIONS(4529), + [anon_sym_infix] = ACTIONS(4529), + [anon_sym_inline] = ACTIONS(4529), + [anon_sym_external] = ACTIONS(4529), + [sym_property_modifier] = ACTIONS(4529), + [anon_sym_abstract] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_open] = ACTIONS(4529), + [anon_sym_vararg] = ACTIONS(4529), + [anon_sym_noinline] = ACTIONS(4529), + [anon_sym_crossinline] = ACTIONS(4529), + [anon_sym_expect] = ACTIONS(4529), + [anon_sym_actual] = ACTIONS(4529), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4531), + [sym__automatic_semicolon] = ACTIONS(4531), + [sym_safe_nav] = ACTIONS(4531), [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), + [3883] = { + [sym__alpha_identifier] = ACTIONS(5005), + [anon_sym_AT] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5005), + [anon_sym_as] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(7159), + [anon_sym_GT] = ACTIONS(5005), + [anon_sym_where] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_get] = ACTIONS(5005), + [anon_sym_set] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5005), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5005), + [anon_sym_DOT_DOT] = ACTIONS(5007), + [anon_sym_QMARK_COLON] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_BANGin] = ACTIONS(5007), + [anon_sym_is] = ACTIONS(5005), + [anon_sym_BANGis] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5005), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_as_QMARK] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5007), + [anon_sym_suspend] = ACTIONS(5005), + [anon_sym_sealed] = ACTIONS(5005), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_data] = ACTIONS(5005), + [anon_sym_inner] = ACTIONS(5005), + [anon_sym_value] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_lateinit] = ACTIONS(5005), + [anon_sym_public] = ACTIONS(5005), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_internal] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_tailrec] = ACTIONS(5005), + [anon_sym_operator] = ACTIONS(5005), + [anon_sym_infix] = ACTIONS(5005), + [anon_sym_inline] = ACTIONS(5005), + [anon_sym_external] = ACTIONS(5005), + [sym_property_modifier] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_open] = ACTIONS(5005), + [anon_sym_vararg] = ACTIONS(5005), + [anon_sym_noinline] = ACTIONS(5005), + [anon_sym_crossinline] = ACTIONS(5005), + [anon_sym_expect] = ACTIONS(5005), + [anon_sym_actual] = ACTIONS(5005), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5007), + [sym__automatic_semicolon] = ACTIONS(5007), + [sym_safe_nav] = ACTIONS(5007), [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), + [3884] = { + [sym__alpha_identifier] = ACTIONS(4882), + [anon_sym_AT] = ACTIONS(4884), + [anon_sym_LBRACK] = ACTIONS(4884), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_as] = ACTIONS(4882), + [anon_sym_EQ] = ACTIONS(4882), + [anon_sym_LBRACE] = ACTIONS(4884), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_LPAREN] = ACTIONS(4884), + [anon_sym_COMMA] = ACTIONS(4884), + [anon_sym_LT] = ACTIONS(4882), + [anon_sym_GT] = ACTIONS(4882), + [anon_sym_where] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4884), + [anon_sym_get] = ACTIONS(4882), + [anon_sym_set] = ACTIONS(4882), + [anon_sym_STAR] = ACTIONS(4882), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_QMARK_COLON] = ACTIONS(4884), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_PIPE_PIPE] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4882), + [anon_sym_COLON_COLON] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4884), + [anon_sym_DASH_EQ] = ACTIONS(4884), + [anon_sym_STAR_EQ] = ACTIONS(4884), + [anon_sym_SLASH_EQ] = ACTIONS(4884), + [anon_sym_PERCENT_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), + [anon_sym_LT_EQ] = ACTIONS(4884), + [anon_sym_GT_EQ] = ACTIONS(4884), + [anon_sym_BANGin] = ACTIONS(4884), + [anon_sym_is] = ACTIONS(4882), + [anon_sym_BANGis] = ACTIONS(4884), + [anon_sym_PLUS] = ACTIONS(4882), + [anon_sym_DASH] = ACTIONS(4882), + [anon_sym_SLASH] = ACTIONS(4882), + [anon_sym_PERCENT] = ACTIONS(4882), + [anon_sym_as_QMARK] = ACTIONS(4884), + [anon_sym_PLUS_PLUS] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4884), + [anon_sym_suspend] = ACTIONS(4882), + [anon_sym_sealed] = ACTIONS(4882), + [anon_sym_annotation] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4882), + [anon_sym_inner] = ACTIONS(4882), + [anon_sym_value] = ACTIONS(4882), + [anon_sym_override] = ACTIONS(4882), + [anon_sym_lateinit] = ACTIONS(4882), + [anon_sym_public] = ACTIONS(4882), + [anon_sym_private] = ACTIONS(4882), + [anon_sym_internal] = ACTIONS(4882), + [anon_sym_protected] = ACTIONS(4882), + [anon_sym_tailrec] = ACTIONS(4882), + [anon_sym_operator] = ACTIONS(4882), + [anon_sym_infix] = ACTIONS(4882), + [anon_sym_inline] = ACTIONS(4882), + [anon_sym_external] = ACTIONS(4882), + [sym_property_modifier] = ACTIONS(4882), + [anon_sym_abstract] = ACTIONS(4882), + [anon_sym_final] = ACTIONS(4882), + [anon_sym_open] = ACTIONS(4882), + [anon_sym_vararg] = ACTIONS(4882), + [anon_sym_noinline] = ACTIONS(4882), + [anon_sym_crossinline] = ACTIONS(4882), + [anon_sym_expect] = ACTIONS(4882), + [anon_sym_actual] = ACTIONS(4882), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4884), + [sym__automatic_semicolon] = ACTIONS(4884), + [sym_safe_nav] = ACTIONS(4884), [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), + [3885] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), [sym_multiline_comment] = ACTIONS(3), }, - [3934] = { - [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), + [3886] = { + [sym__alpha_identifier] = ACTIONS(5097), + [anon_sym_AT] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_DOT] = ACTIONS(5097), + [anon_sym_as] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(5097), + [anon_sym_LBRACE] = ACTIONS(5099), + [anon_sym_RBRACE] = ACTIONS(5099), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_where] = ACTIONS(5097), + [anon_sym_SEMI] = ACTIONS(5099), + [anon_sym_get] = ACTIONS(5097), + [anon_sym_set] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [sym_label] = ACTIONS(5099), + [anon_sym_in] = ACTIONS(5097), + [anon_sym_DOT_DOT] = ACTIONS(5099), + [anon_sym_QMARK_COLON] = ACTIONS(5099), + [anon_sym_AMP_AMP] = ACTIONS(5099), + [anon_sym_PIPE_PIPE] = ACTIONS(5099), + [anon_sym_else] = ACTIONS(5097), + [anon_sym_COLON_COLON] = ACTIONS(5099), + [anon_sym_PLUS_EQ] = ACTIONS(5099), + [anon_sym_DASH_EQ] = ACTIONS(5099), + [anon_sym_STAR_EQ] = ACTIONS(5099), + [anon_sym_SLASH_EQ] = ACTIONS(5099), + [anon_sym_PERCENT_EQ] = ACTIONS(5099), + [anon_sym_BANG_EQ] = ACTIONS(5097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), + [anon_sym_EQ_EQ] = ACTIONS(5097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), + [anon_sym_LT_EQ] = ACTIONS(5099), + [anon_sym_GT_EQ] = ACTIONS(5099), + [anon_sym_BANGin] = ACTIONS(5099), + [anon_sym_is] = ACTIONS(5097), + [anon_sym_BANGis] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_PERCENT] = ACTIONS(5097), + [anon_sym_as_QMARK] = ACTIONS(5099), + [anon_sym_PLUS_PLUS] = ACTIONS(5099), + [anon_sym_DASH_DASH] = ACTIONS(5099), + [anon_sym_BANG_BANG] = ACTIONS(5099), + [anon_sym_suspend] = ACTIONS(5097), + [anon_sym_sealed] = ACTIONS(5097), + [anon_sym_annotation] = ACTIONS(5097), + [anon_sym_data] = ACTIONS(5097), + [anon_sym_inner] = ACTIONS(5097), + [anon_sym_value] = ACTIONS(5097), + [anon_sym_override] = ACTIONS(5097), + [anon_sym_lateinit] = ACTIONS(5097), + [anon_sym_public] = ACTIONS(5097), + [anon_sym_private] = ACTIONS(5097), + [anon_sym_internal] = ACTIONS(5097), + [anon_sym_protected] = ACTIONS(5097), + [anon_sym_tailrec] = ACTIONS(5097), + [anon_sym_operator] = ACTIONS(5097), + [anon_sym_infix] = ACTIONS(5097), + [anon_sym_inline] = ACTIONS(5097), + [anon_sym_external] = ACTIONS(5097), + [sym_property_modifier] = ACTIONS(5097), + [anon_sym_abstract] = ACTIONS(5097), + [anon_sym_final] = ACTIONS(5097), + [anon_sym_open] = ACTIONS(5097), + [anon_sym_vararg] = ACTIONS(5097), + [anon_sym_noinline] = ACTIONS(5097), + [anon_sym_crossinline] = ACTIONS(5097), + [anon_sym_expect] = ACTIONS(5097), + [anon_sym_actual] = ACTIONS(5097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5099), + [sym__automatic_semicolon] = ACTIONS(5099), + [sym_safe_nav] = ACTIONS(5099), [sym_multiline_comment] = ACTIONS(3), }, - [3935] = { - [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), + [3887] = { + [sym__alpha_identifier] = ACTIONS(4894), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_DOT] = ACTIONS(4894), + [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_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_multiline_comment] = ACTIONS(3), }, - [3936] = { - [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), + [3888] = { + [sym__alpha_identifier] = ACTIONS(5105), + [anon_sym_AT] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_DOT] = ACTIONS(5105), + [anon_sym_as] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_LBRACE] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_where] = ACTIONS(5105), + [anon_sym_SEMI] = ACTIONS(5107), + [anon_sym_get] = ACTIONS(5105), + [anon_sym_set] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [sym_label] = ACTIONS(5107), + [anon_sym_in] = ACTIONS(5105), + [anon_sym_DOT_DOT] = ACTIONS(5107), + [anon_sym_QMARK_COLON] = ACTIONS(5107), + [anon_sym_AMP_AMP] = ACTIONS(5107), + [anon_sym_PIPE_PIPE] = ACTIONS(5107), + [anon_sym_else] = ACTIONS(5105), + [anon_sym_COLON_COLON] = ACTIONS(5107), + [anon_sym_PLUS_EQ] = ACTIONS(5107), + [anon_sym_DASH_EQ] = ACTIONS(5107), + [anon_sym_STAR_EQ] = ACTIONS(5107), + [anon_sym_SLASH_EQ] = ACTIONS(5107), + [anon_sym_PERCENT_EQ] = ACTIONS(5107), + [anon_sym_BANG_EQ] = ACTIONS(5105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), + [anon_sym_EQ_EQ] = ACTIONS(5105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), + [anon_sym_LT_EQ] = ACTIONS(5107), + [anon_sym_GT_EQ] = ACTIONS(5107), + [anon_sym_BANGin] = ACTIONS(5107), + [anon_sym_is] = ACTIONS(5105), + [anon_sym_BANGis] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_as_QMARK] = ACTIONS(5107), + [anon_sym_PLUS_PLUS] = ACTIONS(5107), + [anon_sym_DASH_DASH] = ACTIONS(5107), + [anon_sym_BANG_BANG] = ACTIONS(5107), + [anon_sym_suspend] = ACTIONS(5105), + [anon_sym_sealed] = ACTIONS(5105), + [anon_sym_annotation] = ACTIONS(5105), + [anon_sym_data] = ACTIONS(5105), + [anon_sym_inner] = ACTIONS(5105), + [anon_sym_value] = ACTIONS(5105), + [anon_sym_override] = ACTIONS(5105), + [anon_sym_lateinit] = ACTIONS(5105), + [anon_sym_public] = ACTIONS(5105), + [anon_sym_private] = ACTIONS(5105), + [anon_sym_internal] = ACTIONS(5105), + [anon_sym_protected] = ACTIONS(5105), + [anon_sym_tailrec] = ACTIONS(5105), + [anon_sym_operator] = ACTIONS(5105), + [anon_sym_infix] = ACTIONS(5105), + [anon_sym_inline] = ACTIONS(5105), + [anon_sym_external] = ACTIONS(5105), + [sym_property_modifier] = ACTIONS(5105), + [anon_sym_abstract] = ACTIONS(5105), + [anon_sym_final] = ACTIONS(5105), + [anon_sym_open] = ACTIONS(5105), + [anon_sym_vararg] = ACTIONS(5105), + [anon_sym_noinline] = ACTIONS(5105), + [anon_sym_crossinline] = ACTIONS(5105), + [anon_sym_expect] = ACTIONS(5105), + [anon_sym_actual] = ACTIONS(5105), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5107), + [sym__automatic_semicolon] = ACTIONS(5107), + [sym_safe_nav] = ACTIONS(5107), [sym_multiline_comment] = ACTIONS(3), }, - [3937] = { - [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), + [3889] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_suspend] = ACTIONS(5129), + [anon_sym_sealed] = ACTIONS(5129), + [anon_sym_annotation] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_override] = ACTIONS(5129), + [anon_sym_lateinit] = ACTIONS(5129), + [anon_sym_public] = ACTIONS(5129), + [anon_sym_private] = ACTIONS(5129), + [anon_sym_internal] = ACTIONS(5129), + [anon_sym_protected] = ACTIONS(5129), + [anon_sym_tailrec] = ACTIONS(5129), + [anon_sym_operator] = ACTIONS(5129), + [anon_sym_infix] = ACTIONS(5129), + [anon_sym_inline] = ACTIONS(5129), + [anon_sym_external] = ACTIONS(5129), + [sym_property_modifier] = ACTIONS(5129), + [anon_sym_abstract] = ACTIONS(5129), + [anon_sym_final] = ACTIONS(5129), + [anon_sym_open] = ACTIONS(5129), + [anon_sym_vararg] = ACTIONS(5129), + [anon_sym_noinline] = ACTIONS(5129), + [anon_sym_crossinline] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5131), + [sym__automatic_semicolon] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), [sym_multiline_comment] = ACTIONS(3), }, - [3938] = { + [3890] = { [sym__alpha_identifier] = ACTIONS(4774), [anon_sym_AT] = ACTIONS(4776), [anon_sym_LBRACK] = ACTIONS(4776), + [anon_sym_DOT] = ACTIONS(4774), [anon_sym_as] = ACTIONS(4774), [anon_sym_EQ] = ACTIONS(4774), [anon_sym_LBRACE] = ACTIONS(4776), @@ -439781,7 +432585,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -439848,2102 +432651,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4776), [sym_multiline_comment] = ACTIONS(3), }, - [3939] = { - [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), + [3891] = { + [sym_function_body] = STATE(3924), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), }, - [3940] = { - [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), + [3892] = { + [sym_function_body] = STATE(3435), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_RBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_DASH_GT] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [sym_multiline_comment] = ACTIONS(3), }, - [3941] = { - [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), + [3893] = { + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [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_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_multiline_comment] = ACTIONS(3), + }, + [3894] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_EQ] = ACTIONS(3094), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), [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_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), [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_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(6740), + [anon_sym_COLON_COLON] = ACTIONS(6750), [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(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(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_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(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] = { - [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), - }, - [3947] = { - [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(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_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(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_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(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(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_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(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), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [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(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(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [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), - }, - [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), + [3895] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [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_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(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, - [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(5173), - [sym__automatic_semicolon] = ACTIONS(5173), - [sym_safe_nav] = ACTIONS(5173), + [3896] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3897] = { + [sym_function_body] = STATE(3166), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_object] = ACTIONS(4255), + [anon_sym_fun] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_this] = ACTIONS(4255), + [anon_sym_super] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4255), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_when] = ACTIONS(4255), + [anon_sym_try] = ACTIONS(4255), + [anon_sym_throw] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4257), + [anon_sym_continue_AT] = ACTIONS(4257), + [anon_sym_break_AT] = ACTIONS(4257), + [anon_sym_this_AT] = ACTIONS(4257), + [anon_sym_super_AT] = ACTIONS(4257), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(4255), + [anon_sym_false] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4257), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4257), + }, + [3898] = { + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_suspend] = ACTIONS(4106), + [anon_sym_sealed] = ACTIONS(4106), + [anon_sym_annotation] = ACTIONS(4106), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_override] = ACTIONS(4106), + [anon_sym_lateinit] = ACTIONS(4106), + [anon_sym_public] = ACTIONS(4106), + [anon_sym_private] = ACTIONS(4106), + [anon_sym_internal] = ACTIONS(4106), + [anon_sym_protected] = ACTIONS(4106), + [anon_sym_tailrec] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_infix] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym_external] = ACTIONS(4106), + [sym_property_modifier] = ACTIONS(4106), + [anon_sym_abstract] = ACTIONS(4106), + [anon_sym_final] = ACTIONS(4106), + [anon_sym_open] = ACTIONS(4106), + [anon_sym_vararg] = ACTIONS(4106), + [anon_sym_noinline] = ACTIONS(4106), + [anon_sym_crossinline] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym__automatic_semicolon] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3899] = { + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_PLUS_EQ] = ACTIONS(4399), + [anon_sym_DASH_EQ] = ACTIONS(4399), + [anon_sym_STAR_EQ] = ACTIONS(4399), + [anon_sym_SLASH_EQ] = ACTIONS(4399), + [anon_sym_PERCENT_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3900] = { + [sym__alpha_identifier] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4409), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_as] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_RBRACE] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4409), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_where] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4409), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_STAR] = ACTIONS(4407), + [sym_label] = ACTIONS(4409), + [anon_sym_in] = ACTIONS(4407), + [anon_sym_DOT_DOT] = ACTIONS(4409), + [anon_sym_QMARK_COLON] = ACTIONS(4409), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_PIPE_PIPE] = ACTIONS(4409), + [anon_sym_else] = ACTIONS(4407), + [anon_sym_COLON_COLON] = ACTIONS(4409), + [anon_sym_PLUS_EQ] = ACTIONS(4409), + [anon_sym_DASH_EQ] = ACTIONS(4409), + [anon_sym_STAR_EQ] = ACTIONS(4409), + [anon_sym_SLASH_EQ] = ACTIONS(4409), + [anon_sym_PERCENT_EQ] = ACTIONS(4409), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4409), + [anon_sym_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), + [anon_sym_LT_EQ] = ACTIONS(4409), + [anon_sym_GT_EQ] = ACTIONS(4409), + [anon_sym_BANGin] = ACTIONS(4409), + [anon_sym_is] = ACTIONS(4407), + [anon_sym_BANGis] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_as_QMARK] = ACTIONS(4409), + [anon_sym_PLUS_PLUS] = ACTIONS(4409), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_BANG_BANG] = ACTIONS(4409), + [anon_sym_suspend] = ACTIONS(4407), + [anon_sym_sealed] = ACTIONS(4407), + [anon_sym_annotation] = ACTIONS(4407), + [anon_sym_data] = ACTIONS(4407), + [anon_sym_inner] = ACTIONS(4407), + [anon_sym_value] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_lateinit] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_internal] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_tailrec] = ACTIONS(4407), + [anon_sym_operator] = ACTIONS(4407), + [anon_sym_infix] = ACTIONS(4407), + [anon_sym_inline] = ACTIONS(4407), + [anon_sym_external] = ACTIONS(4407), + [sym_property_modifier] = ACTIONS(4407), + [anon_sym_abstract] = ACTIONS(4407), + [anon_sym_final] = ACTIONS(4407), + [anon_sym_open] = ACTIONS(4407), + [anon_sym_vararg] = ACTIONS(4407), + [anon_sym_noinline] = ACTIONS(4407), + [anon_sym_crossinline] = ACTIONS(4407), + [anon_sym_expect] = ACTIONS(4407), + [anon_sym_actual] = ACTIONS(4407), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4409), + [sym__automatic_semicolon] = ACTIONS(4409), + [sym_safe_nav] = ACTIONS(4409), + [sym_multiline_comment] = ACTIONS(3), + }, + [3901] = { + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3902] = { + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [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_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), + }, + [3903] = { + [sym__alpha_identifier] = ACTIONS(5159), + [anon_sym_AT] = ACTIONS(5161), + [anon_sym_LBRACK] = ACTIONS(5161), + [anon_sym_DOT] = ACTIONS(5159), + [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_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(4908), - [sym__automatic_semicolon] = ACTIONS(4908), - [sym_safe_nav] = ACTIONS(4908), + [sym__backtick_identifier] = ACTIONS(5161), + [sym__automatic_semicolon] = ACTIONS(5161), + [sym_safe_nav] = ACTIONS(5161), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3904] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_typealias] = ACTIONS(4782), + [anon_sym_class] = ACTIONS(4782), + [anon_sym_interface] = ACTIONS(4782), + [anon_sym_enum] = ACTIONS(4782), + [anon_sym_LBRACE] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_val] = ACTIONS(4782), + [anon_sym_var] = ACTIONS(4782), + [anon_sym_object] = ACTIONS(4782), + [anon_sym_fun] = ACTIONS(4782), + [anon_sym_get] = ACTIONS(4782), + [anon_sym_set] = ACTIONS(4782), + [anon_sym_this] = ACTIONS(4782), + [anon_sym_super] = ACTIONS(4782), + [anon_sym_STAR] = ACTIONS(4784), + [sym_label] = ACTIONS(4782), + [anon_sym_for] = ACTIONS(4782), + [anon_sym_while] = ACTIONS(4782), + [anon_sym_do] = ACTIONS(4782), + [anon_sym_null] = ACTIONS(4782), + [anon_sym_if] = 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] = ACTIONS(4782), + [anon_sym_DASH] = ACTIONS(4782), + [anon_sym_PLUS_PLUS] = ACTIONS(4784), + [anon_sym_DASH_DASH] = ACTIONS(4784), + [anon_sym_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(4904), - [sym__automatic_semicolon] = ACTIONS(4904), - [sym_safe_nav] = ACTIONS(4904), + [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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4784), }, - [3964] = { - [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_DOT] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym_get] = ACTIONS(5020), - [anon_sym_set] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [sym_label] = ACTIONS(5022), - [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_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__automatic_semicolon] = ACTIONS(5022), - [sym_safe_nav] = ACTIONS(5022), + [3905] = { + [sym__alpha_identifier] = ACTIONS(5143), + [anon_sym_AT] = ACTIONS(5145), + [anon_sym_LBRACK] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(5143), + [anon_sym_as] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5145), + [anon_sym_RBRACE] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_COMMA] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5143), + [anon_sym_GT] = ACTIONS(5143), + [anon_sym_where] = ACTIONS(5143), + [anon_sym_SEMI] = ACTIONS(5145), + [anon_sym_get] = ACTIONS(5143), + [anon_sym_set] = ACTIONS(5143), + [anon_sym_STAR] = ACTIONS(5143), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5143), + [anon_sym_DOT_DOT] = ACTIONS(5145), + [anon_sym_QMARK_COLON] = ACTIONS(5145), + [anon_sym_AMP_AMP] = ACTIONS(5145), + [anon_sym_PIPE_PIPE] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5143), + [anon_sym_COLON_COLON] = ACTIONS(5145), + [anon_sym_PLUS_EQ] = ACTIONS(5145), + [anon_sym_DASH_EQ] = ACTIONS(5145), + [anon_sym_STAR_EQ] = ACTIONS(5145), + [anon_sym_SLASH_EQ] = ACTIONS(5145), + [anon_sym_PERCENT_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5145), + [anon_sym_LT_EQ] = ACTIONS(5145), + [anon_sym_GT_EQ] = ACTIONS(5145), + [anon_sym_BANGin] = ACTIONS(5145), + [anon_sym_is] = ACTIONS(5143), + [anon_sym_BANGis] = ACTIONS(5145), + [anon_sym_PLUS] = ACTIONS(5143), + [anon_sym_DASH] = ACTIONS(5143), + [anon_sym_SLASH] = ACTIONS(5143), + [anon_sym_PERCENT] = ACTIONS(5143), + [anon_sym_as_QMARK] = ACTIONS(5145), + [anon_sym_PLUS_PLUS] = ACTIONS(5145), + [anon_sym_DASH_DASH] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5145), + [anon_sym_suspend] = ACTIONS(5143), + [anon_sym_sealed] = ACTIONS(5143), + [anon_sym_annotation] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5143), + [anon_sym_inner] = ACTIONS(5143), + [anon_sym_value] = ACTIONS(5143), + [anon_sym_override] = ACTIONS(5143), + [anon_sym_lateinit] = ACTIONS(5143), + [anon_sym_public] = ACTIONS(5143), + [anon_sym_private] = ACTIONS(5143), + [anon_sym_internal] = ACTIONS(5143), + [anon_sym_protected] = ACTIONS(5143), + [anon_sym_tailrec] = ACTIONS(5143), + [anon_sym_operator] = ACTIONS(5143), + [anon_sym_infix] = ACTIONS(5143), + [anon_sym_inline] = ACTIONS(5143), + [anon_sym_external] = ACTIONS(5143), + [sym_property_modifier] = ACTIONS(5143), + [anon_sym_abstract] = ACTIONS(5143), + [anon_sym_final] = ACTIONS(5143), + [anon_sym_open] = ACTIONS(5143), + [anon_sym_vararg] = ACTIONS(5143), + [anon_sym_noinline] = ACTIONS(5143), + [anon_sym_crossinline] = ACTIONS(5143), + [anon_sym_expect] = ACTIONS(5143), + [anon_sym_actual] = ACTIONS(5143), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5145), + [sym__automatic_semicolon] = ACTIONS(5145), + [sym_safe_nav] = ACTIONS(5145), [sym_multiline_comment] = ACTIONS(3), }, - [3965] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3974), + [3906] = { + [sym__alpha_identifier] = ACTIONS(4910), + [anon_sym_AT] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4910), + [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_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), + }, + [3907] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3933), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(7161), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [3908] = { + [sym_function_body] = STATE(3225), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_fun] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_this] = ACTIONS(4389), + [anon_sym_super] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4389), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_null] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_when] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4391), + [anon_sym_continue_AT] = ACTIONS(4391), + [anon_sym_break_AT] = ACTIONS(4391), + [anon_sym_this_AT] = ACTIONS(4391), + [anon_sym_super_AT] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4391), + [sym_integer_literal] = ACTIONS(4389), + [sym_hex_literal] = ACTIONS(4391), + [sym_bin_literal] = ACTIONS(4391), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4391), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4391), + }, + [3909] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3907), [sym__alpha_identifier] = ACTIONS(4684), [anon_sym_AT] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), [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_COMMA] = ACTIONS(7161), [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), @@ -442008,912 +434171,2054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4686), }, - [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), + [3910] = { + [sym__alpha_identifier] = ACTIONS(5147), + [anon_sym_AT] = ACTIONS(5149), + [anon_sym_LBRACK] = ACTIONS(5149), + [anon_sym_DOT] = ACTIONS(5147), + [anon_sym_as] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5149), + [anon_sym_RBRACE] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5147), + [anon_sym_GT] = ACTIONS(5147), + [anon_sym_where] = ACTIONS(5147), + [anon_sym_SEMI] = ACTIONS(5149), + [anon_sym_get] = ACTIONS(5147), + [anon_sym_set] = ACTIONS(5147), + [anon_sym_STAR] = ACTIONS(5147), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5147), + [anon_sym_DOT_DOT] = ACTIONS(5149), + [anon_sym_QMARK_COLON] = ACTIONS(5149), + [anon_sym_AMP_AMP] = ACTIONS(5149), + [anon_sym_PIPE_PIPE] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5147), + [anon_sym_COLON_COLON] = ACTIONS(5149), + [anon_sym_PLUS_EQ] = ACTIONS(5149), + [anon_sym_DASH_EQ] = ACTIONS(5149), + [anon_sym_STAR_EQ] = ACTIONS(5149), + [anon_sym_SLASH_EQ] = ACTIONS(5149), + [anon_sym_PERCENT_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5149), + [anon_sym_LT_EQ] = ACTIONS(5149), + [anon_sym_GT_EQ] = ACTIONS(5149), + [anon_sym_BANGin] = ACTIONS(5149), + [anon_sym_is] = ACTIONS(5147), + [anon_sym_BANGis] = ACTIONS(5149), + [anon_sym_PLUS] = ACTIONS(5147), + [anon_sym_DASH] = ACTIONS(5147), + [anon_sym_SLASH] = ACTIONS(5147), + [anon_sym_PERCENT] = ACTIONS(5147), + [anon_sym_as_QMARK] = ACTIONS(5149), + [anon_sym_PLUS_PLUS] = ACTIONS(5149), + [anon_sym_DASH_DASH] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5149), + [anon_sym_suspend] = ACTIONS(5147), + [anon_sym_sealed] = ACTIONS(5147), + [anon_sym_annotation] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5147), + [anon_sym_inner] = ACTIONS(5147), + [anon_sym_value] = ACTIONS(5147), + [anon_sym_override] = ACTIONS(5147), + [anon_sym_lateinit] = ACTIONS(5147), + [anon_sym_public] = ACTIONS(5147), + [anon_sym_private] = ACTIONS(5147), + [anon_sym_internal] = ACTIONS(5147), + [anon_sym_protected] = ACTIONS(5147), + [anon_sym_tailrec] = ACTIONS(5147), + [anon_sym_operator] = ACTIONS(5147), + [anon_sym_infix] = ACTIONS(5147), + [anon_sym_inline] = ACTIONS(5147), + [anon_sym_external] = ACTIONS(5147), + [sym_property_modifier] = ACTIONS(5147), + [anon_sym_abstract] = ACTIONS(5147), + [anon_sym_final] = ACTIONS(5147), + [anon_sym_open] = ACTIONS(5147), + [anon_sym_vararg] = ACTIONS(5147), + [anon_sym_noinline] = ACTIONS(5147), + [anon_sym_crossinline] = ACTIONS(5147), + [anon_sym_expect] = ACTIONS(5147), + [anon_sym_actual] = ACTIONS(5147), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5149), + [sym__automatic_semicolon] = ACTIONS(5149), + [sym_safe_nav] = ACTIONS(5149), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3911] = { + [sym_function_body] = STATE(3263), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_fun] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_this] = ACTIONS(4397), + [anon_sym_super] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4397), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_null] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_when] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4399), + [anon_sym_continue_AT] = ACTIONS(4399), + [anon_sym_break_AT] = ACTIONS(4399), + [anon_sym_this_AT] = ACTIONS(4399), + [anon_sym_super_AT] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4399), + [sym_integer_literal] = ACTIONS(4397), + [sym_hex_literal] = ACTIONS(4399), + [sym_bin_literal] = ACTIONS(4399), + [anon_sym_true] = ACTIONS(4397), + [anon_sym_false] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4399), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4399), + }, + [3912] = { + [sym_function_body] = STATE(3448), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_RBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_DASH_GT] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3913] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [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_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), }, - [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), + [3914] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [3915] = { + [sym__alpha_identifier] = ACTIONS(4886), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_typealias] = ACTIONS(4886), + [anon_sym_class] = ACTIONS(4886), + [anon_sym_interface] = ACTIONS(4886), + [anon_sym_enum] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_val] = ACTIONS(4886), + [anon_sym_var] = ACTIONS(4886), + [anon_sym_object] = ACTIONS(4886), + [anon_sym_fun] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4886), + [anon_sym_set] = ACTIONS(4886), + [anon_sym_this] = ACTIONS(4886), + [anon_sym_super] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4886), + [anon_sym_for] = ACTIONS(4886), + [anon_sym_while] = ACTIONS(4886), + [anon_sym_do] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4886), + [anon_sym_if] = ACTIONS(4886), + [anon_sym_when] = ACTIONS(4886), + [anon_sym_try] = ACTIONS(4886), + [anon_sym_throw] = ACTIONS(4886), + [anon_sym_return] = ACTIONS(4886), + [anon_sym_continue] = ACTIONS(4886), + [anon_sym_break] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_suspend] = ACTIONS(4886), + [anon_sym_sealed] = ACTIONS(4886), + [anon_sym_annotation] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4886), + [anon_sym_inner] = ACTIONS(4886), + [anon_sym_value] = ACTIONS(4886), + [anon_sym_override] = ACTIONS(4886), + [anon_sym_lateinit] = ACTIONS(4886), + [anon_sym_public] = ACTIONS(4886), + [anon_sym_private] = ACTIONS(4886), + [anon_sym_internal] = ACTIONS(4886), + [anon_sym_protected] = ACTIONS(4886), + [anon_sym_tailrec] = ACTIONS(4886), + [anon_sym_operator] = ACTIONS(4886), + [anon_sym_infix] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym_external] = ACTIONS(4886), + [sym_property_modifier] = ACTIONS(4886), + [anon_sym_abstract] = ACTIONS(4886), + [anon_sym_final] = ACTIONS(4886), + [anon_sym_open] = ACTIONS(4886), + [anon_sym_vararg] = ACTIONS(4886), + [anon_sym_noinline] = ACTIONS(4886), + [anon_sym_crossinline] = ACTIONS(4886), + [anon_sym_expect] = ACTIONS(4886), + [anon_sym_actual] = ACTIONS(4886), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4888), + [anon_sym_continue_AT] = ACTIONS(4888), + [anon_sym_break_AT] = ACTIONS(4888), + [anon_sym_this_AT] = ACTIONS(4888), + [anon_sym_super_AT] = ACTIONS(4888), + [sym_real_literal] = ACTIONS(4888), + [sym_integer_literal] = ACTIONS(4886), + [sym_hex_literal] = ACTIONS(4888), + [sym_bin_literal] = ACTIONS(4888), + [anon_sym_true] = ACTIONS(4886), + [anon_sym_false] = ACTIONS(4886), + [anon_sym_SQUOTE] = ACTIONS(4888), + [sym__backtick_identifier] = ACTIONS(4888), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4888), + }, + [3916] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3933), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_object] = ACTIONS(4690), + [anon_sym_fun] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_this] = ACTIONS(4690), + [anon_sym_super] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4690), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_if] = ACTIONS(4690), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_when] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_throw] = ACTIONS(4690), + [anon_sym_return] = ACTIONS(4690), + [anon_sym_continue] = ACTIONS(4690), + [anon_sym_break] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4692), + [anon_sym_continue_AT] = ACTIONS(4692), + [anon_sym_break_AT] = ACTIONS(4692), + [anon_sym_this_AT] = ACTIONS(4692), + [anon_sym_super_AT] = ACTIONS(4692), + [sym_real_literal] = ACTIONS(4692), + [sym_integer_literal] = ACTIONS(4690), + [sym_hex_literal] = ACTIONS(4692), + [sym_bin_literal] = ACTIONS(4692), + [anon_sym_true] = ACTIONS(4690), + [anon_sym_false] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4692), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4692), + }, + [3917] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + }, + [3918] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7163), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + }, + [3919] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [3920] = { + [sym__alpha_identifier] = ACTIONS(7165), + [anon_sym_AT] = ACTIONS(7167), + [anon_sym_LBRACK] = ACTIONS(7167), + [anon_sym_typealias] = ACTIONS(7165), + [anon_sym_class] = ACTIONS(7165), + [anon_sym_interface] = ACTIONS(7165), + [anon_sym_enum] = ACTIONS(7165), + [anon_sym_LBRACE] = ACTIONS(7167), + [anon_sym_LPAREN] = ACTIONS(7167), + [anon_sym_val] = ACTIONS(7165), + [anon_sym_var] = ACTIONS(7165), + [anon_sym_object] = ACTIONS(7165), + [anon_sym_fun] = ACTIONS(7165), + [anon_sym_get] = ACTIONS(7165), + [anon_sym_set] = ACTIONS(7165), + [anon_sym_this] = ACTIONS(7165), + [anon_sym_super] = ACTIONS(7165), + [anon_sym_STAR] = ACTIONS(7167), + [sym_label] = ACTIONS(7165), + [anon_sym_for] = ACTIONS(7165), + [anon_sym_while] = ACTIONS(7165), + [anon_sym_do] = ACTIONS(7165), + [anon_sym_null] = ACTIONS(7165), + [anon_sym_if] = ACTIONS(7165), + [anon_sym_when] = ACTIONS(7165), + [anon_sym_try] = ACTIONS(7165), + [anon_sym_throw] = ACTIONS(7165), + [anon_sym_return] = ACTIONS(7165), + [anon_sym_continue] = ACTIONS(7165), + [anon_sym_break] = ACTIONS(7165), + [anon_sym_COLON_COLON] = ACTIONS(7167), + [anon_sym_PLUS] = ACTIONS(7165), + [anon_sym_DASH] = ACTIONS(7165), + [anon_sym_PLUS_PLUS] = ACTIONS(7167), + [anon_sym_DASH_DASH] = ACTIONS(7167), + [anon_sym_BANG] = ACTIONS(7167), + [anon_sym_suspend] = ACTIONS(7165), + [anon_sym_sealed] = ACTIONS(7165), + [anon_sym_annotation] = ACTIONS(7165), + [anon_sym_data] = ACTIONS(7165), + [anon_sym_inner] = ACTIONS(7165), + [anon_sym_value] = ACTIONS(7165), + [anon_sym_override] = ACTIONS(7165), + [anon_sym_lateinit] = ACTIONS(7165), + [anon_sym_public] = ACTIONS(7165), + [anon_sym_private] = ACTIONS(7165), + [anon_sym_internal] = ACTIONS(7165), + [anon_sym_protected] = ACTIONS(7165), + [anon_sym_tailrec] = ACTIONS(7165), + [anon_sym_operator] = ACTIONS(7165), + [anon_sym_infix] = ACTIONS(7165), + [anon_sym_inline] = ACTIONS(7165), + [anon_sym_external] = ACTIONS(7165), + [sym_property_modifier] = ACTIONS(7165), + [anon_sym_abstract] = ACTIONS(7165), + [anon_sym_final] = ACTIONS(7165), + [anon_sym_open] = ACTIONS(7165), + [anon_sym_vararg] = ACTIONS(7165), + [anon_sym_noinline] = ACTIONS(7165), + [anon_sym_crossinline] = ACTIONS(7165), + [anon_sym_expect] = ACTIONS(7165), + [anon_sym_actual] = ACTIONS(7165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7167), + [anon_sym_continue_AT] = ACTIONS(7167), + [anon_sym_break_AT] = ACTIONS(7167), + [anon_sym_this_AT] = ACTIONS(7167), + [anon_sym_super_AT] = ACTIONS(7167), + [sym_real_literal] = ACTIONS(7167), + [sym_integer_literal] = ACTIONS(7165), + [sym_hex_literal] = ACTIONS(7167), + [sym_bin_literal] = ACTIONS(7167), + [anon_sym_true] = ACTIONS(7165), + [anon_sym_false] = ACTIONS(7165), + [anon_sym_SQUOTE] = ACTIONS(7167), + [sym__backtick_identifier] = ACTIONS(7167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7167), + }, + [3921] = { + [sym__alpha_identifier] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [sym_label] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3340), + [anon_sym_QMARK_COLON] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_as_QMARK] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_BANG_BANG] = ACTIONS(3340), + [anon_sym_suspend] = ACTIONS(3338), + [anon_sym_sealed] = ACTIONS(3338), + [anon_sym_annotation] = ACTIONS(3338), + [anon_sym_data] = ACTIONS(3338), + [anon_sym_inner] = ACTIONS(3338), + [anon_sym_value] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_lateinit] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_internal] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_tailrec] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_infix] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym_external] = ACTIONS(3338), + [sym_property_modifier] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_final] = ACTIONS(3338), + [anon_sym_open] = ACTIONS(3338), + [anon_sym_vararg] = ACTIONS(3338), + [anon_sym_noinline] = ACTIONS(3338), + [anon_sym_crossinline] = ACTIONS(3338), + [anon_sym_expect] = ACTIONS(3338), + [anon_sym_actual] = ACTIONS(3338), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3340), + [sym__automatic_semicolon] = ACTIONS(3340), + [sym_safe_nav] = ACTIONS(3340), + [sym_multiline_comment] = ACTIONS(3), + }, + [3922] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7169), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + }, + [3923] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7171), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + }, + [3924] = { + [sym__alpha_identifier] = ACTIONS(4914), + [anon_sym_AT] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4914), + [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_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), + }, + [3925] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7173), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = 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), + }, + [3926] = { + [sym__alpha_identifier] = ACTIONS(4918), + [anon_sym_AT] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4918), + [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_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(4972), - [sym__automatic_semicolon] = ACTIONS(4972), - [sym_safe_nav] = ACTIONS(4972), + [sym__backtick_identifier] = ACTIONS(4920), + [sym__automatic_semicolon] = ACTIONS(4920), + [sym_safe_nav] = ACTIONS(4920), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3927] = { + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3928] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4960), - [sym__automatic_semicolon] = ACTIONS(4960), - [sym_safe_nav] = ACTIONS(4960), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3929] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3930] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3931] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4738), }, - [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), + [3932] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_DASH_GT] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3933] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3933), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_object] = ACTIONS(4665), + [anon_sym_fun] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_this] = ACTIONS(4665), + [anon_sym_super] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4667), + [sym_label] = ACTIONS(4665), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_null] = ACTIONS(4665), + [anon_sym_if] = ACTIONS(4665), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_try] = ACTIONS(4665), + [anon_sym_throw] = ACTIONS(4665), + [anon_sym_return] = ACTIONS(4665), + [anon_sym_continue] = ACTIONS(4665), + [anon_sym_break] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4665), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4667), + [anon_sym_continue_AT] = ACTIONS(4667), + [anon_sym_break_AT] = ACTIONS(4667), + [anon_sym_this_AT] = ACTIONS(4667), + [anon_sym_super_AT] = ACTIONS(4667), + [sym_real_literal] = ACTIONS(4667), + [sym_integer_literal] = ACTIONS(4665), + [sym_hex_literal] = ACTIONS(4667), + [sym_bin_literal] = ACTIONS(4667), + [anon_sym_true] = ACTIONS(4665), + [anon_sym_false] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4667), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4667), }, - [3977] = { + [3934] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [3935] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_as] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), [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_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), [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_COLON_COLON] = ACTIONS(6750), [anon_sym_PLUS_EQ] = ACTIONS(3162), [anon_sym_DASH_EQ] = ACTIONS(3162), [anon_sym_STAR_EQ] = ACTIONS(3162), @@ -442930,1098 +436235,1396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3936] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(6738), + [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(6750), + [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(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3188), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3937] = { + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3938] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [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(6750), + [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(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3939] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(7178), + [anon_sym_PLUS_EQ] = ACTIONS(4996), + [anon_sym_DASH_EQ] = ACTIONS(4996), + [anon_sym_STAR_EQ] = ACTIONS(4996), + [anon_sym_SLASH_EQ] = ACTIONS(4996), + [anon_sym_PERCENT_EQ] = ACTIONS(4996), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3940] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_EQ] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_PLUS_EQ] = ACTIONS(4464), + [anon_sym_DASH_EQ] = ACTIONS(4464), + [anon_sym_STAR_EQ] = ACTIONS(4464), + [anon_sym_SLASH_EQ] = ACTIONS(4464), + [anon_sym_PERCENT_EQ] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4462), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3941] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + }, + [3942] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [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_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(4780), - [sym__automatic_semicolon] = ACTIONS(4780), - [sym_safe_nav] = ACTIONS(4780), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3943] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_suspend] = ACTIONS(5133), + [anon_sym_sealed] = ACTIONS(5133), + [anon_sym_annotation] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_override] = ACTIONS(5133), + [anon_sym_lateinit] = ACTIONS(5133), + [anon_sym_public] = ACTIONS(5133), + [anon_sym_private] = ACTIONS(5133), + [anon_sym_internal] = ACTIONS(5133), + [anon_sym_protected] = ACTIONS(5133), + [anon_sym_tailrec] = ACTIONS(5133), + [anon_sym_operator] = ACTIONS(5133), + [anon_sym_infix] = ACTIONS(5133), + [anon_sym_inline] = ACTIONS(5133), + [anon_sym_external] = ACTIONS(5133), + [sym_property_modifier] = ACTIONS(5133), + [anon_sym_abstract] = ACTIONS(5133), + [anon_sym_final] = ACTIONS(5133), + [anon_sym_open] = ACTIONS(5133), + [anon_sym_vararg] = ACTIONS(5133), + [anon_sym_noinline] = ACTIONS(5133), + [anon_sym_crossinline] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5135), + [sym__automatic_semicolon] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3944] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [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(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + }, + [3945] = { + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [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(4265), - [sym__automatic_semicolon] = ACTIONS(4265), - [sym_safe_nav] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3946] = { + [sym__alpha_identifier] = ACTIONS(5199), + [anon_sym_AT] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_DOT] = ACTIONS(5199), + [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_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(4900), - [sym__automatic_semicolon] = ACTIONS(4900), - [sym_safe_nav] = ACTIONS(4900), + [sym__backtick_identifier] = ACTIONS(5201), + [sym__automatic_semicolon] = ACTIONS(5201), + [sym_safe_nav] = ACTIONS(5201), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3947] = { + [sym_function_body] = STATE(3087), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_object] = ACTIONS(4385), + [anon_sym_fun] = 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(4387), + [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_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(4387), + [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), + }, + [3948] = { + [sym__alpha_identifier] = ACTIONS(7181), + [anon_sym_AT] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_typealias] = ACTIONS(7181), + [anon_sym_class] = ACTIONS(7181), + [anon_sym_interface] = ACTIONS(7181), + [anon_sym_enum] = ACTIONS(7181), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LPAREN] = ACTIONS(7183), + [anon_sym_val] = ACTIONS(7181), + [anon_sym_var] = ACTIONS(7181), + [anon_sym_object] = ACTIONS(7181), + [anon_sym_fun] = ACTIONS(7181), + [anon_sym_get] = ACTIONS(7181), + [anon_sym_set] = ACTIONS(7181), + [anon_sym_this] = ACTIONS(7181), + [anon_sym_super] = ACTIONS(7181), + [anon_sym_STAR] = ACTIONS(7183), + [sym_label] = ACTIONS(7181), + [anon_sym_for] = ACTIONS(7181), + [anon_sym_while] = ACTIONS(7181), + [anon_sym_do] = ACTIONS(7181), + [anon_sym_null] = ACTIONS(7181), + [anon_sym_if] = ACTIONS(7181), + [anon_sym_when] = ACTIONS(7181), + [anon_sym_try] = ACTIONS(7181), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_return] = ACTIONS(7181), + [anon_sym_continue] = ACTIONS(7181), + [anon_sym_break] = ACTIONS(7181), + [anon_sym_COLON_COLON] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7181), + [anon_sym_DASH] = ACTIONS(7181), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_BANG] = ACTIONS(7183), + [anon_sym_suspend] = ACTIONS(7181), + [anon_sym_sealed] = ACTIONS(7181), + [anon_sym_annotation] = ACTIONS(7181), + [anon_sym_data] = ACTIONS(7181), + [anon_sym_inner] = ACTIONS(7181), + [anon_sym_value] = ACTIONS(7181), + [anon_sym_override] = ACTIONS(7181), + [anon_sym_lateinit] = ACTIONS(7181), + [anon_sym_public] = ACTIONS(7181), + [anon_sym_private] = ACTIONS(7181), + [anon_sym_internal] = ACTIONS(7181), + [anon_sym_protected] = ACTIONS(7181), + [anon_sym_tailrec] = ACTIONS(7181), + [anon_sym_operator] = ACTIONS(7181), + [anon_sym_infix] = ACTIONS(7181), + [anon_sym_inline] = ACTIONS(7181), + [anon_sym_external] = ACTIONS(7181), + [sym_property_modifier] = ACTIONS(7181), + [anon_sym_abstract] = ACTIONS(7181), + [anon_sym_final] = ACTIONS(7181), + [anon_sym_open] = ACTIONS(7181), + [anon_sym_vararg] = ACTIONS(7181), + [anon_sym_noinline] = ACTIONS(7181), + [anon_sym_crossinline] = ACTIONS(7181), + [anon_sym_expect] = ACTIONS(7181), + [anon_sym_actual] = ACTIONS(7181), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7183), + [anon_sym_continue_AT] = ACTIONS(7183), + [anon_sym_break_AT] = ACTIONS(7183), + [anon_sym_this_AT] = ACTIONS(7183), + [anon_sym_super_AT] = ACTIONS(7183), + [sym_real_literal] = ACTIONS(7183), + [sym_integer_literal] = ACTIONS(7181), + [sym_hex_literal] = ACTIONS(7183), + [sym_bin_literal] = ACTIONS(7183), + [anon_sym_true] = ACTIONS(7181), + [anon_sym_false] = ACTIONS(7181), + [anon_sym_SQUOTE] = ACTIONS(7183), + [sym__backtick_identifier] = ACTIONS(7183), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7183), }, - [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), + [3949] = { + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_PLUS_EQ] = ACTIONS(4253), + [anon_sym_DASH_EQ] = ACTIONS(4253), + [anon_sym_STAR_EQ] = ACTIONS(4253), + [anon_sym_SLASH_EQ] = ACTIONS(4253), + [anon_sym_PERCENT_EQ] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3950] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3951] = { + [sym_function_body] = STATE(3096), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_object] = ACTIONS(4251), + [anon_sym_fun] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_this] = ACTIONS(4251), + [anon_sym_super] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4251), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_when] = ACTIONS(4251), + [anon_sym_try] = ACTIONS(4251), + [anon_sym_throw] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4253), + [anon_sym_continue_AT] = ACTIONS(4253), + [anon_sym_break_AT] = ACTIONS(4253), + [anon_sym_this_AT] = ACTIONS(4253), + [anon_sym_super_AT] = ACTIONS(4253), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4253), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4253), + }, + [3952] = { + [sym__alpha_identifier] = ACTIONS(4778), + [anon_sym_AT] = ACTIONS(4780), + [anon_sym_LBRACK] = ACTIONS(4780), + [anon_sym_DOT] = ACTIONS(4778), + [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_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(4784), - [sym__automatic_semicolon] = ACTIONS(4784), - [sym_safe_nav] = ACTIONS(4784), + [sym__backtick_identifier] = ACTIONS(4780), + [sym__automatic_semicolon] = ACTIONS(4780), + [sym_safe_nav] = ACTIONS(4780), [sym_multiline_comment] = ACTIONS(3), }, - [3991] = { + [3953] = { [sym__alpha_identifier] = ACTIONS(4874), [anon_sym_AT] = ACTIONS(4876), [anon_sym_LBRACK] = ACTIONS(4876), + [anon_sym_DOT] = ACTIONS(4874), [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_LPAREN] = ACTIONS(4876), [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), @@ -444088,650 +437691,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4876), [sym_multiline_comment] = ACTIONS(3), }, - [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), - }, - [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), - }, - [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), + [3954] = { + [sym__alpha_identifier] = ACTIONS(4870), + [anon_sym_AT] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_DOT] = ACTIONS(4870), + [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_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), }, - [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), + [3955] = { + [sym_function_body] = STATE(3100), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = 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), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), - [sym__backtick_identifier] = ACTIONS(4976), - [sym__automatic_semicolon] = ACTIONS(4976), - [sym_safe_nav] = ACTIONS(4976), + [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), }, - [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), + [3956] = { + [sym__alpha_identifier] = ACTIONS(4866), + [anon_sym_AT] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(4868), + [anon_sym_DOT] = ACTIONS(4866), + [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_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), }, - [3997] = { - [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_DOT] = ACTIONS(4934), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_get] = ACTIONS(4934), - [anon_sym_set] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4934), - [sym_label] = ACTIONS(4936), - [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_else] = 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_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), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4936), - [sym__automatic_semicolon] = ACTIONS(4936), - [sym_safe_nav] = ACTIONS(4936), + [3957] = { + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [sym_label] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_suspend] = ACTIONS(4020), + [anon_sym_sealed] = ACTIONS(4020), + [anon_sym_annotation] = ACTIONS(4020), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_override] = ACTIONS(4020), + [anon_sym_lateinit] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_internal] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_tailrec] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_infix] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym_external] = ACTIONS(4020), + [sym_property_modifier] = ACTIONS(4020), + [anon_sym_abstract] = ACTIONS(4020), + [anon_sym_final] = ACTIONS(4020), + [anon_sym_open] = ACTIONS(4020), + [anon_sym_vararg] = ACTIONS(4020), + [anon_sym_noinline] = ACTIONS(4020), + [anon_sym_crossinline] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4022), + [sym__automatic_semicolon] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), [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), + [3958] = { + [sym__alpha_identifier] = ACTIONS(5067), + [anon_sym_AT] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5067), + [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_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), - [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), - }, - [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__backtick_identifier] = ACTIONS(5069), + [sym__automatic_semicolon] = ACTIONS(5069), + [sym_safe_nav] = ACTIONS(5069), [sym_multiline_comment] = ACTIONS(3), }, - [4000] = { + [3959] = { [sym__alpha_identifier] = ACTIONS(4786), [anon_sym_AT] = ACTIONS(4788), [anon_sym_LBRACK] = ACTIONS(4788), + [anon_sym_DOT] = ACTIONS(4786), [anon_sym_as] = ACTIONS(4786), [anon_sym_EQ] = ACTIONS(4786), [anon_sym_LBRACE] = ACTIONS(4788), @@ -444741,7 +438105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -444803,495 +438166,2816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(4788), + [sym__automatic_semicolon] = ACTIONS(4788), + [sym_safe_nav] = ACTIONS(4788), + [sym_multiline_comment] = ACTIONS(3), + }, + [3960] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_suspend] = ACTIONS(5081), + [anon_sym_sealed] = ACTIONS(5081), + [anon_sym_annotation] = ACTIONS(5081), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_override] = ACTIONS(5081), + [anon_sym_lateinit] = ACTIONS(5081), + [anon_sym_public] = ACTIONS(5081), + [anon_sym_private] = ACTIONS(5081), + [anon_sym_internal] = ACTIONS(5081), + [anon_sym_protected] = ACTIONS(5081), + [anon_sym_tailrec] = ACTIONS(5081), + [anon_sym_operator] = ACTIONS(5081), + [anon_sym_infix] = ACTIONS(5081), + [anon_sym_inline] = ACTIONS(5081), + [anon_sym_external] = ACTIONS(5081), + [sym_property_modifier] = ACTIONS(5081), + [anon_sym_abstract] = ACTIONS(5081), + [anon_sym_final] = ACTIONS(5081), + [anon_sym_open] = ACTIONS(5081), + [anon_sym_vararg] = ACTIONS(5081), + [anon_sym_noinline] = ACTIONS(5081), + [anon_sym_crossinline] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5083), + [sym__automatic_semicolon] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), + [sym_multiline_comment] = ACTIONS(3), + }, + [3961] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + }, + [3962] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_object] = ACTIONS(4462), + [anon_sym_fun] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_this] = ACTIONS(4462), + [anon_sym_super] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4462), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_when] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4464), + [anon_sym_continue_AT] = ACTIONS(4464), + [anon_sym_break_AT] = ACTIONS(4464), + [anon_sym_this_AT] = ACTIONS(4464), + [anon_sym_super_AT] = ACTIONS(4464), + [sym_real_literal] = ACTIONS(4464), + [sym_integer_literal] = ACTIONS(4462), + [sym_hex_literal] = ACTIONS(4464), + [sym_bin_literal] = ACTIONS(4464), + [anon_sym_true] = ACTIONS(4462), + [anon_sym_false] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4464), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4464), + }, + [3963] = { + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_EQ] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(4228), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4228), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3964] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [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_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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3965] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + }, + [3966] = { + [sym__alpha_identifier] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_as] = ACTIONS(4403), + [anon_sym_EQ] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_RBRACE] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym_COMMA] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [anon_sym_where] = ACTIONS(4403), + [anon_sym_SEMI] = ACTIONS(4405), + [anon_sym_get] = ACTIONS(4403), + [anon_sym_set] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [sym_label] = ACTIONS(4405), + [anon_sym_in] = ACTIONS(4403), + [anon_sym_DOT_DOT] = ACTIONS(4405), + [anon_sym_QMARK_COLON] = ACTIONS(4405), + [anon_sym_AMP_AMP] = ACTIONS(4405), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_else] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_PLUS_EQ] = ACTIONS(4405), + [anon_sym_DASH_EQ] = ACTIONS(4405), + [anon_sym_STAR_EQ] = ACTIONS(4405), + [anon_sym_SLASH_EQ] = ACTIONS(4405), + [anon_sym_PERCENT_EQ] = ACTIONS(4405), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4405), + [anon_sym_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4405), + [anon_sym_LT_EQ] = ACTIONS(4405), + [anon_sym_GT_EQ] = ACTIONS(4405), + [anon_sym_BANGin] = ACTIONS(4405), + [anon_sym_is] = ACTIONS(4403), + [anon_sym_BANGis] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_as_QMARK] = ACTIONS(4405), + [anon_sym_PLUS_PLUS] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4405), + [anon_sym_BANG_BANG] = ACTIONS(4405), + [anon_sym_suspend] = ACTIONS(4403), + [anon_sym_sealed] = ACTIONS(4403), + [anon_sym_annotation] = ACTIONS(4403), + [anon_sym_data] = ACTIONS(4403), + [anon_sym_inner] = ACTIONS(4403), + [anon_sym_value] = ACTIONS(4403), + [anon_sym_override] = ACTIONS(4403), + [anon_sym_lateinit] = ACTIONS(4403), + [anon_sym_public] = ACTIONS(4403), + [anon_sym_private] = ACTIONS(4403), + [anon_sym_internal] = ACTIONS(4403), + [anon_sym_protected] = ACTIONS(4403), + [anon_sym_tailrec] = ACTIONS(4403), + [anon_sym_operator] = ACTIONS(4403), + [anon_sym_infix] = ACTIONS(4403), + [anon_sym_inline] = ACTIONS(4403), + [anon_sym_external] = ACTIONS(4403), + [sym_property_modifier] = ACTIONS(4403), + [anon_sym_abstract] = ACTIONS(4403), + [anon_sym_final] = ACTIONS(4403), + [anon_sym_open] = ACTIONS(4403), + [anon_sym_vararg] = ACTIONS(4403), + [anon_sym_noinline] = ACTIONS(4403), + [anon_sym_crossinline] = ACTIONS(4403), + [anon_sym_expect] = ACTIONS(4403), + [anon_sym_actual] = ACTIONS(4403), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4405), + [sym__automatic_semicolon] = ACTIONS(4405), + [sym_safe_nav] = ACTIONS(4405), + [sym_multiline_comment] = ACTIONS(3), + }, + [3967] = { + [sym__alpha_identifier] = ACTIONS(4411), + [anon_sym_AT] = ACTIONS(4413), + [anon_sym_LBRACK] = ACTIONS(4413), + [anon_sym_DOT] = ACTIONS(4411), + [anon_sym_as] = ACTIONS(4411), + [anon_sym_EQ] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_RBRACE] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_COMMA] = ACTIONS(4413), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [anon_sym_where] = ACTIONS(4411), + [anon_sym_SEMI] = ACTIONS(4413), + [anon_sym_get] = ACTIONS(4411), + [anon_sym_set] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4411), + [sym_label] = ACTIONS(4413), + [anon_sym_in] = ACTIONS(4411), + [anon_sym_DOT_DOT] = ACTIONS(4413), + [anon_sym_QMARK_COLON] = ACTIONS(4413), + [anon_sym_AMP_AMP] = ACTIONS(4413), + [anon_sym_PIPE_PIPE] = ACTIONS(4413), + [anon_sym_else] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_PLUS_EQ] = ACTIONS(4413), + [anon_sym_DASH_EQ] = ACTIONS(4413), + [anon_sym_STAR_EQ] = ACTIONS(4413), + [anon_sym_SLASH_EQ] = ACTIONS(4413), + [anon_sym_PERCENT_EQ] = ACTIONS(4413), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), + [anon_sym_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), + [anon_sym_LT_EQ] = ACTIONS(4413), + [anon_sym_GT_EQ] = ACTIONS(4413), + [anon_sym_BANGin] = ACTIONS(4413), + [anon_sym_is] = ACTIONS(4411), + [anon_sym_BANGis] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4411), + [anon_sym_DASH] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_as_QMARK] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_BANG_BANG] = ACTIONS(4413), + [anon_sym_suspend] = ACTIONS(4411), + [anon_sym_sealed] = ACTIONS(4411), + [anon_sym_annotation] = ACTIONS(4411), + [anon_sym_data] = ACTIONS(4411), + [anon_sym_inner] = ACTIONS(4411), + [anon_sym_value] = ACTIONS(4411), + [anon_sym_override] = ACTIONS(4411), + [anon_sym_lateinit] = ACTIONS(4411), + [anon_sym_public] = ACTIONS(4411), + [anon_sym_private] = ACTIONS(4411), + [anon_sym_internal] = ACTIONS(4411), + [anon_sym_protected] = ACTIONS(4411), + [anon_sym_tailrec] = ACTIONS(4411), + [anon_sym_operator] = ACTIONS(4411), + [anon_sym_infix] = ACTIONS(4411), + [anon_sym_inline] = ACTIONS(4411), + [anon_sym_external] = ACTIONS(4411), + [sym_property_modifier] = ACTIONS(4411), + [anon_sym_abstract] = ACTIONS(4411), + [anon_sym_final] = ACTIONS(4411), + [anon_sym_open] = ACTIONS(4411), + [anon_sym_vararg] = ACTIONS(4411), + [anon_sym_noinline] = ACTIONS(4411), + [anon_sym_crossinline] = ACTIONS(4411), + [anon_sym_expect] = ACTIONS(4411), + [anon_sym_actual] = ACTIONS(4411), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4413), + [sym__automatic_semicolon] = ACTIONS(4413), + [sym_safe_nav] = ACTIONS(4413), + [sym_multiline_comment] = ACTIONS(3), + }, + [3968] = { + [sym__alpha_identifier] = ACTIONS(4393), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_as] = ACTIONS(4393), + [anon_sym_EQ] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_COMMA] = ACTIONS(4395), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_where] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym_get] = ACTIONS(4393), + [anon_sym_set] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [sym_label] = ACTIONS(4395), + [anon_sym_in] = ACTIONS(4393), + [anon_sym_DOT_DOT] = ACTIONS(4395), + [anon_sym_QMARK_COLON] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_PIPE_PIPE] = ACTIONS(4395), + [anon_sym_else] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_PLUS_EQ] = ACTIONS(4395), + [anon_sym_DASH_EQ] = ACTIONS(4395), + [anon_sym_STAR_EQ] = ACTIONS(4395), + [anon_sym_SLASH_EQ] = ACTIONS(4395), + [anon_sym_PERCENT_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ] = ACTIONS(4393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ] = ACTIONS(4393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_BANGin] = ACTIONS(4395), + [anon_sym_is] = ACTIONS(4393), + [anon_sym_BANGis] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4393), + [anon_sym_PERCENT] = ACTIONS(4393), + [anon_sym_as_QMARK] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_BANG_BANG] = ACTIONS(4395), + [anon_sym_suspend] = ACTIONS(4393), + [anon_sym_sealed] = ACTIONS(4393), + [anon_sym_annotation] = ACTIONS(4393), + [anon_sym_data] = ACTIONS(4393), + [anon_sym_inner] = ACTIONS(4393), + [anon_sym_value] = ACTIONS(4393), + [anon_sym_override] = ACTIONS(4393), + [anon_sym_lateinit] = ACTIONS(4393), + [anon_sym_public] = ACTIONS(4393), + [anon_sym_private] = ACTIONS(4393), + [anon_sym_internal] = ACTIONS(4393), + [anon_sym_protected] = ACTIONS(4393), + [anon_sym_tailrec] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_infix] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym_external] = ACTIONS(4393), + [sym_property_modifier] = ACTIONS(4393), + [anon_sym_abstract] = ACTIONS(4393), + [anon_sym_final] = ACTIONS(4393), + [anon_sym_open] = ACTIONS(4393), + [anon_sym_vararg] = ACTIONS(4393), + [anon_sym_noinline] = ACTIONS(4393), + [anon_sym_crossinline] = ACTIONS(4393), + [anon_sym_expect] = ACTIONS(4393), + [anon_sym_actual] = ACTIONS(4393), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4395), + [sym__automatic_semicolon] = ACTIONS(4395), + [sym_safe_nav] = ACTIONS(4395), + [sym_multiline_comment] = ACTIONS(3), + }, + [3969] = { + [sym__alpha_identifier] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [sym_label] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3135), + [anon_sym_QMARK_COLON] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3135), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_as_QMARK] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_BANG_BANG] = ACTIONS(3135), + [anon_sym_suspend] = ACTIONS(3133), + [anon_sym_sealed] = ACTIONS(3133), + [anon_sym_annotation] = ACTIONS(3133), + [anon_sym_data] = ACTIONS(3133), + [anon_sym_inner] = ACTIONS(3133), + [anon_sym_value] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_lateinit] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_internal] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_tailrec] = ACTIONS(3133), + [anon_sym_operator] = ACTIONS(3133), + [anon_sym_infix] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_external] = ACTIONS(3133), + [sym_property_modifier] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_open] = ACTIONS(3133), + [anon_sym_vararg] = ACTIONS(3133), + [anon_sym_noinline] = ACTIONS(3133), + [anon_sym_crossinline] = ACTIONS(3133), + [anon_sym_expect] = ACTIONS(3133), + [anon_sym_actual] = ACTIONS(3133), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3135), + [sym__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(3135), + [sym_multiline_comment] = ACTIONS(3), + }, + [3970] = { + [sym_function_body] = STATE(3126), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_object] = ACTIONS(4194), + [anon_sym_fun] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_this] = ACTIONS(4194), + [anon_sym_super] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4194), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(4194), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_when] = ACTIONS(4194), + [anon_sym_try] = ACTIONS(4194), + [anon_sym_throw] = ACTIONS(4194), + [anon_sym_return] = ACTIONS(4194), + [anon_sym_continue] = ACTIONS(4194), + [anon_sym_break] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4196), + [anon_sym_continue_AT] = ACTIONS(4196), + [anon_sym_break_AT] = ACTIONS(4196), + [anon_sym_this_AT] = ACTIONS(4196), + [anon_sym_super_AT] = ACTIONS(4196), + [sym_real_literal] = ACTIONS(4196), + [sym_integer_literal] = ACTIONS(4194), + [sym_hex_literal] = ACTIONS(4196), + [sym_bin_literal] = ACTIONS(4196), + [anon_sym_true] = ACTIONS(4194), + [anon_sym_false] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4196), + }, + [3971] = { + [sym_type_constraints] = STATE(3341), + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3972] = { + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4178), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [3973] = { + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(6178), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [3974] = { + [sym_class_body] = STATE(3386), + [sym_type_constraints] = STATE(3358), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3975] = { + [sym_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_DASH_GT] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [3976] = { + [sym__alpha_identifier] = ACTIONS(5185), + [anon_sym_AT] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_DOT] = ACTIONS(5185), + [anon_sym_as] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_where] = ACTIONS(5185), + [anon_sym_SEMI] = ACTIONS(5187), + [anon_sym_get] = ACTIONS(5185), + [anon_sym_set] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [sym_label] = ACTIONS(5187), + [anon_sym_in] = ACTIONS(5185), + [anon_sym_DOT_DOT] = ACTIONS(5187), + [anon_sym_QMARK_COLON] = ACTIONS(5187), + [anon_sym_AMP_AMP] = ACTIONS(5187), + [anon_sym_PIPE_PIPE] = ACTIONS(5187), + [anon_sym_else] = ACTIONS(5185), + [anon_sym_COLON_COLON] = ACTIONS(5187), + [anon_sym_PLUS_EQ] = ACTIONS(5187), + [anon_sym_DASH_EQ] = ACTIONS(5187), + [anon_sym_STAR_EQ] = ACTIONS(5187), + [anon_sym_SLASH_EQ] = ACTIONS(5187), + [anon_sym_PERCENT_EQ] = ACTIONS(5187), + [anon_sym_BANG_EQ] = ACTIONS(5185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), + [anon_sym_EQ_EQ] = ACTIONS(5185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), + [anon_sym_LT_EQ] = ACTIONS(5187), + [anon_sym_GT_EQ] = ACTIONS(5187), + [anon_sym_BANGin] = ACTIONS(5187), + [anon_sym_is] = ACTIONS(5185), + [anon_sym_BANGis] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_PERCENT] = ACTIONS(5185), + [anon_sym_as_QMARK] = ACTIONS(5187), + [anon_sym_PLUS_PLUS] = ACTIONS(5187), + [anon_sym_DASH_DASH] = ACTIONS(5187), + [anon_sym_BANG_BANG] = ACTIONS(5187), + [anon_sym_suspend] = ACTIONS(5185), + [anon_sym_sealed] = ACTIONS(5185), + [anon_sym_annotation] = ACTIONS(5185), + [anon_sym_data] = ACTIONS(5185), + [anon_sym_inner] = ACTIONS(5185), + [anon_sym_value] = ACTIONS(5185), + [anon_sym_override] = ACTIONS(5185), + [anon_sym_lateinit] = ACTIONS(5185), + [anon_sym_public] = ACTIONS(5185), + [anon_sym_private] = ACTIONS(5185), + [anon_sym_internal] = ACTIONS(5185), + [anon_sym_protected] = ACTIONS(5185), + [anon_sym_tailrec] = ACTIONS(5185), + [anon_sym_operator] = ACTIONS(5185), + [anon_sym_infix] = ACTIONS(5185), + [anon_sym_inline] = ACTIONS(5185), + [anon_sym_external] = ACTIONS(5185), + [sym_property_modifier] = ACTIONS(5185), + [anon_sym_abstract] = ACTIONS(5185), + [anon_sym_final] = ACTIONS(5185), + [anon_sym_open] = ACTIONS(5185), + [anon_sym_vararg] = ACTIONS(5185), + [anon_sym_noinline] = ACTIONS(5185), + [anon_sym_crossinline] = ACTIONS(5185), + [anon_sym_expect] = ACTIONS(5185), + [anon_sym_actual] = ACTIONS(5185), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5187), + [sym__automatic_semicolon] = ACTIONS(5187), + [sym_safe_nav] = ACTIONS(5187), + [sym_multiline_comment] = ACTIONS(3), + }, + [3977] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + }, + [3978] = { + [sym_class_body] = STATE(3573), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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), + }, + [3979] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4292), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), + [sym_multiline_comment] = ACTIONS(3), + }, + [3980] = { + [sym_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5614), + [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(5474), + [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), + }, + [3981] = { + [sym_class_body] = STATE(3567), + [sym_type_constraints] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7191), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_RBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [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_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(4319), + [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), + }, + [3982] = { + [sym__alpha_identifier] = ACTIONS(5167), + [anon_sym_AT] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5169), + [anon_sym_DOT] = ACTIONS(5167), + [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_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), + }, + [3983] = { + [sym__alpha_identifier] = ACTIONS(5211), + [anon_sym_AT] = ACTIONS(5213), + [anon_sym_LBRACK] = ACTIONS(5213), + [anon_sym_DOT] = ACTIONS(5211), + [anon_sym_as] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5213), + [anon_sym_COMMA] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5211), + [anon_sym_GT] = ACTIONS(5211), + [anon_sym_where] = ACTIONS(5211), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym_get] = ACTIONS(5211), + [anon_sym_set] = ACTIONS(5211), + [anon_sym_STAR] = ACTIONS(5211), + [sym_label] = ACTIONS(5213), + [anon_sym_in] = ACTIONS(5211), + [anon_sym_DOT_DOT] = ACTIONS(5213), + [anon_sym_QMARK_COLON] = ACTIONS(5213), + [anon_sym_AMP_AMP] = ACTIONS(5213), + [anon_sym_PIPE_PIPE] = ACTIONS(5213), + [anon_sym_else] = ACTIONS(5211), + [anon_sym_COLON_COLON] = ACTIONS(5213), + [anon_sym_PLUS_EQ] = ACTIONS(5213), + [anon_sym_DASH_EQ] = ACTIONS(5213), + [anon_sym_STAR_EQ] = ACTIONS(5213), + [anon_sym_SLASH_EQ] = ACTIONS(5213), + [anon_sym_PERCENT_EQ] = ACTIONS(5213), + [anon_sym_BANG_EQ] = ACTIONS(5211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5213), + [anon_sym_EQ_EQ] = ACTIONS(5211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5213), + [anon_sym_LT_EQ] = ACTIONS(5213), + [anon_sym_GT_EQ] = ACTIONS(5213), + [anon_sym_BANGin] = ACTIONS(5213), + [anon_sym_is] = ACTIONS(5211), + [anon_sym_BANGis] = ACTIONS(5213), + [anon_sym_PLUS] = ACTIONS(5211), + [anon_sym_DASH] = ACTIONS(5211), + [anon_sym_SLASH] = ACTIONS(5211), + [anon_sym_PERCENT] = ACTIONS(5211), + [anon_sym_as_QMARK] = ACTIONS(5213), + [anon_sym_PLUS_PLUS] = ACTIONS(5213), + [anon_sym_DASH_DASH] = ACTIONS(5213), + [anon_sym_BANG_BANG] = ACTIONS(5213), + [anon_sym_suspend] = ACTIONS(5211), + [anon_sym_sealed] = ACTIONS(5211), + [anon_sym_annotation] = ACTIONS(5211), + [anon_sym_data] = ACTIONS(5211), + [anon_sym_inner] = ACTIONS(5211), + [anon_sym_value] = ACTIONS(5211), + [anon_sym_override] = ACTIONS(5211), + [anon_sym_lateinit] = ACTIONS(5211), + [anon_sym_public] = ACTIONS(5211), + [anon_sym_private] = ACTIONS(5211), + [anon_sym_internal] = ACTIONS(5211), + [anon_sym_protected] = ACTIONS(5211), + [anon_sym_tailrec] = ACTIONS(5211), + [anon_sym_operator] = ACTIONS(5211), + [anon_sym_infix] = ACTIONS(5211), + [anon_sym_inline] = ACTIONS(5211), + [anon_sym_external] = ACTIONS(5211), + [sym_property_modifier] = ACTIONS(5211), + [anon_sym_abstract] = ACTIONS(5211), + [anon_sym_final] = ACTIONS(5211), + [anon_sym_open] = ACTIONS(5211), + [anon_sym_vararg] = ACTIONS(5211), + [anon_sym_noinline] = ACTIONS(5211), + [anon_sym_crossinline] = ACTIONS(5211), + [anon_sym_expect] = ACTIONS(5211), + [anon_sym_actual] = ACTIONS(5211), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5213), + [sym__automatic_semicolon] = ACTIONS(5213), + [sym_safe_nav] = ACTIONS(5213), + [sym_multiline_comment] = ACTIONS(3), + }, + [3984] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + }, + [3985] = { + [sym__alpha_identifier] = ACTIONS(4806), + [anon_sym_AT] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_DOT] = ACTIONS(4806), + [anon_sym_as] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4808), + [anon_sym_COMMA] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(4806), + [anon_sym_GT] = ACTIONS(4806), + [anon_sym_where] = ACTIONS(4806), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_get] = ACTIONS(4806), + [anon_sym_set] = ACTIONS(4806), + [anon_sym_STAR] = ACTIONS(4806), + [sym_label] = ACTIONS(4808), + [anon_sym_in] = ACTIONS(4806), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_QMARK_COLON] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4806), + [anon_sym_COLON_COLON] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4808), + [anon_sym_DASH_EQ] = ACTIONS(4808), + [anon_sym_STAR_EQ] = ACTIONS(4808), + [anon_sym_SLASH_EQ] = ACTIONS(4808), + [anon_sym_PERCENT_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ] = ACTIONS(4806), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4808), + [anon_sym_EQ_EQ] = ACTIONS(4806), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4808), + [anon_sym_GT_EQ] = ACTIONS(4808), + [anon_sym_BANGin] = ACTIONS(4808), + [anon_sym_is] = ACTIONS(4806), + [anon_sym_BANGis] = ACTIONS(4808), + [anon_sym_PLUS] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_SLASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_as_QMARK] = ACTIONS(4808), + [anon_sym_PLUS_PLUS] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_BANG_BANG] = ACTIONS(4808), + [anon_sym_suspend] = ACTIONS(4806), + [anon_sym_sealed] = ACTIONS(4806), + [anon_sym_annotation] = ACTIONS(4806), + [anon_sym_data] = ACTIONS(4806), + [anon_sym_inner] = ACTIONS(4806), + [anon_sym_value] = ACTIONS(4806), + [anon_sym_override] = ACTIONS(4806), + [anon_sym_lateinit] = ACTIONS(4806), + [anon_sym_public] = ACTIONS(4806), + [anon_sym_private] = ACTIONS(4806), + [anon_sym_internal] = ACTIONS(4806), + [anon_sym_protected] = ACTIONS(4806), + [anon_sym_tailrec] = ACTIONS(4806), + [anon_sym_operator] = ACTIONS(4806), + [anon_sym_infix] = ACTIONS(4806), + [anon_sym_inline] = ACTIONS(4806), + [anon_sym_external] = ACTIONS(4806), + [sym_property_modifier] = ACTIONS(4806), + [anon_sym_abstract] = ACTIONS(4806), + [anon_sym_final] = ACTIONS(4806), + [anon_sym_open] = ACTIONS(4806), + [anon_sym_vararg] = ACTIONS(4806), + [anon_sym_noinline] = ACTIONS(4806), + [anon_sym_crossinline] = ACTIONS(4806), + [anon_sym_expect] = ACTIONS(4806), + [anon_sym_actual] = ACTIONS(4806), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4808), + [sym__automatic_semicolon] = ACTIONS(4808), + [sym_safe_nav] = ACTIONS(4808), + [sym_multiline_comment] = ACTIONS(3), + }, + [3986] = { + [sym_class_body] = STATE(3441), + [sym_type_constraints] = STATE(3304), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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_multiline_comment] = ACTIONS(3), + }, + [3987] = { + [sym__alpha_identifier] = ACTIONS(4994), + [anon_sym_AT] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4994), + [anon_sym_as] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_RBRACE] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_COMMA] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4994), + [anon_sym_GT] = ACTIONS(4994), + [anon_sym_where] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_get] = ACTIONS(4994), + [anon_sym_set] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4994), + [sym_label] = ACTIONS(4996), + [anon_sym_in] = ACTIONS(4994), + [anon_sym_DOT_DOT] = ACTIONS(4996), + [anon_sym_QMARK_COLON] = ACTIONS(4996), + [anon_sym_AMP_AMP] = ACTIONS(4996), + [anon_sym_PIPE_PIPE] = ACTIONS(4996), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(7178), + [anon_sym_PLUS_EQ] = ACTIONS(5011), + [anon_sym_DASH_EQ] = ACTIONS(5011), + [anon_sym_STAR_EQ] = ACTIONS(5011), + [anon_sym_SLASH_EQ] = ACTIONS(5011), + [anon_sym_PERCENT_EQ] = ACTIONS(5011), + [anon_sym_BANG_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4996), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [anon_sym_BANGin] = ACTIONS(4996), + [anon_sym_is] = ACTIONS(4994), + [anon_sym_BANGis] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4994), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_SLASH] = ACTIONS(4994), + [anon_sym_PERCENT] = ACTIONS(4994), + [anon_sym_as_QMARK] = ACTIONS(4996), + [anon_sym_PLUS_PLUS] = ACTIONS(4996), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_BANG_BANG] = ACTIONS(4996), + [anon_sym_suspend] = ACTIONS(4994), + [anon_sym_sealed] = ACTIONS(4994), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4994), + [anon_sym_inner] = ACTIONS(4994), + [anon_sym_value] = ACTIONS(4994), + [anon_sym_override] = ACTIONS(4994), + [anon_sym_lateinit] = ACTIONS(4994), + [anon_sym_public] = ACTIONS(4994), + [anon_sym_private] = ACTIONS(4994), + [anon_sym_internal] = ACTIONS(4994), + [anon_sym_protected] = ACTIONS(4994), + [anon_sym_tailrec] = ACTIONS(4994), + [anon_sym_operator] = ACTIONS(4994), + [anon_sym_infix] = ACTIONS(4994), + [anon_sym_inline] = ACTIONS(4994), + [anon_sym_external] = ACTIONS(4994), + [sym_property_modifier] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_final] = ACTIONS(4994), + [anon_sym_open] = ACTIONS(4994), + [anon_sym_vararg] = ACTIONS(4994), + [anon_sym_noinline] = ACTIONS(4994), + [anon_sym_crossinline] = ACTIONS(4994), + [anon_sym_expect] = ACTIONS(4994), + [anon_sym_actual] = ACTIONS(4994), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4996), + [sym__automatic_semicolon] = ACTIONS(4996), + [sym_safe_nav] = ACTIONS(4996), + [sym_multiline_comment] = ACTIONS(3), + }, + [3988] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3989] = { + [sym__alpha_identifier] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = 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_COMMA] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_GT] = ACTIONS(1808), + [anon_sym_where] = 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), }, - [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), + [3990] = { + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_RBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [anon_sym_DASH_GT] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [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), - [sym__backtick_identifier] = ACTIONS(5026), - [sym__automatic_semicolon] = ACTIONS(5026), - [sym_safe_nav] = ACTIONS(5026), - [sym_multiline_comment] = ACTIONS(3), + [3991] = { + [sym_function_body] = STATE(3161), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [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), + [3992] = { + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(4194), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_PLUS_EQ] = ACTIONS(4196), + [anon_sym_DASH_EQ] = ACTIONS(4196), + [anon_sym_STAR_EQ] = ACTIONS(4196), + [anon_sym_SLASH_EQ] = ACTIONS(4196), + [anon_sym_PERCENT_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4194), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [3993] = { + [sym__alpha_identifier] = ACTIONS(4216), + [anon_sym_AT] = ACTIONS(4218), + [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [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_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), }, - [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), + [3994] = { + [sym__alpha_identifier] = ACTIONS(4782), + [anon_sym_AT] = ACTIONS(4784), + [anon_sym_LBRACK] = ACTIONS(4784), + [anon_sym_DOT] = ACTIONS(4782), + [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_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] = { + [3995] = { [sym__alpha_identifier] = ACTIONS(4790), [anon_sym_AT] = ACTIONS(4792), [anon_sym_LBRACK] = ACTIONS(4792), + [anon_sym_DOT] = ACTIONS(4790), [anon_sym_as] = ACTIONS(4790), [anon_sym_EQ] = ACTIONS(4790), [anon_sym_LBRACE] = ACTIONS(4792), @@ -445301,7 +440985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -445368,170 +441051,491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [3996] = { + [sym__alpha_identifier] = ACTIONS(5017), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_as] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_get] = ACTIONS(5017), + [anon_sym_set] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [sym_label] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5019), + [anon_sym_QMARK_COLON] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_else] = ACTIONS(5017), + [anon_sym_COLON_COLON] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_BANGin] = ACTIONS(5019), + [anon_sym_is] = ACTIONS(5017), + [anon_sym_BANGis] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_PERCENT] = ACTIONS(5017), + [anon_sym_as_QMARK] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_BANG_BANG] = ACTIONS(5019), + [anon_sym_suspend] = ACTIONS(5017), + [anon_sym_sealed] = ACTIONS(5017), + [anon_sym_annotation] = ACTIONS(5017), + [anon_sym_data] = ACTIONS(5017), + [anon_sym_inner] = ACTIONS(5017), + [anon_sym_value] = ACTIONS(5017), + [anon_sym_override] = ACTIONS(5017), + [anon_sym_lateinit] = ACTIONS(5017), + [anon_sym_public] = ACTIONS(5017), + [anon_sym_private] = ACTIONS(5017), + [anon_sym_internal] = ACTIONS(5017), + [anon_sym_protected] = ACTIONS(5017), + [anon_sym_tailrec] = ACTIONS(5017), + [anon_sym_operator] = ACTIONS(5017), + [anon_sym_infix] = ACTIONS(5017), + [anon_sym_inline] = ACTIONS(5017), + [anon_sym_external] = ACTIONS(5017), + [sym_property_modifier] = ACTIONS(5017), + [anon_sym_abstract] = ACTIONS(5017), + [anon_sym_final] = ACTIONS(5017), + [anon_sym_open] = ACTIONS(5017), + [anon_sym_vararg] = ACTIONS(5017), + [anon_sym_noinline] = ACTIONS(5017), + [anon_sym_crossinline] = ACTIONS(5017), + [anon_sym_expect] = ACTIONS(5017), + [anon_sym_actual] = ACTIONS(5017), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5019), + [sym__automatic_semicolon] = ACTIONS(5019), + [sym_safe_nav] = ACTIONS(5019), [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), + [3997] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [4010] = { + [3998] = { + [sym_class_body] = STATE(3913), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_EQ] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_PLUS_EQ] = ACTIONS(4423), + [anon_sym_DASH_EQ] = ACTIONS(4423), + [anon_sym_STAR_EQ] = ACTIONS(4423), + [anon_sym_SLASH_EQ] = ACTIONS(4423), + [anon_sym_PERCENT_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4421), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + }, + [3999] = { + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_PLUS_EQ] = ACTIONS(4167), + [anon_sym_DASH_EQ] = ACTIONS(4167), + [anon_sym_STAR_EQ] = ACTIONS(4167), + [anon_sym_SLASH_EQ] = ACTIONS(4167), + [anon_sym_PERCENT_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [4000] = { + [sym__alpha_identifier] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1814), + [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_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), + }, + [4001] = { + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [4002] = { [sym__alpha_identifier] = ACTIONS(4794), [anon_sym_AT] = ACTIONS(4796), [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DOT] = ACTIONS(4794), [anon_sym_as] = ACTIONS(4794), [anon_sym_EQ] = ACTIONS(4794), [anon_sym_LBRACE] = ACTIONS(4796), @@ -445541,7 +441545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -445608,890 +441611,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4003] = { + [sym__alpha_identifier] = ACTIONS(4970), + [anon_sym_AT] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4970), + [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_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(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__backtick_identifier] = ACTIONS(4972), + [sym__automatic_semicolon] = ACTIONS(4972), + [sym_safe_nav] = ACTIONS(4972), [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), + [4004] = { + [sym__alpha_identifier] = ACTIONS(4858), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_DOT] = ACTIONS(4858), + [anon_sym_as] = ACTIONS(4858), + [anon_sym_EQ] = ACTIONS(4858), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_COMMA] = ACTIONS(4860), + [anon_sym_LT] = ACTIONS(4858), + [anon_sym_GT] = ACTIONS(4858), + [anon_sym_where] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4860), + [anon_sym_in] = ACTIONS(4858), + [anon_sym_DOT_DOT] = ACTIONS(4860), + [anon_sym_QMARK_COLON] = ACTIONS(4860), + [anon_sym_AMP_AMP] = ACTIONS(4860), + [anon_sym_PIPE_PIPE] = ACTIONS(4860), + [anon_sym_else] = ACTIONS(4858), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [anon_sym_PLUS_EQ] = ACTIONS(4860), + [anon_sym_DASH_EQ] = ACTIONS(4860), + [anon_sym_STAR_EQ] = ACTIONS(4860), + [anon_sym_SLASH_EQ] = ACTIONS(4860), + [anon_sym_PERCENT_EQ] = ACTIONS(4860), + [anon_sym_BANG_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4860), + [anon_sym_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4860), + [anon_sym_LT_EQ] = ACTIONS(4860), + [anon_sym_GT_EQ] = ACTIONS(4860), + [anon_sym_BANGin] = ACTIONS(4860), + [anon_sym_is] = ACTIONS(4858), + [anon_sym_BANGis] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_SLASH] = ACTIONS(4858), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4860), + [anon_sym_PLUS_PLUS] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4860), + [anon_sym_BANG_BANG] = ACTIONS(4860), + [anon_sym_suspend] = ACTIONS(4858), + [anon_sym_sealed] = ACTIONS(4858), + [anon_sym_annotation] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4858), + [anon_sym_inner] = ACTIONS(4858), + [anon_sym_value] = ACTIONS(4858), + [anon_sym_override] = ACTIONS(4858), + [anon_sym_lateinit] = ACTIONS(4858), + [anon_sym_public] = ACTIONS(4858), + [anon_sym_private] = ACTIONS(4858), + [anon_sym_internal] = ACTIONS(4858), + [anon_sym_protected] = ACTIONS(4858), + [anon_sym_tailrec] = ACTIONS(4858), + [anon_sym_operator] = ACTIONS(4858), + [anon_sym_infix] = ACTIONS(4858), + [anon_sym_inline] = ACTIONS(4858), + [anon_sym_external] = ACTIONS(4858), + [sym_property_modifier] = ACTIONS(4858), + [anon_sym_abstract] = ACTIONS(4858), + [anon_sym_final] = ACTIONS(4858), + [anon_sym_open] = ACTIONS(4858), + [anon_sym_vararg] = ACTIONS(4858), + [anon_sym_noinline] = ACTIONS(4858), + [anon_sym_crossinline] = ACTIONS(4858), + [anon_sym_expect] = ACTIONS(4858), + [anon_sym_actual] = ACTIONS(4858), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4860), + [sym__automatic_semicolon] = ACTIONS(4860), + [sym_safe_nav] = ACTIONS(4860), [sym_multiline_comment] = ACTIONS(3), }, - [4022] = { + [4005] = { [sym__alpha_identifier] = ACTIONS(5219), [anon_sym_AT] = ACTIONS(5221), [anon_sym_LBRACK] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5219), [anon_sym_as] = ACTIONS(5219), [anon_sym_EQ] = ACTIONS(5219), [anon_sym_LBRACE] = ACTIONS(5221), @@ -446501,7 +441785,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -446568,2308 +441851,3747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4006] = { + [sym__alpha_identifier] = ACTIONS(5155), + [anon_sym_AT] = ACTIONS(5157), + [anon_sym_LBRACK] = ACTIONS(5157), + [anon_sym_DOT] = ACTIONS(5155), + [anon_sym_as] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5157), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5157), + [anon_sym_COMMA] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5155), + [anon_sym_GT] = ACTIONS(5155), + [anon_sym_where] = ACTIONS(5155), + [anon_sym_SEMI] = ACTIONS(5157), + [anon_sym_get] = ACTIONS(5155), + [anon_sym_set] = ACTIONS(5155), + [anon_sym_STAR] = ACTIONS(5155), + [sym_label] = ACTIONS(5157), + [anon_sym_in] = ACTIONS(5155), + [anon_sym_DOT_DOT] = ACTIONS(5157), + [anon_sym_QMARK_COLON] = ACTIONS(5157), + [anon_sym_AMP_AMP] = ACTIONS(5157), + [anon_sym_PIPE_PIPE] = ACTIONS(5157), + [anon_sym_else] = ACTIONS(5155), + [anon_sym_COLON_COLON] = ACTIONS(5157), + [anon_sym_PLUS_EQ] = ACTIONS(5157), + [anon_sym_DASH_EQ] = ACTIONS(5157), + [anon_sym_STAR_EQ] = ACTIONS(5157), + [anon_sym_SLASH_EQ] = ACTIONS(5157), + [anon_sym_PERCENT_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5157), + [anon_sym_LT_EQ] = ACTIONS(5157), + [anon_sym_GT_EQ] = ACTIONS(5157), + [anon_sym_BANGin] = ACTIONS(5157), + [anon_sym_is] = ACTIONS(5155), + [anon_sym_BANGis] = ACTIONS(5157), + [anon_sym_PLUS] = ACTIONS(5155), + [anon_sym_DASH] = ACTIONS(5155), + [anon_sym_SLASH] = ACTIONS(5155), + [anon_sym_PERCENT] = ACTIONS(5155), + [anon_sym_as_QMARK] = ACTIONS(5157), + [anon_sym_PLUS_PLUS] = ACTIONS(5157), + [anon_sym_DASH_DASH] = ACTIONS(5157), + [anon_sym_BANG_BANG] = ACTIONS(5157), + [anon_sym_suspend] = ACTIONS(5155), + [anon_sym_sealed] = ACTIONS(5155), + [anon_sym_annotation] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5155), + [anon_sym_inner] = ACTIONS(5155), + [anon_sym_value] = ACTIONS(5155), + [anon_sym_override] = ACTIONS(5155), + [anon_sym_lateinit] = ACTIONS(5155), + [anon_sym_public] = ACTIONS(5155), + [anon_sym_private] = ACTIONS(5155), + [anon_sym_internal] = ACTIONS(5155), + [anon_sym_protected] = ACTIONS(5155), + [anon_sym_tailrec] = ACTIONS(5155), + [anon_sym_operator] = ACTIONS(5155), + [anon_sym_infix] = ACTIONS(5155), + [anon_sym_inline] = ACTIONS(5155), + [anon_sym_external] = ACTIONS(5155), + [sym_property_modifier] = ACTIONS(5155), + [anon_sym_abstract] = ACTIONS(5155), + [anon_sym_final] = ACTIONS(5155), + [anon_sym_open] = ACTIONS(5155), + [anon_sym_vararg] = ACTIONS(5155), + [anon_sym_noinline] = ACTIONS(5155), + [anon_sym_crossinline] = ACTIONS(5155), + [anon_sym_expect] = ACTIONS(5155), + [anon_sym_actual] = ACTIONS(5155), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5157), + [sym__automatic_semicolon] = ACTIONS(5157), + [sym_safe_nav] = ACTIONS(5157), [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), + [4007] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_suspend] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_annotation] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_lateinit] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_tailrec] = ACTIONS(5101), + [anon_sym_operator] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_inline] = ACTIONS(5101), + [anon_sym_external] = ACTIONS(5101), + [sym_property_modifier] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_vararg] = ACTIONS(5101), + [anon_sym_noinline] = ACTIONS(5101), + [anon_sym_crossinline] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5103), + [sym__automatic_semicolon] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), [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), + [4008] = { + [sym__alpha_identifier] = ACTIONS(7195), + [anon_sym_AT] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_typealias] = ACTIONS(7195), + [anon_sym_class] = ACTIONS(7195), + [anon_sym_interface] = ACTIONS(7195), + [anon_sym_enum] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_LPAREN] = ACTIONS(7197), + [anon_sym_val] = ACTIONS(7195), + [anon_sym_var] = ACTIONS(7195), + [anon_sym_object] = ACTIONS(7195), + [anon_sym_fun] = ACTIONS(7195), + [anon_sym_get] = ACTIONS(7195), + [anon_sym_set] = ACTIONS(7195), + [anon_sym_this] = ACTIONS(7195), + [anon_sym_super] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7197), + [sym_label] = ACTIONS(7195), + [anon_sym_for] = ACTIONS(7195), + [anon_sym_while] = ACTIONS(7195), + [anon_sym_do] = ACTIONS(7195), + [anon_sym_null] = ACTIONS(7195), + [anon_sym_if] = ACTIONS(7195), + [anon_sym_when] = ACTIONS(7195), + [anon_sym_try] = ACTIONS(7195), + [anon_sym_throw] = ACTIONS(7195), + [anon_sym_return] = ACTIONS(7195), + [anon_sym_continue] = ACTIONS(7195), + [anon_sym_break] = ACTIONS(7195), + [anon_sym_COLON_COLON] = ACTIONS(7197), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_BANG] = ACTIONS(7197), + [anon_sym_suspend] = ACTIONS(7195), + [anon_sym_sealed] = ACTIONS(7195), + [anon_sym_annotation] = ACTIONS(7195), + [anon_sym_data] = ACTIONS(7195), + [anon_sym_inner] = ACTIONS(7195), + [anon_sym_value] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_lateinit] = ACTIONS(7195), + [anon_sym_public] = ACTIONS(7195), + [anon_sym_private] = ACTIONS(7195), + [anon_sym_internal] = ACTIONS(7195), + [anon_sym_protected] = ACTIONS(7195), + [anon_sym_tailrec] = ACTIONS(7195), + [anon_sym_operator] = ACTIONS(7195), + [anon_sym_infix] = ACTIONS(7195), + [anon_sym_inline] = ACTIONS(7195), + [anon_sym_external] = ACTIONS(7195), + [sym_property_modifier] = ACTIONS(7195), + [anon_sym_abstract] = ACTIONS(7195), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_open] = ACTIONS(7195), + [anon_sym_vararg] = ACTIONS(7195), + [anon_sym_noinline] = ACTIONS(7195), + [anon_sym_crossinline] = ACTIONS(7195), + [anon_sym_expect] = ACTIONS(7195), + [anon_sym_actual] = ACTIONS(7195), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7197), + [anon_sym_continue_AT] = ACTIONS(7197), + [anon_sym_break_AT] = ACTIONS(7197), + [anon_sym_this_AT] = ACTIONS(7197), + [anon_sym_super_AT] = ACTIONS(7197), + [sym_real_literal] = ACTIONS(7197), + [sym_integer_literal] = ACTIONS(7195), + [sym_hex_literal] = ACTIONS(7197), + [sym_bin_literal] = ACTIONS(7197), + [anon_sym_true] = ACTIONS(7195), + [anon_sym_false] = ACTIONS(7195), + [anon_sym_SQUOTE] = ACTIONS(7197), + [sym__backtick_identifier] = ACTIONS(7197), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7197), + }, + [4009] = { + [sym__alpha_identifier] = ACTIONS(5207), + [anon_sym_AT] = ACTIONS(5209), + [anon_sym_LBRACK] = ACTIONS(5209), + [anon_sym_DOT] = ACTIONS(5207), + [anon_sym_as] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5209), + [anon_sym_RBRACE] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_COMMA] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5207), + [anon_sym_GT] = ACTIONS(5207), + [anon_sym_where] = ACTIONS(5207), + [anon_sym_SEMI] = ACTIONS(5209), + [anon_sym_get] = ACTIONS(5207), + [anon_sym_set] = ACTIONS(5207), + [anon_sym_STAR] = ACTIONS(5207), + [sym_label] = ACTIONS(5209), + [anon_sym_in] = ACTIONS(5207), + [anon_sym_DOT_DOT] = ACTIONS(5209), + [anon_sym_QMARK_COLON] = ACTIONS(5209), + [anon_sym_AMP_AMP] = ACTIONS(5209), + [anon_sym_PIPE_PIPE] = ACTIONS(5209), + [anon_sym_else] = ACTIONS(5207), + [anon_sym_COLON_COLON] = ACTIONS(5209), + [anon_sym_PLUS_EQ] = ACTIONS(5209), + [anon_sym_DASH_EQ] = ACTIONS(5209), + [anon_sym_STAR_EQ] = ACTIONS(5209), + [anon_sym_SLASH_EQ] = ACTIONS(5209), + [anon_sym_PERCENT_EQ] = ACTIONS(5209), + [anon_sym_BANG_EQ] = ACTIONS(5207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5209), + [anon_sym_EQ_EQ] = ACTIONS(5207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5209), + [anon_sym_LT_EQ] = ACTIONS(5209), + [anon_sym_GT_EQ] = ACTIONS(5209), + [anon_sym_BANGin] = ACTIONS(5209), + [anon_sym_is] = ACTIONS(5207), + [anon_sym_BANGis] = ACTIONS(5209), + [anon_sym_PLUS] = ACTIONS(5207), + [anon_sym_DASH] = ACTIONS(5207), + [anon_sym_SLASH] = ACTIONS(5207), + [anon_sym_PERCENT] = ACTIONS(5207), + [anon_sym_as_QMARK] = ACTIONS(5209), + [anon_sym_PLUS_PLUS] = ACTIONS(5209), + [anon_sym_DASH_DASH] = ACTIONS(5209), + [anon_sym_BANG_BANG] = ACTIONS(5209), + [anon_sym_suspend] = ACTIONS(5207), + [anon_sym_sealed] = ACTIONS(5207), + [anon_sym_annotation] = ACTIONS(5207), + [anon_sym_data] = ACTIONS(5207), + [anon_sym_inner] = ACTIONS(5207), + [anon_sym_value] = ACTIONS(5207), + [anon_sym_override] = ACTIONS(5207), + [anon_sym_lateinit] = ACTIONS(5207), + [anon_sym_public] = ACTIONS(5207), + [anon_sym_private] = ACTIONS(5207), + [anon_sym_internal] = ACTIONS(5207), + [anon_sym_protected] = ACTIONS(5207), + [anon_sym_tailrec] = ACTIONS(5207), + [anon_sym_operator] = ACTIONS(5207), + [anon_sym_infix] = ACTIONS(5207), + [anon_sym_inline] = ACTIONS(5207), + [anon_sym_external] = ACTIONS(5207), + [sym_property_modifier] = ACTIONS(5207), + [anon_sym_abstract] = ACTIONS(5207), + [anon_sym_final] = ACTIONS(5207), + [anon_sym_open] = ACTIONS(5207), + [anon_sym_vararg] = ACTIONS(5207), + [anon_sym_noinline] = ACTIONS(5207), + [anon_sym_crossinline] = ACTIONS(5207), + [anon_sym_expect] = ACTIONS(5207), + [anon_sym_actual] = ACTIONS(5207), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5209), + [sym__automatic_semicolon] = ACTIONS(5209), + [sym_safe_nav] = ACTIONS(5209), + [sym_multiline_comment] = ACTIONS(3), + }, + [4010] = { + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(4000), + [anon_sym_STAR_EQ] = ACTIONS(4000), + [anon_sym_SLASH_EQ] = ACTIONS(4000), + [anon_sym_PERCENT_EQ] = ACTIONS(4000), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4000), + [anon_sym_suspend] = ACTIONS(3998), + [anon_sym_sealed] = ACTIONS(3998), + [anon_sym_annotation] = ACTIONS(3998), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(3998), + [anon_sym_lateinit] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_internal] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_tailrec] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_infix] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym_external] = ACTIONS(3998), + [sym_property_modifier] = ACTIONS(3998), + [anon_sym_abstract] = ACTIONS(3998), + [anon_sym_final] = ACTIONS(3998), + [anon_sym_open] = ACTIONS(3998), + [anon_sym_vararg] = ACTIONS(3998), + [anon_sym_noinline] = ACTIONS(3998), + [anon_sym_crossinline] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4000), + [sym_multiline_comment] = ACTIONS(3), + }, + [4011] = { + [sym_function_body] = STATE(3271), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_object] = ACTIONS(4178), + [anon_sym_fun] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_this] = ACTIONS(4178), + [anon_sym_super] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4178), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4178), + [anon_sym_if] = ACTIONS(4178), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_when] = ACTIONS(4178), + [anon_sym_try] = ACTIONS(4178), + [anon_sym_throw] = ACTIONS(4178), + [anon_sym_return] = ACTIONS(4178), + [anon_sym_continue] = ACTIONS(4178), + [anon_sym_break] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4180), + [anon_sym_continue_AT] = ACTIONS(4180), + [anon_sym_break_AT] = ACTIONS(4180), + [anon_sym_this_AT] = ACTIONS(4180), + [anon_sym_super_AT] = ACTIONS(4180), + [sym_real_literal] = ACTIONS(4180), + [sym_integer_literal] = ACTIONS(4178), + [sym_hex_literal] = ACTIONS(4180), + [sym_bin_literal] = ACTIONS(4180), + [anon_sym_true] = ACTIONS(4178), + [anon_sym_false] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4180), + }, + [4012] = { + [sym__alpha_identifier] = ACTIONS(4894), + [anon_sym_AT] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_typealias] = ACTIONS(4894), + [anon_sym_class] = ACTIONS(4894), + [anon_sym_interface] = ACTIONS(4894), + [anon_sym_enum] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_val] = ACTIONS(4894), + [anon_sym_var] = ACTIONS(4894), + [anon_sym_object] = ACTIONS(4894), + [anon_sym_fun] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4894), + [anon_sym_set] = ACTIONS(4894), + [anon_sym_this] = ACTIONS(4894), + [anon_sym_super] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4894), + [anon_sym_for] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_do] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4894), + [anon_sym_if] = 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] = ACTIONS(4894), + [anon_sym_DASH] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4896), + [anon_sym_DASH_DASH] = ACTIONS(4896), + [anon_sym_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4896), + }, + [4013] = { + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_PLUS_EQ] = ACTIONS(3272), + [anon_sym_DASH_EQ] = ACTIONS(3272), + [anon_sym_STAR_EQ] = ACTIONS(3272), + [anon_sym_SLASH_EQ] = ACTIONS(3272), + [anon_sym_PERCENT_EQ] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [4014] = { + [sym__alpha_identifier] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_as] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_where] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_get] = ACTIONS(4375), + [anon_sym_set] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4377), + [anon_sym_in] = ACTIONS(4375), + [anon_sym_DOT_DOT] = ACTIONS(4377), + [anon_sym_QMARK_COLON] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_PIPE_PIPE] = ACTIONS(4377), + [anon_sym_else] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_PLUS_EQ] = ACTIONS(4377), + [anon_sym_DASH_EQ] = ACTIONS(4377), + [anon_sym_STAR_EQ] = ACTIONS(4377), + [anon_sym_SLASH_EQ] = ACTIONS(4377), + [anon_sym_PERCENT_EQ] = ACTIONS(4377), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4377), + [anon_sym_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4377), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_BANGin] = ACTIONS(4377), + [anon_sym_is] = ACTIONS(4375), + [anon_sym_BANGis] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_as_QMARK] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_BANG_BANG] = ACTIONS(4377), + [anon_sym_suspend] = ACTIONS(4375), + [anon_sym_sealed] = ACTIONS(4375), + [anon_sym_annotation] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4375), + [anon_sym_inner] = ACTIONS(4375), + [anon_sym_value] = ACTIONS(4375), + [anon_sym_override] = ACTIONS(4375), + [anon_sym_lateinit] = ACTIONS(4375), + [anon_sym_public] = ACTIONS(4375), + [anon_sym_private] = ACTIONS(4375), + [anon_sym_internal] = ACTIONS(4375), + [anon_sym_protected] = ACTIONS(4375), + [anon_sym_tailrec] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_infix] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym_external] = ACTIONS(4375), + [sym_property_modifier] = ACTIONS(4375), + [anon_sym_abstract] = ACTIONS(4375), + [anon_sym_final] = ACTIONS(4375), + [anon_sym_open] = ACTIONS(4375), + [anon_sym_vararg] = ACTIONS(4375), + [anon_sym_noinline] = ACTIONS(4375), + [anon_sym_crossinline] = ACTIONS(4375), + [anon_sym_expect] = ACTIONS(4375), + [anon_sym_actual] = ACTIONS(4375), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4377), + [sym__automatic_semicolon] = ACTIONS(4377), + [sym_safe_nav] = ACTIONS(4377), + [sym_multiline_comment] = ACTIONS(3), + }, + [4015] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(5125), + [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_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), + }, + [4016] = { + [sym_class_body] = STATE(3852), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_PLUS_EQ] = ACTIONS(4435), + [anon_sym_DASH_EQ] = ACTIONS(4435), + [anon_sym_STAR_EQ] = ACTIONS(4435), + [anon_sym_SLASH_EQ] = ACTIONS(4435), + [anon_sym_PERCENT_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4433), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + }, + [4017] = { + [sym__alpha_identifier] = ACTIONS(7201), + [anon_sym_AT] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7203), + [anon_sym_typealias] = ACTIONS(7201), + [anon_sym_class] = ACTIONS(7201), + [anon_sym_interface] = ACTIONS(7201), + [anon_sym_enum] = ACTIONS(7201), + [anon_sym_LBRACE] = ACTIONS(7203), + [anon_sym_LPAREN] = ACTIONS(7203), + [anon_sym_val] = ACTIONS(7201), + [anon_sym_var] = ACTIONS(7201), + [anon_sym_object] = ACTIONS(7201), + [anon_sym_fun] = ACTIONS(7201), + [anon_sym_get] = ACTIONS(7201), + [anon_sym_set] = ACTIONS(7201), + [anon_sym_this] = ACTIONS(7201), + [anon_sym_super] = ACTIONS(7201), + [anon_sym_STAR] = ACTIONS(7203), + [sym_label] = ACTIONS(7201), + [anon_sym_for] = ACTIONS(7201), + [anon_sym_while] = ACTIONS(7201), + [anon_sym_do] = ACTIONS(7201), + [anon_sym_null] = ACTIONS(7201), + [anon_sym_if] = ACTIONS(7201), + [anon_sym_when] = ACTIONS(7201), + [anon_sym_try] = ACTIONS(7201), + [anon_sym_throw] = ACTIONS(7201), + [anon_sym_return] = ACTIONS(7201), + [anon_sym_continue] = ACTIONS(7201), + [anon_sym_break] = ACTIONS(7201), + [anon_sym_COLON_COLON] = ACTIONS(7203), + [anon_sym_PLUS] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7203), + [anon_sym_DASH_DASH] = ACTIONS(7203), + [anon_sym_BANG] = ACTIONS(7203), + [anon_sym_suspend] = ACTIONS(7201), + [anon_sym_sealed] = ACTIONS(7201), + [anon_sym_annotation] = ACTIONS(7201), + [anon_sym_data] = ACTIONS(7201), + [anon_sym_inner] = ACTIONS(7201), + [anon_sym_value] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_lateinit] = ACTIONS(7201), + [anon_sym_public] = ACTIONS(7201), + [anon_sym_private] = ACTIONS(7201), + [anon_sym_internal] = ACTIONS(7201), + [anon_sym_protected] = ACTIONS(7201), + [anon_sym_tailrec] = ACTIONS(7201), + [anon_sym_operator] = ACTIONS(7201), + [anon_sym_infix] = ACTIONS(7201), + [anon_sym_inline] = ACTIONS(7201), + [anon_sym_external] = ACTIONS(7201), + [sym_property_modifier] = ACTIONS(7201), + [anon_sym_abstract] = ACTIONS(7201), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_open] = ACTIONS(7201), + [anon_sym_vararg] = ACTIONS(7201), + [anon_sym_noinline] = ACTIONS(7201), + [anon_sym_crossinline] = ACTIONS(7201), + [anon_sym_expect] = ACTIONS(7201), + [anon_sym_actual] = ACTIONS(7201), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7203), + [anon_sym_continue_AT] = ACTIONS(7203), + [anon_sym_break_AT] = ACTIONS(7203), + [anon_sym_this_AT] = ACTIONS(7203), + [anon_sym_super_AT] = ACTIONS(7203), + [sym_real_literal] = ACTIONS(7203), + [sym_integer_literal] = ACTIONS(7201), + [sym_hex_literal] = ACTIONS(7203), + [sym_bin_literal] = ACTIONS(7203), + [anon_sym_true] = ACTIONS(7201), + [anon_sym_false] = ACTIONS(7201), + [anon_sym_SQUOTE] = ACTIONS(7203), + [sym__backtick_identifier] = ACTIONS(7203), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7203), + }, + [4018] = { + [sym__alpha_identifier] = ACTIONS(7205), + [anon_sym_AT] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_typealias] = ACTIONS(7205), + [anon_sym_class] = ACTIONS(7205), + [anon_sym_interface] = ACTIONS(7205), + [anon_sym_enum] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_LPAREN] = ACTIONS(7207), + [anon_sym_val] = ACTIONS(7205), + [anon_sym_var] = ACTIONS(7205), + [anon_sym_object] = ACTIONS(7205), + [anon_sym_fun] = ACTIONS(7205), + [anon_sym_get] = ACTIONS(7205), + [anon_sym_set] = ACTIONS(7205), + [anon_sym_this] = ACTIONS(7205), + [anon_sym_super] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7207), + [sym_label] = ACTIONS(7205), + [anon_sym_for] = ACTIONS(7205), + [anon_sym_while] = ACTIONS(7205), + [anon_sym_do] = ACTIONS(7205), + [anon_sym_null] = ACTIONS(7205), + [anon_sym_if] = ACTIONS(7205), + [anon_sym_when] = ACTIONS(7205), + [anon_sym_try] = ACTIONS(7205), + [anon_sym_throw] = ACTIONS(7205), + [anon_sym_return] = ACTIONS(7205), + [anon_sym_continue] = ACTIONS(7205), + [anon_sym_break] = ACTIONS(7205), + [anon_sym_COLON_COLON] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_BANG] = ACTIONS(7207), + [anon_sym_suspend] = ACTIONS(7205), + [anon_sym_sealed] = ACTIONS(7205), + [anon_sym_annotation] = ACTIONS(7205), + [anon_sym_data] = ACTIONS(7205), + [anon_sym_inner] = ACTIONS(7205), + [anon_sym_value] = ACTIONS(7205), + [anon_sym_override] = ACTIONS(7205), + [anon_sym_lateinit] = ACTIONS(7205), + [anon_sym_public] = ACTIONS(7205), + [anon_sym_private] = ACTIONS(7205), + [anon_sym_internal] = ACTIONS(7205), + [anon_sym_protected] = ACTIONS(7205), + [anon_sym_tailrec] = ACTIONS(7205), + [anon_sym_operator] = ACTIONS(7205), + [anon_sym_infix] = ACTIONS(7205), + [anon_sym_inline] = ACTIONS(7205), + [anon_sym_external] = ACTIONS(7205), + [sym_property_modifier] = ACTIONS(7205), + [anon_sym_abstract] = ACTIONS(7205), + [anon_sym_final] = ACTIONS(7205), + [anon_sym_open] = ACTIONS(7205), + [anon_sym_vararg] = ACTIONS(7205), + [anon_sym_noinline] = ACTIONS(7205), + [anon_sym_crossinline] = ACTIONS(7205), + [anon_sym_expect] = ACTIONS(7205), + [anon_sym_actual] = ACTIONS(7205), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7207), + [anon_sym_continue_AT] = ACTIONS(7207), + [anon_sym_break_AT] = ACTIONS(7207), + [anon_sym_this_AT] = ACTIONS(7207), + [anon_sym_super_AT] = ACTIONS(7207), + [sym_real_literal] = ACTIONS(7207), + [sym_integer_literal] = ACTIONS(7205), + [sym_hex_literal] = ACTIONS(7207), + [sym_bin_literal] = ACTIONS(7207), + [anon_sym_true] = ACTIONS(7205), + [anon_sym_false] = ACTIONS(7205), + [anon_sym_SQUOTE] = ACTIONS(7207), + [sym__backtick_identifier] = ACTIONS(7207), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7207), + }, + [4019] = { + [sym__alpha_identifier] = ACTIONS(4886), + [anon_sym_AT] = ACTIONS(4888), + [anon_sym_LBRACK] = ACTIONS(4888), + [anon_sym_DOT] = ACTIONS(4886), + [anon_sym_as] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4888), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_LPAREN] = ACTIONS(4888), + [anon_sym_COMMA] = ACTIONS(4888), + [anon_sym_LT] = ACTIONS(4886), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_where] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(4888), + [anon_sym_get] = ACTIONS(4886), + [anon_sym_set] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4886), + [anon_sym_DOT_DOT] = ACTIONS(4888), + [anon_sym_QMARK_COLON] = ACTIONS(4888), + [anon_sym_AMP_AMP] = ACTIONS(4888), + [anon_sym_PIPE_PIPE] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4888), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_PERCENT_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), + [anon_sym_LT_EQ] = ACTIONS(4888), + [anon_sym_GT_EQ] = ACTIONS(4888), + [anon_sym_BANGin] = ACTIONS(4888), + [anon_sym_is] = ACTIONS(4886), + [anon_sym_BANGis] = ACTIONS(4888), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_as_QMARK] = ACTIONS(4888), + [anon_sym_PLUS_PLUS] = ACTIONS(4888), + [anon_sym_DASH_DASH] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4888), + [anon_sym_suspend] = ACTIONS(4886), + [anon_sym_sealed] = ACTIONS(4886), + [anon_sym_annotation] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4886), + [anon_sym_inner] = ACTIONS(4886), + [anon_sym_value] = ACTIONS(4886), + [anon_sym_override] = ACTIONS(4886), + [anon_sym_lateinit] = ACTIONS(4886), + [anon_sym_public] = ACTIONS(4886), + [anon_sym_private] = ACTIONS(4886), + [anon_sym_internal] = ACTIONS(4886), + [anon_sym_protected] = ACTIONS(4886), + [anon_sym_tailrec] = ACTIONS(4886), + [anon_sym_operator] = ACTIONS(4886), + [anon_sym_infix] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym_external] = ACTIONS(4886), + [sym_property_modifier] = ACTIONS(4886), + [anon_sym_abstract] = ACTIONS(4886), + [anon_sym_final] = ACTIONS(4886), + [anon_sym_open] = ACTIONS(4886), + [anon_sym_vararg] = ACTIONS(4886), + [anon_sym_noinline] = ACTIONS(4886), + [anon_sym_crossinline] = ACTIONS(4886), + [anon_sym_expect] = ACTIONS(4886), + [anon_sym_actual] = ACTIONS(4886), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4888), + [sym__automatic_semicolon] = ACTIONS(4888), + [sym_safe_nav] = ACTIONS(4888), + [sym_multiline_comment] = ACTIONS(3), + }, + [4020] = { + [sym_function_body] = STATE(3237), + [sym__block] = STATE(3170), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(6823), + [anon_sym_LBRACE] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_object] = ACTIONS(4165), + [anon_sym_fun] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_this] = ACTIONS(4165), + [anon_sym_super] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4165), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_null] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_when] = ACTIONS(4165), + [anon_sym_try] = ACTIONS(4165), + [anon_sym_throw] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4167), + [anon_sym_continue_AT] = ACTIONS(4167), + [anon_sym_break_AT] = ACTIONS(4167), + [anon_sym_this_AT] = ACTIONS(4167), + [anon_sym_super_AT] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4167), + [sym_integer_literal] = ACTIONS(4165), + [sym_hex_literal] = ACTIONS(4167), + [sym_bin_literal] = ACTIONS(4167), + [anon_sym_true] = ACTIONS(4165), + [anon_sym_false] = ACTIONS(4165), + [anon_sym_SQUOTE] = ACTIONS(4167), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4167), + }, + [4021] = { + [sym__alpha_identifier] = ACTIONS(4862), + [anon_sym_AT] = ACTIONS(4864), + [anon_sym_LBRACK] = ACTIONS(4864), + [anon_sym_DOT] = ACTIONS(4862), + [anon_sym_as] = ACTIONS(4862), + [anon_sym_EQ] = ACTIONS(4862), + [anon_sym_LBRACE] = ACTIONS(4864), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_COMMA] = ACTIONS(4864), + [anon_sym_LT] = ACTIONS(4862), + [anon_sym_GT] = ACTIONS(4862), + [anon_sym_where] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_get] = ACTIONS(4862), + [anon_sym_set] = ACTIONS(4862), + [anon_sym_STAR] = ACTIONS(4862), + [sym_label] = ACTIONS(4864), + [anon_sym_in] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_QMARK_COLON] = ACTIONS(4864), + [anon_sym_AMP_AMP] = ACTIONS(4864), + [anon_sym_PIPE_PIPE] = ACTIONS(4864), + [anon_sym_else] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4864), + [anon_sym_PLUS_EQ] = ACTIONS(4864), + [anon_sym_DASH_EQ] = ACTIONS(4864), + [anon_sym_STAR_EQ] = ACTIONS(4864), + [anon_sym_SLASH_EQ] = ACTIONS(4864), + [anon_sym_PERCENT_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ] = ACTIONS(4862), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ] = ACTIONS(4862), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4864), + [anon_sym_LT_EQ] = ACTIONS(4864), + [anon_sym_GT_EQ] = ACTIONS(4864), + [anon_sym_BANGin] = ACTIONS(4864), + [anon_sym_is] = ACTIONS(4862), + [anon_sym_BANGis] = ACTIONS(4864), + [anon_sym_PLUS] = ACTIONS(4862), + [anon_sym_DASH] = ACTIONS(4862), + [anon_sym_SLASH] = ACTIONS(4862), + [anon_sym_PERCENT] = ACTIONS(4862), + [anon_sym_as_QMARK] = ACTIONS(4864), + [anon_sym_PLUS_PLUS] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4864), + [anon_sym_BANG_BANG] = ACTIONS(4864), + [anon_sym_suspend] = ACTIONS(4862), + [anon_sym_sealed] = ACTIONS(4862), + [anon_sym_annotation] = ACTIONS(4862), + [anon_sym_data] = ACTIONS(4862), + [anon_sym_inner] = ACTIONS(4862), + [anon_sym_value] = ACTIONS(4862), + [anon_sym_override] = ACTIONS(4862), + [anon_sym_lateinit] = ACTIONS(4862), + [anon_sym_public] = ACTIONS(4862), + [anon_sym_private] = ACTIONS(4862), + [anon_sym_internal] = ACTIONS(4862), + [anon_sym_protected] = ACTIONS(4862), + [anon_sym_tailrec] = ACTIONS(4862), + [anon_sym_operator] = ACTIONS(4862), + [anon_sym_infix] = ACTIONS(4862), + [anon_sym_inline] = ACTIONS(4862), + [anon_sym_external] = ACTIONS(4862), + [sym_property_modifier] = ACTIONS(4862), + [anon_sym_abstract] = ACTIONS(4862), + [anon_sym_final] = ACTIONS(4862), + [anon_sym_open] = ACTIONS(4862), + [anon_sym_vararg] = ACTIONS(4862), + [anon_sym_noinline] = ACTIONS(4862), + [anon_sym_crossinline] = ACTIONS(4862), + [anon_sym_expect] = ACTIONS(4862), + [anon_sym_actual] = ACTIONS(4862), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4864), + [sym__automatic_semicolon] = ACTIONS(4864), + [sym_safe_nav] = ACTIONS(4864), + [sym_multiline_comment] = ACTIONS(3), + }, + [4022] = { + [sym__alpha_identifier] = ACTIONS(5151), + [anon_sym_AT] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5153), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_as] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5153), + [anon_sym_COMMA] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5151), + [anon_sym_GT] = ACTIONS(5151), + [anon_sym_where] = ACTIONS(5151), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_get] = ACTIONS(5151), + [anon_sym_set] = ACTIONS(5151), + [anon_sym_STAR] = ACTIONS(5151), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5151), + [anon_sym_DOT_DOT] = ACTIONS(5153), + [anon_sym_QMARK_COLON] = ACTIONS(5153), + [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_PIPE_PIPE] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5153), + [anon_sym_PLUS_EQ] = ACTIONS(5153), + [anon_sym_DASH_EQ] = ACTIONS(5153), + [anon_sym_STAR_EQ] = ACTIONS(5153), + [anon_sym_SLASH_EQ] = ACTIONS(5153), + [anon_sym_PERCENT_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5153), + [anon_sym_LT_EQ] = ACTIONS(5153), + [anon_sym_GT_EQ] = ACTIONS(5153), + [anon_sym_BANGin] = ACTIONS(5153), + [anon_sym_is] = ACTIONS(5151), + [anon_sym_BANGis] = ACTIONS(5153), + [anon_sym_PLUS] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(5151), + [anon_sym_SLASH] = ACTIONS(5151), + [anon_sym_PERCENT] = ACTIONS(5151), + [anon_sym_as_QMARK] = ACTIONS(5153), + [anon_sym_PLUS_PLUS] = ACTIONS(5153), + [anon_sym_DASH_DASH] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5153), + [anon_sym_suspend] = ACTIONS(5151), + [anon_sym_sealed] = ACTIONS(5151), + [anon_sym_annotation] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5151), + [anon_sym_inner] = ACTIONS(5151), + [anon_sym_value] = ACTIONS(5151), + [anon_sym_override] = ACTIONS(5151), + [anon_sym_lateinit] = ACTIONS(5151), + [anon_sym_public] = ACTIONS(5151), + [anon_sym_private] = ACTIONS(5151), + [anon_sym_internal] = ACTIONS(5151), + [anon_sym_protected] = ACTIONS(5151), + [anon_sym_tailrec] = ACTIONS(5151), + [anon_sym_operator] = ACTIONS(5151), + [anon_sym_infix] = ACTIONS(5151), + [anon_sym_inline] = ACTIONS(5151), + [anon_sym_external] = ACTIONS(5151), + [sym_property_modifier] = ACTIONS(5151), + [anon_sym_abstract] = ACTIONS(5151), + [anon_sym_final] = ACTIONS(5151), + [anon_sym_open] = ACTIONS(5151), + [anon_sym_vararg] = ACTIONS(5151), + [anon_sym_noinline] = ACTIONS(5151), + [anon_sym_crossinline] = ACTIONS(5151), + [anon_sym_expect] = ACTIONS(5151), + [anon_sym_actual] = ACTIONS(5151), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5153), + [sym__automatic_semicolon] = ACTIONS(5153), + [sym_safe_nav] = ACTIONS(5153), + [sym_multiline_comment] = ACTIONS(3), + }, + [4023] = { + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_PLUS_EQ] = ACTIONS(4243), + [anon_sym_DASH_EQ] = ACTIONS(4243), + [anon_sym_STAR_EQ] = ACTIONS(4243), + [anon_sym_SLASH_EQ] = ACTIONS(4243), + [anon_sym_PERCENT_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [4024] = { + [sym__alpha_identifier] = ACTIONS(4798), + [anon_sym_AT] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DOT] = ACTIONS(4798), + [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_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(4928), - [sym__automatic_semicolon] = ACTIONS(4928), - [sym_safe_nav] = ACTIONS(4928), + [sym__backtick_identifier] = ACTIONS(4800), + [sym__automatic_semicolon] = ACTIONS(4800), + [sym_safe_nav] = ACTIONS(4800), + [sym_multiline_comment] = ACTIONS(3), + }, + [4025] = { + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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__alpha_identifier] = ACTIONS(5055), + [anon_sym_AT] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_as] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_where] = ACTIONS(5055), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_get] = ACTIONS(5055), + [anon_sym_set] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [sym_label] = ACTIONS(5057), + [anon_sym_in] = ACTIONS(5055), + [anon_sym_DOT_DOT] = ACTIONS(5057), + [anon_sym_QMARK_COLON] = ACTIONS(5057), + [anon_sym_AMP_AMP] = ACTIONS(5057), + [anon_sym_PIPE_PIPE] = ACTIONS(5057), + [anon_sym_else] = ACTIONS(5055), + [anon_sym_COLON_COLON] = ACTIONS(5057), + [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(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), + [anon_sym_LT_EQ] = ACTIONS(5057), + [anon_sym_GT_EQ] = ACTIONS(5057), + [anon_sym_BANGin] = ACTIONS(5057), + [anon_sym_is] = ACTIONS(5055), + [anon_sym_BANGis] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_as_QMARK] = ACTIONS(5057), + [anon_sym_PLUS_PLUS] = ACTIONS(5057), + [anon_sym_DASH_DASH] = ACTIONS(5057), + [anon_sym_BANG_BANG] = ACTIONS(5057), + [anon_sym_suspend] = ACTIONS(5055), + [anon_sym_sealed] = ACTIONS(5055), + [anon_sym_annotation] = ACTIONS(5055), + [anon_sym_data] = ACTIONS(5055), + [anon_sym_inner] = ACTIONS(5055), + [anon_sym_value] = ACTIONS(5055), + [anon_sym_override] = ACTIONS(5055), + [anon_sym_lateinit] = ACTIONS(5055), + [anon_sym_public] = ACTIONS(5055), + [anon_sym_private] = ACTIONS(5055), + [anon_sym_internal] = ACTIONS(5055), + [anon_sym_protected] = ACTIONS(5055), + [anon_sym_tailrec] = ACTIONS(5055), + [anon_sym_operator] = ACTIONS(5055), + [anon_sym_infix] = ACTIONS(5055), + [anon_sym_inline] = ACTIONS(5055), + [anon_sym_external] = ACTIONS(5055), + [sym_property_modifier] = ACTIONS(5055), + [anon_sym_abstract] = ACTIONS(5055), + [anon_sym_final] = ACTIONS(5055), + [anon_sym_open] = ACTIONS(5055), + [anon_sym_vararg] = ACTIONS(5055), + [anon_sym_noinline] = ACTIONS(5055), + [anon_sym_crossinline] = ACTIONS(5055), + [anon_sym_expect] = ACTIONS(5055), + [anon_sym_actual] = ACTIONS(5055), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5057), + [sym__automatic_semicolon] = ACTIONS(5057), + [sym_safe_nav] = ACTIONS(5057), [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_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_PLUS_EQ] = ACTIONS(4257), + [anon_sym_DASH_EQ] = ACTIONS(4257), + [anon_sym_STAR_EQ] = ACTIONS(4257), + [anon_sym_SLASH_EQ] = ACTIONS(4257), + [anon_sym_PERCENT_EQ] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [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__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_as] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4292), + [anon_sym_in] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_else] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), + [anon_sym_EQ_EQ] = ACTIONS(4289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), + [anon_sym_is] = ACTIONS(4289), + [anon_sym_BANGis] = ACTIONS(4292), + [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(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), }, [4029] = { - [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__alpha_identifier] = ACTIONS(5215), + [anon_sym_AT] = ACTIONS(5217), + [anon_sym_LBRACK] = ACTIONS(5217), + [anon_sym_DOT] = ACTIONS(5215), + [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_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_multiline_comment] = ACTIONS(3), }, [4030] = { - [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__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5093), + [anon_sym_COMMA] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_where] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), }, [4031] = { - [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), + [sym__alpha_identifier] = ACTIONS(4858), + [anon_sym_AT] = ACTIONS(4860), + [anon_sym_LBRACK] = ACTIONS(4860), + [anon_sym_typealias] = ACTIONS(4858), + [anon_sym_class] = ACTIONS(4858), + [anon_sym_interface] = ACTIONS(4858), + [anon_sym_enum] = ACTIONS(4858), + [anon_sym_LBRACE] = ACTIONS(4860), + [anon_sym_LPAREN] = ACTIONS(4860), + [anon_sym_val] = ACTIONS(4858), + [anon_sym_var] = ACTIONS(4858), + [anon_sym_object] = ACTIONS(4858), + [anon_sym_fun] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4858), + [anon_sym_set] = ACTIONS(4858), + [anon_sym_this] = ACTIONS(4858), + [anon_sym_super] = ACTIONS(4858), + [anon_sym_STAR] = ACTIONS(4860), + [sym_label] = ACTIONS(4858), + [anon_sym_for] = ACTIONS(4858), + [anon_sym_while] = ACTIONS(4858), + [anon_sym_do] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4858), + [anon_sym_if] = ACTIONS(4858), + [anon_sym_when] = ACTIONS(4858), + [anon_sym_try] = ACTIONS(4858), + [anon_sym_throw] = ACTIONS(4858), + [anon_sym_return] = ACTIONS(4858), + [anon_sym_continue] = ACTIONS(4858), + [anon_sym_break] = ACTIONS(4858), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [anon_sym_PLUS] = ACTIONS(4858), + [anon_sym_DASH] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4860), + [anon_sym_DASH_DASH] = ACTIONS(4860), + [anon_sym_BANG] = ACTIONS(4860), + [anon_sym_suspend] = ACTIONS(4858), + [anon_sym_sealed] = ACTIONS(4858), + [anon_sym_annotation] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4858), + [anon_sym_inner] = ACTIONS(4858), + [anon_sym_value] = ACTIONS(4858), + [anon_sym_override] = ACTIONS(4858), + [anon_sym_lateinit] = ACTIONS(4858), + [anon_sym_public] = ACTIONS(4858), + [anon_sym_private] = ACTIONS(4858), + [anon_sym_internal] = ACTIONS(4858), + [anon_sym_protected] = ACTIONS(4858), + [anon_sym_tailrec] = ACTIONS(4858), + [anon_sym_operator] = ACTIONS(4858), + [anon_sym_infix] = ACTIONS(4858), + [anon_sym_inline] = ACTIONS(4858), + [anon_sym_external] = ACTIONS(4858), + [sym_property_modifier] = ACTIONS(4858), + [anon_sym_abstract] = ACTIONS(4858), + [anon_sym_final] = ACTIONS(4858), + [anon_sym_open] = ACTIONS(4858), + [anon_sym_vararg] = ACTIONS(4858), + [anon_sym_noinline] = ACTIONS(4858), + [anon_sym_crossinline] = ACTIONS(4858), + [anon_sym_expect] = ACTIONS(4858), + [anon_sym_actual] = ACTIONS(4858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4860), + [anon_sym_continue_AT] = ACTIONS(4860), + [anon_sym_break_AT] = ACTIONS(4860), + [anon_sym_this_AT] = ACTIONS(4860), + [anon_sym_super_AT] = ACTIONS(4860), + [sym_real_literal] = ACTIONS(4860), + [sym_integer_literal] = ACTIONS(4858), + [sym_hex_literal] = ACTIONS(4860), + [sym_bin_literal] = ACTIONS(4860), + [anon_sym_true] = ACTIONS(4858), + [anon_sym_false] = ACTIONS(4858), + [anon_sym_SQUOTE] = ACTIONS(4860), + [sym__backtick_identifier] = ACTIONS(4860), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4860), }, [4032] = { - [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__alpha_identifier] = ACTIONS(4653), + [anon_sym_AT] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_DOT] = ACTIONS(4653), + [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_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), + [sym__backtick_identifier] = ACTIONS(4655), + [sym__automatic_semicolon] = ACTIONS(4655), + [sym_safe_nav] = ACTIONS(4655), [sym_multiline_comment] = ACTIONS(3), }, [4033] = { - [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_function_body] = STATE(3538), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_RBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [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_SEMI] = ACTIONS(4387), + [anon_sym_get] = ACTIONS(4385), + [anon_sym_set] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [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_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(4387), + [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), }, [4034] = { - [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_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_DASH_GT] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, [4035] = { - [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_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), }, [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(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(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), - [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), + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_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(7209), + [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), }, [4037] = { - [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__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_SEMI] = ACTIONS(7211), + [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(7209), + [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), }, [4038] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4039] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4040] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4041] = { - [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_function_body] = STATE(3832), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = 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), }, [4042] = { - [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_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_RBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(6963), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, [4043] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1985), + [sym__in_operator] = STATE(1984), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1982), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1980), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7137), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7139), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7141), + [anon_sym_QMARK_COLON] = ACTIONS(7143), + [anon_sym_AMP_AMP] = ACTIONS(7145), + [anon_sym_PIPE_PIPE] = ACTIONS(7147), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7151), + [anon_sym_EQ_EQ] = ACTIONS(7149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7153), + [anon_sym_GT_EQ] = ACTIONS(7153), + [anon_sym_BANGin] = ACTIONS(7155), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7157), + [anon_sym_DASH] = ACTIONS(7157), + [anon_sym_SLASH] = ACTIONS(7137), + [anon_sym_PERCENT] = ACTIONS(7137), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4044] = { - [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__alpha_identifier] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5165), + [anon_sym_LBRACK] = ACTIONS(5165), + [anon_sym_DOT] = ACTIONS(5163), + [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_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(4912), - [sym__automatic_semicolon] = ACTIONS(4912), - [sym_safe_nav] = ACTIONS(4912), + [sym__backtick_identifier] = ACTIONS(5165), + [sym__automatic_semicolon] = ACTIONS(5165), + [sym_safe_nav] = ACTIONS(5165), + [sym_multiline_comment] = ACTIONS(3), + }, + [4045] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7213), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [4046] = { + [sym_type_constraints] = STATE(4208), + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [4045] = { + [4047] = { [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(4292), [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_SEMI] = ACTIONS(4292), [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_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4292), [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_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4292), [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_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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), - }, - [4046] = { - [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_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__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), }, [4048] = { - [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__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5936), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(3090), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [sym_multiline_comment] = ACTIONS(3), }, [4049] = { - [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_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, [4050] = { - [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(3156), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(7041), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3158), - [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(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(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__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = 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_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(7223), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3158), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, [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(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(7225), + [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_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(7223), + [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), + }, + [4052] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [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(7215), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -448877,157 +445599,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [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(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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -449035,552 +445678,1026 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [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(7067), + [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(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(7067), [sym_multiline_comment] = ACTIONS(3), }, [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), + [sym_class_body] = STATE(3162), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7251), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_object] = ACTIONS(4421), + [anon_sym_fun] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_this] = ACTIONS(4421), + [anon_sym_super] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4421), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_when] = ACTIONS(4421), + [anon_sym_try] = ACTIONS(4421), + [anon_sym_throw] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4423), + [anon_sym_continue_AT] = ACTIONS(4423), + [anon_sym_break_AT] = ACTIONS(4423), + [anon_sym_this_AT] = ACTIONS(4423), + [anon_sym_super_AT] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4423), + [sym_integer_literal] = ACTIONS(4421), + [sym_hex_literal] = ACTIONS(4423), + [sym_bin_literal] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4421), + [anon_sym_false] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4423), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4423), }, [4056] = { - [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(5267), - [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(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(4284), - [sym_safe_nav] = ACTIONS(4284), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(7067), [sym_multiline_comment] = ACTIONS(3), }, [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__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(7253), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7255), + [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_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(4976), + [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), }, [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_type_constraints] = STATE(4218), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, [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_class_body] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_RBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [anon_sym_DASH_GT] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_while] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), [sym_multiline_comment] = ACTIONS(3), }, [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), + [sym_class_body] = STATE(3548), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_RBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_DASH_GT] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_while] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + }, + [4061] = { + [sym_class_body] = STATE(3208), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_fun] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_this] = ACTIONS(4433), + [anon_sym_super] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4433), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4435), + [anon_sym_continue_AT] = ACTIONS(4435), + [anon_sym_break_AT] = ACTIONS(4435), + [anon_sym_this_AT] = ACTIONS(4435), + [anon_sym_super_AT] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4435), + [sym_integer_literal] = ACTIONS(4433), + [sym_hex_literal] = ACTIONS(4435), + [sym_bin_literal] = ACTIONS(4435), + [anon_sym_true] = ACTIONS(4433), + [anon_sym_false] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4435), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4435), + }, + [4062] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3160), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), - [anon_sym_EQ] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3160), [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_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4063] = { + [sym_type_constraints] = STATE(4182), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [4064] = { + [sym_type_constraints] = STATE(4188), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [4065] = { + [sym_type_constraints] = STATE(4189), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [4066] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3135), + [anon_sym_DASH_EQ] = ACTIONS(3135), + [anon_sym_STAR_EQ] = ACTIONS(3135), + [anon_sym_SLASH_EQ] = ACTIONS(3135), + [anon_sym_PERCENT_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -449588,394 +446705,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4067] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6691), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4820), - [sym_safe_nav] = ACTIONS(4820), + [anon_sym_return_AT] = ACTIONS(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, - [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), + [4068] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6674), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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), - [sym__backtick_identifier] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [anon_sym_return_AT] = ACTIONS(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), }, - [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), + [4069] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_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(4976), + [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(7255), + [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_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(4976), + [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), }, - [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), + [4070] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), [anon_sym_else] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(7061), + [anon_sym_COLON_COLON] = ACTIONS(7067), [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_BANG_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -449984,393 +447022,77 @@ 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(3146), - [sym_safe_nav] = ACTIONS(7061), - [sym_multiline_comment] = ACTIONS(3), - }, - [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_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4071] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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(1788), - [sym__automatic_semicolon] = ACTIONS(3162), - [sym_safe_nav] = ACTIONS(7061), - [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), - }, - [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_LBRACK] = ACTIONS(7043), [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), - }, - [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_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3140), [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_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [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(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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -450378,789 +447100,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4071] = { + [4072] = { [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_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), [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_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), [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_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), [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), - }, - [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), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7215), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -451168,157 +447258,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(7067), [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), - }, - [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), + [4074] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7215), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [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(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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -451326,552 +447337,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(4284), - [sym_safe_nav] = ACTIONS(4284), + [sym__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [4075] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4076] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7279), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), }, - [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), + [4077] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), }, - [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), + [4078] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7283), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), }, - [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(4185), - [sym_safe_nav] = ACTIONS(4185), + [4079] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7285), + [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_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(5049), + [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_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(5049), + [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), }, - [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), + [4080] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_SEMI] = ACTIONS(3096), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -451879,236 +447811,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7067), [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), + [4081] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_SEMI] = ACTIONS(3100), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -452116,706 +447890,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - [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), - }, - [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(4738), - [sym_safe_nav] = ACTIONS(4738), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4100] = { - [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(5422), - [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(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(4284), - [sym__automatic_semicolon] = ACTIONS(4284), - [sym_safe_nav] = ACTIONS(4284), + [4082] = { + [sym_type_constraints] = STATE(4223), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4083] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [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(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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -452823,467 +448048,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - }, - [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), - }, - [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(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [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__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7067), [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), + [4084] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3112), + [anon_sym_DASH_EQ] = ACTIONS(3112), + [anon_sym_STAR_EQ] = ACTIONS(3112), + [anon_sym_SLASH_EQ] = ACTIONS(3112), + [anon_sym_PERCENT_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -453291,77 +448127,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4085] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4086] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [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(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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -453369,155 +448285,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4087] = { + [sym_type_constraints] = STATE(4195), + [sym_function_body] = STATE(3841), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_COMMA] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4155), + [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_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(4155), + [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), }, - [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), + [4088] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1596), + [sym__in_operator] = STATE(1595), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1593), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1590), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(7229), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7231), + [anon_sym_DOT_DOT] = ACTIONS(7233), + [anon_sym_QMARK_COLON] = ACTIONS(7235), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7239), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7243), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7243), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_BANGin] = ACTIONS(7247), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7229), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -453525,133 +448443,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4089] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7291), + [anon_sym_RPAREN] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = 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_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), }, - [4112] = { + [4090] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + }, + [4091] = { + [sym_type_constraints] = STATE(4204), + [sym_function_body] = STATE(3503), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(7295), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_STAR] = 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_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(4155), + [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), + }, + [4092] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7297), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + }, + [4093] = { + [sym_value_arguments] = STATE(3413), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_DASH_GT] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + }, + [4094] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5265), + [anon_sym_RPAREN] = ACTIONS(4278), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym_safe_nav] = ACTIONS(4278), + [sym_multiline_comment] = ACTIONS(3), + }, + [4095] = { + [sym_type_constraints] = STATE(4194), + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [4096] = { [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(4292), [anon_sym_LT] = ACTIONS(4289), [anon_sym_GT] = ACTIONS(4289), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4292), [anon_sym_get] = ACTIONS(4289), [anon_sym_set] = ACTIONS(4289), [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4287), + [sym_label] = ACTIONS(4292), [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_while] = ACTIONS(4289), + [anon_sym_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4292), [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_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), [anon_sym_suspend] = ACTIONS(4289), [anon_sym_sealed] = ACTIONS(4289), [anon_sym_annotation] = ACTIONS(4289), @@ -453679,157 +449075,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [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), + [4097] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3100), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [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), + [4098] = { + [sym_function_body] = STATE(3879), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_COMMA] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_where] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + }, + [4099] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -453837,55 +449310,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4115] = { - [sym_function_body] = STATE(3900), - [sym__block] = STATE(3882), + [4100] = { [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), [anon_sym_as] = ACTIONS(4275), - [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), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(5448), [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_SEMI] = ACTIONS(4278), [anon_sym_get] = ACTIONS(4275), [anon_sym_set] = ACTIONS(4275), - [anon_sym_STAR] = ACTIONS(4277), - [sym_label] = ACTIONS(4277), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), [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_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), [anon_sym_else] = ACTIONS(4275), - [anon_sym_COLON_COLON] = ACTIONS(4277), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4278), + [anon_sym_DASH_EQ] = ACTIONS(4278), + [anon_sym_STAR_EQ] = ACTIONS(4278), + [anon_sym_SLASH_EQ] = ACTIONS(4278), + [anon_sym_PERCENT_EQ] = ACTIONS(4278), [anon_sym_BANG_EQ] = ACTIONS(4275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4277), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), [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_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), [anon_sym_is] = ACTIONS(4275), - [anon_sym_BANGis] = ACTIONS(4277), + [anon_sym_BANGis] = ACTIONS(4278), [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_PERCENT] = ACTIONS(4275), + [anon_sym_as_QMARK] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), [anon_sym_suspend] = ACTIONS(4275), [anon_sym_sealed] = ACTIONS(4275), [anon_sym_annotation] = ACTIONS(4275), @@ -453913,2004 +449386,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [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), + [4101] = { + [sym_type_constraints] = STATE(4229), + [sym_function_body] = STATE(3841), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4155), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_as] = ACTIONS(4153), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_get] = ACTIONS(4153), + [anon_sym_set] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4155), + [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_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(4155), + [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), }, - [4119] = { - [sym__alpha_identifier] = ACTIONS(4281), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), + [4102] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_EQ] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(5440), [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_SEMI] = ACTIONS(4292), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4292), [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_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), [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_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_BANGis] = ACTIONS(4292), + [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(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_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_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_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(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_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_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_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_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(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(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_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_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(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), - [sym_multiline_comment] = ACTIONS(3), - }, - [4136] = { - [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(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(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), + [anon_sym_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), + [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(4820), - [sym__automatic_semicolon] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), }, - [4139] = { - [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), + [4103] = { + [sym_type_constraints] = STATE(4249), + [sym_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, - [4140] = { - [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), + [4104] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_DASH_GT] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [4141] = { - [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), + [4105] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(3186), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [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), + [sym_label] = ACTIONS(6738), [anon_sym_in] = ACTIONS(3186), [anon_sym_while] = ACTIONS(3186), [anon_sym_DOT_DOT] = ACTIONS(3188), @@ -455918,7 +449753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(6750), [anon_sym_BANG_EQ] = ACTIONS(3186), [anon_sym_BANG_EQ_EQ] = ACTIONS(3188), [anon_sym_EQ_EQ] = ACTIONS(3186), @@ -455932,10 +449767,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3186), [anon_sym_inner] = ACTIONS(3186), [anon_sym_value] = ACTIONS(3186), @@ -455943,600 +449778,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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_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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4145] = { + [4106] = { [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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_COLON] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [4147] = { - [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_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), + [4107] = { + [sym_type_constraints] = STATE(4189), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [4149] = { + [4108] = { [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4287), - [anon_sym_RBRACK] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4289), [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_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(6014), [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_SEMI] = ACTIONS(4292), [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_STAR] = ACTIONS(4289), + [sym_label] = ACTIONS(4292), [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_DOT_DOT] = ACTIONS(4292), + [anon_sym_QMARK_COLON] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4292), [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_EQ_EQ_EQ] = ACTIONS(4292), + [anon_sym_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_EQ] = ACTIONS(4292), + [anon_sym_BANGin] = ACTIONS(4292), [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4287), + [anon_sym_BANGis] = ACTIONS(4292), [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_PERCENT] = ACTIONS(4289), + [anon_sym_as_QMARK] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG_BANG] = ACTIONS(4292), [anon_sym_suspend] = ACTIONS(4289), [anon_sym_sealed] = ACTIONS(4289), [anon_sym_annotation] = ACTIONS(4289), @@ -456564,1720 +450010,2056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4292), [sym_multiline_comment] = ACTIONS(3), }, - [4150] = { - [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), + [4109] = { + [sym_type_constraints] = STATE(4242), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_COLON] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4820), }, - [4151] = { - [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), + [4110] = { + [sym_type_constraints] = STATE(4188), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [4111] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4111), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_RBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4667), + [anon_sym_DASH_GT] = ACTIONS(4667), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_while] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), [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), + [4112] = { + [sym_type_constraints] = STATE(4182), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [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), + [4113] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_as] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(6010), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [sym_label] = ACTIONS(4278), + [anon_sym_in] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4278), + [anon_sym_QMARK_COLON] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_PIPE_PIPE] = ACTIONS(4278), + [anon_sym_else] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_PLUS_EQ] = ACTIONS(4035), + [anon_sym_DASH_EQ] = ACTIONS(4035), + [anon_sym_STAR_EQ] = ACTIONS(4035), + [anon_sym_SLASH_EQ] = ACTIONS(4035), + [anon_sym_PERCENT_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), + [anon_sym_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), + [anon_sym_LT_EQ] = ACTIONS(4278), + [anon_sym_GT_EQ] = ACTIONS(4278), + [anon_sym_BANGin] = ACTIONS(4278), + [anon_sym_is] = ACTIONS(4275), + [anon_sym_BANGis] = ACTIONS(4278), + [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(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG_BANG] = ACTIONS(4278), + [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(4278), + [sym__automatic_semicolon] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4278), [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), + [4114] = { + [sym_type_constraints] = STATE(4181), + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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(4218), - [sym_safe_nav] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [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), + [4115] = { + [sym_type_constraints] = STATE(4223), + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [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), + [4116] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3146), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [4117] = { + [sym_type_constraints] = STATE(4180), + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [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), + [4118] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3158), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4119] = { + [sym_type_constraints] = STATE(4216), + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [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), + [4120] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3135), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [4121] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3104), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [4122] = { + [sym_type_constraints] = STATE(4218), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [4123] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3090), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4218), - [sym__automatic_semicolon] = ACTIONS(4218), - [sym_safe_nav] = ACTIONS(4218), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [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), + [4124] = { + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = 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_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(4305), + [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), }, - [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), + [4125] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3096), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [4126] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [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), + [4127] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4111), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_RBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_DASH_GT] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), [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_LBRACK] = ACTIONS(4445), - [anon_sym_as] = ACTIONS(4443), - [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(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), + [4128] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3169), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(6750), [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), + [4129] = { + [sym_type_constraints] = STATE(4200), + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [4130] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = 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(7344), + [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), + }, + [4131] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [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_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(7346), + [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(7344), + [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), + }, + [4132] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3131), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_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(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__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4265), }, - [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(4323), - [sym_safe_nav] = ACTIONS(4323), + [4133] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3184), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4172] = { - [sym_class_body] = STATE(3861), - [sym_type_constraints] = STATE(3816), + [4134] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7348), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = 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), + }, + [4135] = { + [sym_function_body] = STATE(3855), + [sym__block] = STATE(3960), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(7416), + [anon_sym_COLON] = ACTIONS(7350), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), [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_where] = ACTIONS(4216), [anon_sym_SEMI] = ACTIONS(4218), [anon_sym_get] = ACTIONS(4216), [anon_sym_set] = ACTIONS(4216), @@ -458339,1177 +452121,3807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4136] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(7352), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [4137] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6732), + [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_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3162), + [sym_label] = ACTIONS(6738), + [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(6750), + [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(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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), - [sym__backtick_identifier] = ACTIONS(4309), - [sym__automatic_semicolon] = ACTIONS(4309), - [sym_safe_nav] = ACTIONS(4309), + [sym__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4138] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7354), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [4139] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6732), + [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_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3195), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [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(6750), + [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(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4140] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3142), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4141] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7358), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [4142] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7362), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_PLUS_EQ] = ACTIONS(5073), + [anon_sym_DASH_EQ] = ACTIONS(5073), + [anon_sym_STAR_EQ] = ACTIONS(5073), + [anon_sym_SLASH_EQ] = ACTIONS(5073), + [anon_sym_PERCENT_EQ] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + }, + [4143] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7364), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), [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), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_PLUS_EQ] = ACTIONS(4295), + [anon_sym_DASH_EQ] = ACTIONS(4295), + [anon_sym_STAR_EQ] = ACTIONS(4295), + [anon_sym_SLASH_EQ] = ACTIONS(4295), + [anon_sym_PERCENT_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [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(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), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4144] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_PLUS_EQ] = ACTIONS(4281), + [anon_sym_DASH_EQ] = ACTIONS(4281), + [anon_sym_STAR_EQ] = ACTIONS(4281), + [anon_sym_SLASH_EQ] = ACTIONS(4281), + [anon_sym_PERCENT_EQ] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4009), }, - [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), + [4145] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3119), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4146] = { + [sym_type_constraints] = STATE(4254), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [4147] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(3112), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4148] = { + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6302), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5818), + [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(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [4149] = { + [sym_class_body] = STATE(4023), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6292), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5834), + [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(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [4150] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_RBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7370), + [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_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5049), + [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_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(5049), + [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), + }, + [4151] = { + [sym_type_constraints] = STATE(4254), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [4152] = { + [sym_type_constraints] = STATE(3775), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [4153] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(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), + [anon_sym_COLON_COLON] = 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(4976), + [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), + }, + [4154] = { + [sym_class_body] = STATE(3830), + [sym_type_constraints] = STATE(3819), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_COMMA] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [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_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(4319), + [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), + }, + [4155] = { + [sym_type_constraints] = STATE(3341), + [sym_enum_class_body] = STATE(3526), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7378), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_while] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [4156] = { + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3764), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7380), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [4157] = { + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(6274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [4158] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7382), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [4159] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7386), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, + [4160] = { + [sym_type_constraints] = STATE(3727), + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), + [anon_sym_COLON] = ACTIONS(7390), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), + [sym_multiline_comment] = ACTIONS(3), + }, + [4161] = { + [sym_class_body] = STATE(3874), + [sym_type_constraints] = STATE(3715), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6316), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5834), + [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(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [4162] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(7392), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_this] = ACTIONS(4974), + [anon_sym_super] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7394), + [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_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(4976), + [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), + }, + [4163] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_object] = ACTIONS(4974), + [anon_sym_fun] = 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(4976), + [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(7394), + [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_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(4976), + [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), + }, + [4164] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_COMMA] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_where] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [4165] = { + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_where] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + }, + [4166] = { + [sym_function_body] = STATE(3924), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_COMMA] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_where] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + }, + [4167] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_RBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7396), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [anon_sym_DASH_GT] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + }, + [4168] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4283), + [anon_sym_fun] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_this] = ACTIONS(4283), + [anon_sym_super] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4283), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_when] = ACTIONS(4283), + [anon_sym_try] = ACTIONS(4283), + [anon_sym_throw] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4281), + [anon_sym_continue_AT] = ACTIONS(4281), + [anon_sym_break_AT] = ACTIONS(4281), + [anon_sym_this_AT] = ACTIONS(4281), + [anon_sym_super_AT] = ACTIONS(4281), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(4283), + [anon_sym_false] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4281), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4281), + }, + [4169] = { + [sym__alpha_identifier] = ACTIONS(4289), + [anon_sym_AT] = ACTIONS(4292), + [anon_sym_LBRACK] = ACTIONS(4292), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(6887), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4289), + [anon_sym_fun] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4289), + [anon_sym_set] = ACTIONS(4289), + [anon_sym_this] = ACTIONS(4289), + [anon_sym_super] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4292), + [sym_label] = ACTIONS(4289), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_null] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_else] = ACTIONS(4297), + [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(4292), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4292), + [anon_sym_continue_AT] = ACTIONS(4292), + [anon_sym_break_AT] = ACTIONS(4292), + [anon_sym_this_AT] = ACTIONS(4292), + [anon_sym_super_AT] = ACTIONS(4292), + [sym_real_literal] = ACTIONS(4292), + [sym_integer_literal] = ACTIONS(4289), + [sym_hex_literal] = ACTIONS(4292), + [sym_bin_literal] = ACTIONS(4292), + [anon_sym_true] = ACTIONS(4289), + [anon_sym_false] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4292), + [sym__backtick_identifier] = ACTIONS(4292), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4292), + }, + [4170] = { + [sym_type_constraints] = STATE(3357), + [sym_enum_class_body] = STATE(3433), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [4171] = { + [sym_type_constraints] = STATE(4241), + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [4172] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7400), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_object] = ACTIONS(4297), + [anon_sym_fun] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_this] = ACTIONS(4297), + [anon_sym_super] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4297), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [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(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [anon_sym_continue_AT] = ACTIONS(4295), + [anon_sym_break_AT] = ACTIONS(4295), + [anon_sym_this_AT] = ACTIONS(4295), + [anon_sym_super_AT] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4295), + [sym_integer_literal] = ACTIONS(4297), + [sym_hex_literal] = ACTIONS(4295), + [sym_bin_literal] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4295), + [sym__backtick_identifier] = ACTIONS(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4295), + }, + [4173] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_object] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_this] = ACTIONS(5071), + [anon_sym_super] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5071), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_when] = ACTIONS(5071), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_throw] = ACTIONS(5071), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_continue] = ACTIONS(5071), + [anon_sym_break] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5071), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5073), + [anon_sym_continue_AT] = ACTIONS(5073), + [anon_sym_break_AT] = ACTIONS(5073), + [anon_sym_this_AT] = ACTIONS(5073), + [anon_sym_super_AT] = ACTIONS(5073), + [sym_real_literal] = ACTIONS(5073), + [sym_integer_literal] = ACTIONS(5071), + [sym_hex_literal] = ACTIONS(5073), + [sym_bin_literal] = ACTIONS(5073), + [anon_sym_true] = ACTIONS(5071), + [anon_sym_false] = ACTIONS(5071), + [anon_sym_SQUOTE] = ACTIONS(5073), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5073), + }, + [4174] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7404), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_object] = ACTIONS(5047), + [anon_sym_fun] = 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(5049), + [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_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(5049), + [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(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), + [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(4820), + [sym__string_start] = ACTIONS(5049), + }, + [4175] = { + [sym_function_body] = STATE(3481), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_COLON] = ACTIONS(7406), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_RPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_while] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), + [sym_multiline_comment] = ACTIONS(3), + }, + [4176] = { + [sym_class_body] = STATE(3386), + [sym_type_constraints] = STATE(3358), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [4177] = { + [sym__alpha_identifier] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(6879), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_object] = ACTIONS(4275), + [anon_sym_fun] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4275), + [anon_sym_set] = ACTIONS(4275), + [anon_sym_this] = ACTIONS(4275), + [anon_sym_super] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [sym_label] = ACTIONS(4275), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_else] = ACTIONS(4283), + [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(4278), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [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(4278), + [anon_sym_continue_AT] = ACTIONS(4278), + [anon_sym_break_AT] = ACTIONS(4278), + [anon_sym_this_AT] = ACTIONS(4278), + [anon_sym_super_AT] = ACTIONS(4278), + [sym_real_literal] = ACTIONS(4278), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4278), + [sym_bin_literal] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4275), + [anon_sym_false] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4278), + [sym__backtick_identifier] = ACTIONS(4278), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4278), }, [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), - [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), + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_RBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_DASH_GT] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), }, [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_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(7412), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [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_function_body] = STATE(3832), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [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_SEMI] = ACTIONS(4387), + [anon_sym_get] = ACTIONS(4385), + [anon_sym_set] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [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_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(4387), + [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__string_start] = ACTIONS(4287), }, [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_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_COMMA] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [sym_multiline_comment] = ACTIONS(3), }, [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), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_COMMA] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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), }, [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_class_body] = STATE(3441), + [sym_type_constraints] = STATE(3304), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6232), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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_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_type_constraints] = STATE(3361), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5614), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_while] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4876), }, [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), - }, - [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), - }, - [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), - }, - [4188] = { - [sym_type_constraints] = STATE(3303), - [sym_enum_class_body] = STATE(3513), + [sym_function_body] = STATE(3500), + [sym__block] = STATE(3403), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(7440), + [anon_sym_COLON] = ACTIONS(7416), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(5486), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), [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), @@ -459571,1095 +455983,2010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, + [4186] = { + [sym_type_constraints] = STATE(4242), + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [4187] = { + [sym_class_body] = STATE(3573), + [sym_type_constraints] = STATE(3324), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5468), + [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(5474), + [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_multiline_comment] = ACTIONS(3), + }, + [4188] = { + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_COMMA] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_where] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, [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(4185), - [sym__automatic_semicolon] = ACTIONS(4185), - [sym_safe_nav] = ACTIONS(4185), + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, [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(4277), - [sym_safe_nav] = ACTIONS(4277), - [sym_multiline_comment] = ACTIONS(3), + [sym__type] = STATE(9322), + [sym__type_reference] = STATE(8209), + [sym_not_nullable_type] = STATE(9322), + [sym_nullable_type] = STATE(9322), + [sym_user_type] = STATE(8333), + [sym__simple_user_type] = STATE(8229), + [sym_type_projection] = STATE(8907), + [sym_type_projection_modifiers] = STATE(6034), + [sym__type_projection_modifier] = STATE(7212), + [sym_function_type] = STATE(9322), + [sym_function_type_parameters] = STATE(9819), + [sym_parenthesized_type] = STATE(8209), + [sym_parenthesized_user_type] = STATE(9818), + [sym_type_modifiers] = STATE(6432), + [sym__type_modifier] = STATE(7221), + [sym_variance_modifier] = STATE(7212), + [sym_annotation] = STATE(7221), + [sym__single_annotation] = STATE(7841), + [sym__multi_annotation] = STATE(7841), + [sym_simple_identifier] = STATE(7980), + [sym__lexical_identifier] = STATE(6386), + [aux_sym_type_projection_modifiers_repeat1] = STATE(7212), + [aux_sym_type_modifiers_repeat1] = STATE(7221), + [sym__alpha_identifier] = ACTIONS(7418), + [anon_sym_AT] = ACTIONS(7421), + [anon_sym_LBRACK] = ACTIONS(7424), + [anon_sym_LBRACE] = ACTIONS(7424), + [anon_sym_LPAREN] = ACTIONS(7426), + [anon_sym_object] = ACTIONS(7429), + [anon_sym_fun] = ACTIONS(7429), + [anon_sym_get] = ACTIONS(7431), + [anon_sym_set] = ACTIONS(7431), + [anon_sym_this] = ACTIONS(7429), + [anon_sym_super] = ACTIONS(7429), + [anon_sym_dynamic] = ACTIONS(7434), + [anon_sym_STAR] = ACTIONS(7436), + [sym_label] = ACTIONS(7429), + [anon_sym_in] = ACTIONS(7439), + [anon_sym_null] = ACTIONS(7429), + [anon_sym_if] = ACTIONS(7429), + [anon_sym_when] = ACTIONS(7429), + [anon_sym_try] = ACTIONS(7429), + [anon_sym_throw] = ACTIONS(7429), + [anon_sym_return] = ACTIONS(7429), + [anon_sym_continue] = ACTIONS(7429), + [anon_sym_break] = ACTIONS(7429), + [anon_sym_COLON_COLON] = ACTIONS(7424), + [anon_sym_PLUS] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7424), + [anon_sym_DASH_DASH] = ACTIONS(7424), + [anon_sym_BANG] = ACTIONS(7424), + [anon_sym_suspend] = ACTIONS(7441), + [anon_sym_data] = ACTIONS(7431), + [anon_sym_inner] = ACTIONS(7431), + [anon_sym_value] = ACTIONS(7431), + [anon_sym_out] = ACTIONS(7439), + [anon_sym_expect] = ACTIONS(7431), + [anon_sym_actual] = ACTIONS(7431), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7424), + [anon_sym_continue_AT] = ACTIONS(7424), + [anon_sym_break_AT] = ACTIONS(7424), + [anon_sym_this_AT] = ACTIONS(7424), + [anon_sym_super_AT] = ACTIONS(7424), + [sym_real_literal] = ACTIONS(7424), + [sym_integer_literal] = ACTIONS(7429), + [sym_hex_literal] = ACTIONS(7424), + [sym_bin_literal] = ACTIONS(7424), + [anon_sym_true] = ACTIONS(7429), + [anon_sym_false] = ACTIONS(7429), + [anon_sym_SQUOTE] = ACTIONS(7424), + [sym__backtick_identifier] = ACTIONS(7443), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7424), }, [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_type_constraints] = STATE(3323), + [sym_enum_class_body] = STATE(3573), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5614), + [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(5474), + [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_multiline_comment] = ACTIONS(3), }, [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), - [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), + [sym_class_body] = STATE(3567), + [sym_type_constraints] = STATE(3317), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7446), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5474), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_STAR] = 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_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(4319), + [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), }, [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_type_constraints] = STATE(4230), + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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(4265), - [sym_safe_nav] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, [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_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_where] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, [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_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_where] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [sym_multiline_comment] = ACTIONS(3), }, [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__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_RBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(7448), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7374), + [anon_sym_COLON_COLON] = 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(4976), + [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), }, [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__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_RBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7450), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_RPAREN] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_DASH_GT] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), [sym_multiline_comment] = ACTIONS(3), }, [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_type_constraints] = STATE(4228), + [sym_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [4199] = { + [sym_type_constraints] = STATE(3724), + [sym_enum_class_body] = STATE(3963), + [sym__alpha_identifier] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_COLON] = ACTIONS(6412), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_as] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3268), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3272), + [sym_label] = ACTIONS(3272), + [anon_sym_in] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3272), + [anon_sym_QMARK_COLON] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_PIPE_PIPE] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3272), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3272), + [anon_sym_LT_EQ] = ACTIONS(3272), + [anon_sym_GT_EQ] = ACTIONS(3272), + [anon_sym_BANGin] = ACTIONS(3272), + [anon_sym_is] = ACTIONS(3268), + [anon_sym_BANGis] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3272), + [anon_sym_as_QMARK] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_BANG_BANG] = ACTIONS(3272), + [anon_sym_suspend] = ACTIONS(3268), + [anon_sym_sealed] = ACTIONS(3268), + [anon_sym_annotation] = ACTIONS(3268), + [anon_sym_data] = ACTIONS(3268), + [anon_sym_inner] = ACTIONS(3268), + [anon_sym_value] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_lateinit] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_internal] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_tailrec] = ACTIONS(3268), + [anon_sym_operator] = ACTIONS(3268), + [anon_sym_infix] = ACTIONS(3268), + [anon_sym_inline] = ACTIONS(3268), + [anon_sym_external] = ACTIONS(3268), + [sym_property_modifier] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_final] = ACTIONS(3268), + [anon_sym_open] = ACTIONS(3268), + [anon_sym_vararg] = ACTIONS(3268), + [anon_sym_noinline] = ACTIONS(3268), + [anon_sym_crossinline] = ACTIONS(3268), + [anon_sym_expect] = ACTIONS(3268), + [anon_sym_actual] = ACTIONS(3268), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3272), + [sym__automatic_semicolon] = ACTIONS(3272), + [sym_safe_nav] = ACTIONS(3272), + [sym_multiline_comment] = ACTIONS(3), + }, + [4200] = { + [sym_function_body] = STATE(3579), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_RPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = 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_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(4305), + [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), + }, + [4201] = { + [sym_class_body] = STATE(4023), + [sym_type_constraints] = STATE(3794), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [4202] = { + [sym_function_body] = STATE(3435), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), + [sym_multiline_comment] = ACTIONS(3), + }, + [4203] = { + [sym_function_body] = STATE(3448), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + }, + [4204] = { + [sym_function_body] = STATE(3586), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_while] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), + [sym_multiline_comment] = ACTIONS(3), + }, + [4205] = { + [sym_type_constraints] = STATE(3766), + [sym_enum_class_body] = STATE(4023), + [sym__alpha_identifier] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(6382), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_where] = ACTIONS(5822), + [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_multiline_comment] = ACTIONS(3), + }, + [4206] = { + [sym_class_body] = STATE(3967), + [sym_type_constraints] = STATE(3764), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7452), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), + [sym_multiline_comment] = ACTIONS(3), + }, + [4207] = { + [sym_class_body] = STATE(3830), + [sym_type_constraints] = STATE(3819), + [sym__alpha_identifier] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_COLON] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_as] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(4317), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [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_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(4319), + [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(4876), - [sym_safe_nav] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4319), + [sym__automatic_semicolon] = ACTIONS(4319), + [sym_safe_nav] = ACTIONS(4319), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4208] = { + [sym_function_body] = STATE(3417), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_while] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4209] = { + [sym_function_body] = STATE(3574), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_while] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [sym_multiline_comment] = ACTIONS(3), }, - [4201] = { - [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(7257), - [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(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), + [4210] = { + [sym_class_body] = STATE(3874), + [sym_type_constraints] = STATE(3715), + [sym__alpha_identifier] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_COLON] = ACTIONS(6404), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3276), + [anon_sym_where] = ACTIONS(5822), + [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_multiline_comment] = ACTIONS(3), }, - [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), + [4211] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4111), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(7456), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_while] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), [sym_multiline_comment] = ACTIONS(3), }, - [4203] = { - [sym_class_body] = STATE(3861), - [sym_type_constraints] = STATE(3816), + [4212] = { + [sym_function_body] = STATE(3855), + [sym__block] = STATE(3960), [sym__alpha_identifier] = ACTIONS(4216), [anon_sym_AT] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(7454), + [anon_sym_COLON] = ACTIONS(7458), [anon_sym_LBRACK] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), [anon_sym_as] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), [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), @@ -460721,1009 +458048,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4218), [sym_multiline_comment] = ACTIONS(3), }, - [4204] = { - [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(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_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_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_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_class_body] = STATE(3884), - [sym_type_constraints] = STATE(3739), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), + [4213] = { + [sym_type_constraints] = STATE(3727), + [sym_enum_class_body] = STATE(3900), + [sym__alpha_identifier] = ACTIONS(4228), + [anon_sym_AT] = ACTIONS(4230), [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(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_as] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4228), + [anon_sym_GT] = ACTIONS(4228), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_get] = ACTIONS(4228), + [anon_sym_set] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_QMARK_COLON] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4228), + [anon_sym_COLON_COLON] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ] = ACTIONS(4228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4230), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_BANGin] = ACTIONS(4230), + [anon_sym_is] = ACTIONS(4228), + [anon_sym_BANGis] = ACTIONS(4230), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_SLASH] = ACTIONS(4228), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4230), + [anon_sym_suspend] = ACTIONS(4228), + [anon_sym_sealed] = ACTIONS(4228), + [anon_sym_annotation] = ACTIONS(4228), + [anon_sym_data] = ACTIONS(4228), + [anon_sym_inner] = ACTIONS(4228), + [anon_sym_value] = ACTIONS(4228), + [anon_sym_override] = ACTIONS(4228), + [anon_sym_lateinit] = ACTIONS(4228), + [anon_sym_public] = ACTIONS(4228), + [anon_sym_private] = ACTIONS(4228), + [anon_sym_internal] = ACTIONS(4228), + [anon_sym_protected] = ACTIONS(4228), + [anon_sym_tailrec] = ACTIONS(4228), + [anon_sym_operator] = ACTIONS(4228), + [anon_sym_infix] = ACTIONS(4228), + [anon_sym_inline] = ACTIONS(4228), + [anon_sym_external] = ACTIONS(4228), + [sym_property_modifier] = ACTIONS(4228), + [anon_sym_abstract] = ACTIONS(4228), + [anon_sym_final] = ACTIONS(4228), + [anon_sym_open] = ACTIONS(4228), + [anon_sym_vararg] = ACTIONS(4228), + [anon_sym_noinline] = ACTIONS(4228), + [anon_sym_crossinline] = ACTIONS(4228), + [anon_sym_expect] = ACTIONS(4228), + [anon_sym_actual] = ACTIONS(4228), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4230), + [sym__automatic_semicolon] = ACTIONS(4230), + [sym_safe_nav] = ACTIONS(4230), [sym_multiline_comment] = ACTIONS(3), }, - [4210] = { - [sym_function_body] = STATE(4010), - [sym__block] = STATE(3882), - [sym__alpha_identifier] = ACTIONS(4229), - [anon_sym_AT] = ACTIONS(4231), + [4214] = { + [sym_class_body] = STATE(3852), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), [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), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), [sym_multiline_comment] = ACTIONS(3), }, - [4211] = { - [sym_class_body] = STATE(3874), - [sym__alpha_identifier] = ACTIONS(4349), - [anon_sym_AT] = ACTIONS(4351), + [4215] = { + [sym_class_body] = STATE(3913), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), [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), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_COMMA] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_where] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), [sym_multiline_comment] = ACTIONS(3), }, - [4212] = { - [sym_type_constraints] = STATE(3791), - [sym_enum_class_body] = STATE(3952), - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), + [4216] = { + [sym_function_body] = STATE(3538), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_get] = ACTIONS(4385), + [anon_sym_set] = ACTIONS(4385), + [anon_sym_STAR] = 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_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(4387), + [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), + }, + [4217] = { + [sym_function_body] = STATE(3879), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4329), + [anon_sym_AT] = ACTIONS(4331), [anon_sym_COLON] = ACTIONS(7466), - [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_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), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_as] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym_LT] = ACTIONS(4329), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4329), + [anon_sym_set] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4329), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_QMARK_COLON] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(4331), + [anon_sym_PIPE_PIPE] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4329), + [anon_sym_COLON_COLON] = ACTIONS(4331), + [anon_sym_BANG_EQ] = ACTIONS(4329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ] = ACTIONS(4329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_BANGin] = ACTIONS(4331), + [anon_sym_is] = ACTIONS(4329), + [anon_sym_BANGis] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4331), + [anon_sym_suspend] = ACTIONS(4329), + [anon_sym_sealed] = ACTIONS(4329), + [anon_sym_annotation] = ACTIONS(4329), + [anon_sym_data] = ACTIONS(4329), + [anon_sym_inner] = ACTIONS(4329), + [anon_sym_value] = ACTIONS(4329), + [anon_sym_override] = ACTIONS(4329), + [anon_sym_lateinit] = ACTIONS(4329), + [anon_sym_public] = ACTIONS(4329), + [anon_sym_private] = ACTIONS(4329), + [anon_sym_internal] = ACTIONS(4329), + [anon_sym_protected] = ACTIONS(4329), + [anon_sym_tailrec] = ACTIONS(4329), + [anon_sym_operator] = ACTIONS(4329), + [anon_sym_infix] = ACTIONS(4329), + [anon_sym_inline] = ACTIONS(4329), + [anon_sym_external] = ACTIONS(4329), + [sym_property_modifier] = ACTIONS(4329), + [anon_sym_abstract] = ACTIONS(4329), + [anon_sym_final] = ACTIONS(4329), + [anon_sym_open] = ACTIONS(4329), + [anon_sym_vararg] = ACTIONS(4329), + [anon_sym_noinline] = ACTIONS(4329), + [anon_sym_crossinline] = ACTIONS(4329), + [anon_sym_expect] = ACTIONS(4329), + [anon_sym_actual] = ACTIONS(4329), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4331), + [sym__automatic_semicolon] = ACTIONS(4331), + [sym_safe_nav] = ACTIONS(4331), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4218] = { + [sym_function_body] = STATE(3596), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_RPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_while] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), [sym_multiline_comment] = ACTIONS(3), }, - [4214] = { - [sym_function_body] = STATE(3900), - [sym__block] = STATE(3882), - [sym__alpha_identifier] = ACTIONS(4275), - [anon_sym_AT] = ACTIONS(4277), + [4219] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), [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), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), [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), + [4220] = { + [sym_function_body] = STATE(3564), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_while] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), [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), + [4221] = { + [sym_value_arguments] = STATE(3887), + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7470), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), [sym_multiline_comment] = ACTIONS(3), }, - [4217] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4223), + [4222] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4211), [sym__alpha_identifier] = ACTIONS(4684), [anon_sym_AT] = ACTIONS(4686), [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), [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_COMMA] = ACTIONS(7456), [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), @@ -461785,585 +458808,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function_body] = STATE(3482), + [sym__block] = STATE(3403), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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_type_constraints] = STATE(3775), + [sym_enum_class_body] = STATE(3967), + [sym__alpha_identifier] = ACTIONS(4241), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_as] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_where] = ACTIONS(5822), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_get] = ACTIONS(4241), + [anon_sym_set] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4243), + [sym_label] = ACTIONS(4243), + [anon_sym_in] = ACTIONS(4241), + [anon_sym_DOT_DOT] = ACTIONS(4243), + [anon_sym_QMARK_COLON] = ACTIONS(4243), + [anon_sym_AMP_AMP] = ACTIONS(4243), + [anon_sym_PIPE_PIPE] = ACTIONS(4243), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_COLON_COLON] = ACTIONS(4243), + [anon_sym_BANG_EQ] = ACTIONS(4241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ] = ACTIONS(4241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_BANGin] = ACTIONS(4243), + [anon_sym_is] = ACTIONS(4241), + [anon_sym_BANGis] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_as_QMARK] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_BANG_BANG] = ACTIONS(4243), + [anon_sym_suspend] = ACTIONS(4241), + [anon_sym_sealed] = ACTIONS(4241), + [anon_sym_annotation] = ACTIONS(4241), + [anon_sym_data] = ACTIONS(4241), + [anon_sym_inner] = ACTIONS(4241), + [anon_sym_value] = ACTIONS(4241), + [anon_sym_override] = ACTIONS(4241), + [anon_sym_lateinit] = ACTIONS(4241), + [anon_sym_public] = ACTIONS(4241), + [anon_sym_private] = ACTIONS(4241), + [anon_sym_internal] = ACTIONS(4241), + [anon_sym_protected] = ACTIONS(4241), + [anon_sym_tailrec] = ACTIONS(4241), + [anon_sym_operator] = ACTIONS(4241), + [anon_sym_infix] = ACTIONS(4241), + [anon_sym_inline] = ACTIONS(4241), + [anon_sym_external] = ACTIONS(4241), + [sym_property_modifier] = ACTIONS(4241), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_final] = ACTIONS(4241), + [anon_sym_open] = ACTIONS(4241), + [anon_sym_vararg] = ACTIONS(4241), + [anon_sym_noinline] = ACTIONS(4241), + [anon_sym_crossinline] = ACTIONS(4241), + [anon_sym_expect] = ACTIONS(4241), + [anon_sym_actual] = ACTIONS(4241), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4243), + [sym__automatic_semicolon] = ACTIONS(4243), + [sym_safe_nav] = ACTIONS(4243), [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_where] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -462371,16 +459014,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -462388,132 +459031,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3136), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_where] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -462521,16 +459089,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [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(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(3108), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4227] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_where] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7476), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7478), + [anon_sym_DOT_DOT] = ACTIONS(7480), + [anon_sym_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7494), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -462538,207 +459181,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_function_body] = STATE(3832), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4385), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_as] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_get] = ACTIONS(4385), + [anon_sym_set] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [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_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(4387), + [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), }, [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_function_body] = STATE(3901), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4167), + [anon_sym_LBRACK] = ACTIONS(4167), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_as] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4167), + [anon_sym_LPAREN] = ACTIONS(4167), + [anon_sym_LT] = ACTIONS(4165), + [anon_sym_GT] = ACTIONS(4165), + [anon_sym_SEMI] = ACTIONS(4167), + [anon_sym_get] = ACTIONS(4165), + [anon_sym_set] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4167), + [sym_label] = ACTIONS(4167), + [anon_sym_in] = ACTIONS(4165), + [anon_sym_DOT_DOT] = ACTIONS(4167), + [anon_sym_QMARK_COLON] = ACTIONS(4167), + [anon_sym_AMP_AMP] = ACTIONS(4167), + [anon_sym_PIPE_PIPE] = ACTIONS(4167), + [anon_sym_else] = ACTIONS(4165), + [anon_sym_COLON_COLON] = ACTIONS(4167), + [anon_sym_BANG_EQ] = ACTIONS(4165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ] = ACTIONS(4165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_BANGin] = ACTIONS(4167), + [anon_sym_is] = ACTIONS(4165), + [anon_sym_BANGis] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_SLASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_as_QMARK] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(4167), + [anon_sym_DASH_DASH] = ACTIONS(4167), + [anon_sym_BANG_BANG] = ACTIONS(4167), + [anon_sym_suspend] = ACTIONS(4165), + [anon_sym_sealed] = ACTIONS(4165), + [anon_sym_annotation] = ACTIONS(4165), + [anon_sym_data] = ACTIONS(4165), + [anon_sym_inner] = ACTIONS(4165), + [anon_sym_value] = ACTIONS(4165), + [anon_sym_override] = ACTIONS(4165), + [anon_sym_lateinit] = ACTIONS(4165), + [anon_sym_public] = ACTIONS(4165), + [anon_sym_private] = ACTIONS(4165), + [anon_sym_internal] = ACTIONS(4165), + [anon_sym_protected] = ACTIONS(4165), + [anon_sym_tailrec] = ACTIONS(4165), + [anon_sym_operator] = ACTIONS(4165), + [anon_sym_infix] = ACTIONS(4165), + [anon_sym_inline] = ACTIONS(4165), + [anon_sym_external] = ACTIONS(4165), + [sym_property_modifier] = ACTIONS(4165), + [anon_sym_abstract] = ACTIONS(4165), + [anon_sym_final] = ACTIONS(4165), + [anon_sym_open] = ACTIONS(4165), + [anon_sym_vararg] = ACTIONS(4165), + [anon_sym_noinline] = ACTIONS(4165), + [anon_sym_crossinline] = ACTIONS(4165), + [anon_sym_expect] = ACTIONS(4165), + [anon_sym_actual] = ACTIONS(4165), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4167), + [sym__automatic_semicolon] = ACTIONS(4167), + [sym_safe_nav] = ACTIONS(4167), [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_function_body] = STATE(3836), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_as] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4253), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4253), + [anon_sym_get] = ACTIONS(4251), + [anon_sym_set] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4253), + [sym_label] = ACTIONS(4253), + [anon_sym_in] = ACTIONS(4251), + [anon_sym_DOT_DOT] = ACTIONS(4253), + [anon_sym_QMARK_COLON] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_else] = ACTIONS(4251), + [anon_sym_COLON_COLON] = ACTIONS(4253), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4253), + [anon_sym_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4253), + [anon_sym_LT_EQ] = ACTIONS(4253), + [anon_sym_GT_EQ] = ACTIONS(4253), + [anon_sym_BANGin] = ACTIONS(4253), + [anon_sym_is] = ACTIONS(4251), + [anon_sym_BANGis] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_as_QMARK] = ACTIONS(4253), + [anon_sym_PLUS_PLUS] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_BANG_BANG] = ACTIONS(4253), + [anon_sym_suspend] = ACTIONS(4251), + [anon_sym_sealed] = ACTIONS(4251), + [anon_sym_annotation] = ACTIONS(4251), + [anon_sym_data] = ACTIONS(4251), + [anon_sym_inner] = ACTIONS(4251), + [anon_sym_value] = ACTIONS(4251), + [anon_sym_override] = ACTIONS(4251), + [anon_sym_lateinit] = ACTIONS(4251), + [anon_sym_public] = ACTIONS(4251), + [anon_sym_private] = ACTIONS(4251), + [anon_sym_internal] = ACTIONS(4251), + [anon_sym_protected] = ACTIONS(4251), + [anon_sym_tailrec] = ACTIONS(4251), + [anon_sym_operator] = ACTIONS(4251), + [anon_sym_infix] = ACTIONS(4251), + [anon_sym_inline] = ACTIONS(4251), + [anon_sym_external] = ACTIONS(4251), + [sym_property_modifier] = ACTIONS(4251), + [anon_sym_abstract] = ACTIONS(4251), + [anon_sym_final] = ACTIONS(4251), + [anon_sym_open] = ACTIONS(4251), + [anon_sym_vararg] = ACTIONS(4251), + [anon_sym_noinline] = ACTIONS(4251), + [anon_sym_crossinline] = ACTIONS(4251), + [anon_sym_expect] = ACTIONS(4251), + [anon_sym_actual] = ACTIONS(4251), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4253), + [sym__automatic_semicolon] = ACTIONS(4253), + [sym_safe_nav] = ACTIONS(4253), + [sym_multiline_comment] = ACTIONS(3), + }, + [4231] = { + [sym_function_body] = STATE(3993), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_as] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4257), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4257), + [anon_sym_get] = ACTIONS(4255), + [anon_sym_set] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4257), + [sym_label] = ACTIONS(4257), + [anon_sym_in] = ACTIONS(4255), + [anon_sym_DOT_DOT] = ACTIONS(4257), + [anon_sym_QMARK_COLON] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(4257), + [anon_sym_PIPE_PIPE] = ACTIONS(4257), + [anon_sym_else] = ACTIONS(4255), + [anon_sym_COLON_COLON] = ACTIONS(4257), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4257), + [anon_sym_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4257), + [anon_sym_LT_EQ] = ACTIONS(4257), + [anon_sym_GT_EQ] = ACTIONS(4257), + [anon_sym_BANGin] = ACTIONS(4257), + [anon_sym_is] = ACTIONS(4255), + [anon_sym_BANGis] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_as_QMARK] = ACTIONS(4257), + [anon_sym_PLUS_PLUS] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_BANG_BANG] = ACTIONS(4257), + [anon_sym_suspend] = ACTIONS(4255), + [anon_sym_sealed] = ACTIONS(4255), + [anon_sym_annotation] = ACTIONS(4255), + [anon_sym_data] = ACTIONS(4255), + [anon_sym_inner] = ACTIONS(4255), + [anon_sym_value] = ACTIONS(4255), + [anon_sym_override] = ACTIONS(4255), + [anon_sym_lateinit] = ACTIONS(4255), + [anon_sym_public] = ACTIONS(4255), + [anon_sym_private] = ACTIONS(4255), + [anon_sym_internal] = ACTIONS(4255), + [anon_sym_protected] = ACTIONS(4255), + [anon_sym_tailrec] = ACTIONS(4255), + [anon_sym_operator] = ACTIONS(4255), + [anon_sym_infix] = ACTIONS(4255), + [anon_sym_inline] = ACTIONS(4255), + [anon_sym_external] = ACTIONS(4255), + [sym_property_modifier] = ACTIONS(4255), + [anon_sym_abstract] = ACTIONS(4255), + [anon_sym_final] = ACTIONS(4255), + [anon_sym_open] = ACTIONS(4255), + [anon_sym_vararg] = ACTIONS(4255), + [anon_sym_noinline] = ACTIONS(4255), + [anon_sym_crossinline] = ACTIONS(4255), + [anon_sym_expect] = ACTIONS(4255), + [anon_sym_actual] = ACTIONS(4255), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4257), + [sym__automatic_semicolon] = ACTIONS(4257), + [sym_safe_nav] = ACTIONS(4257), + [sym_multiline_comment] = ACTIONS(3), + }, + [4232] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_where] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3146), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -462746,16 +459539,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -462763,507 +459556,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7061), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), - }, - [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(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_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__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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), + [aux_sym__delegation_specifiers_repeat1] = STATE(4251), + [sym__alpha_identifier] = ACTIONS(4684), + [anon_sym_AT] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_as] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(7500), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_where] = 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(4738), - [sym__automatic_semicolon] = ACTIONS(4738), - [sym_safe_nav] = ACTIONS(4738), + [sym__backtick_identifier] = ACTIONS(4686), + [sym__automatic_semicolon] = ACTIONS(4686), + [sym_safe_nav] = ACTIONS(4686), [sym_multiline_comment] = ACTIONS(3), }, [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), - }, - [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), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3160), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_where] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), [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), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(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), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4235] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4235), + [sym__alpha_identifier] = ACTIONS(4665), + [anon_sym_AT] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_as] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(7502), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_get] = ACTIONS(4665), + [anon_sym_set] = ACTIONS(4665), + [anon_sym_STAR] = ACTIONS(4667), + [sym_label] = ACTIONS(4667), + [anon_sym_in] = ACTIONS(4665), + [anon_sym_DOT_DOT] = ACTIONS(4667), + [anon_sym_QMARK_COLON] = ACTIONS(4667), + [anon_sym_AMP_AMP] = ACTIONS(4667), + [anon_sym_PIPE_PIPE] = ACTIONS(4667), + [anon_sym_else] = ACTIONS(4665), + [anon_sym_COLON_COLON] = ACTIONS(4667), + [anon_sym_BANG_EQ] = ACTIONS(4665), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4667), + [anon_sym_EQ_EQ] = ACTIONS(4665), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4667), + [anon_sym_LT_EQ] = ACTIONS(4667), + [anon_sym_GT_EQ] = ACTIONS(4667), + [anon_sym_BANGin] = ACTIONS(4667), + [anon_sym_is] = ACTIONS(4665), + [anon_sym_BANGis] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4665), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4665), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_as_QMARK] = ACTIONS(4667), + [anon_sym_PLUS_PLUS] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4667), + [anon_sym_BANG_BANG] = ACTIONS(4667), + [anon_sym_suspend] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_annotation] = ACTIONS(4665), + [anon_sym_data] = ACTIONS(4665), + [anon_sym_inner] = ACTIONS(4665), + [anon_sym_value] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_lateinit] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_tailrec] = ACTIONS(4665), + [anon_sym_operator] = ACTIONS(4665), + [anon_sym_infix] = ACTIONS(4665), + [anon_sym_inline] = ACTIONS(4665), + [anon_sym_external] = ACTIONS(4665), + [sym_property_modifier] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_final] = ACTIONS(4665), + [anon_sym_open] = ACTIONS(4665), + [anon_sym_vararg] = ACTIONS(4665), + [anon_sym_noinline] = ACTIONS(4665), + [anon_sym_crossinline] = ACTIONS(4665), + [anon_sym_expect] = ACTIONS(4665), + [anon_sym_actual] = ACTIONS(4665), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4667), + [sym__automatic_semicolon] = ACTIONS(4667), + [sym_safe_nav] = ACTIONS(4667), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_where] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -463271,16 +459914,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -463288,74 +459931,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_COMMA] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_where] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), - [anon_sym_in] = ACTIONS(7478), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3110), [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_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -463363,57 +460006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_where] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3154), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -463421,16 +460064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -463438,207 +460081,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [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), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3167), [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_COMMA] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(3144), - [anon_sym_where] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_where] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), [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), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), [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), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4241] = { + [sym_function_body] = STATE(3842), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_as] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4305), + [anon_sym_get] = ACTIONS(4303), + [anon_sym_set] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4305), + [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_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(4305), + [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(1788), - [sym__automatic_semicolon] = ACTIONS(3146), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(4305), + [sym__automatic_semicolon] = ACTIONS(4305), + [sym_safe_nav] = ACTIONS(4305), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4242] = { + [sym_function_body] = STATE(3992), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [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), + [4243] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3132), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_where] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3131), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -463646,16 +460364,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -463663,132 +460381,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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__automatic_semicolon] = ACTIONS(3131), + [sym_safe_nav] = ACTIONS(7067), [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(3193), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(7041), + [anon_sym_LPAREN] = ACTIONS(7049), [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), + [sym_label] = ACTIONS(7055), [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), + [anon_sym_DOT_DOT] = ACTIONS(7480), [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_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(3193), [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), [anon_sym_EQ_EQ] = ACTIONS(3193), @@ -463798,14 +460441,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3193), [anon_sym_inner] = ACTIONS(3193), [anon_sym_value] = ACTIONS(3193), @@ -463814,148 +460457,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3195), [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4245] = { - [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_class_body] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7505), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_RPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_while] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), [sym_multiline_comment] = ACTIONS(3), }, [4246] = { - [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), + [aux_sym__delegation_specifiers_repeat1] = STATE(4235), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), + [sym_multiline_comment] = ACTIONS(3), + }, + [4247] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7474), + [anon_sym_where] = ACTIONS(3140), + [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(3125), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7478), [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_QMARK_COLON] = ACTIONS(7482), + [anon_sym_AMP_AMP] = ACTIONS(7484), + [anon_sym_PIPE_PIPE] = ACTIONS(7486), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -463963,74 +460681,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4247] = { - [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), + [4248] = { + [sym__alpha_identifier] = ACTIONS(4462), + [anon_sym_AT] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_as] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_LPAREN] = ACTIONS(4464), + [anon_sym_COMMA] = ACTIONS(4464), + [anon_sym_by] = ACTIONS(7470), + [anon_sym_LT] = ACTIONS(4462), + [anon_sym_GT] = ACTIONS(4462), + [anon_sym_where] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym_get] = ACTIONS(4462), + [anon_sym_set] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [sym_label] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4462), + [anon_sym_DOT_DOT] = ACTIONS(4464), + [anon_sym_QMARK_COLON] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_BANG_EQ] = ACTIONS(4462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4464), + [anon_sym_EQ_EQ] = ACTIONS(4462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4464), + [anon_sym_LT_EQ] = ACTIONS(4464), + [anon_sym_GT_EQ] = ACTIONS(4464), + [anon_sym_BANGin] = ACTIONS(4464), + [anon_sym_is] = ACTIONS(4462), + [anon_sym_BANGis] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_SLASH] = ACTIONS(4462), + [anon_sym_PERCENT] = ACTIONS(4464), + [anon_sym_as_QMARK] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_BANG_BANG] = ACTIONS(4464), + [anon_sym_suspend] = ACTIONS(4462), + [anon_sym_sealed] = ACTIONS(4462), + [anon_sym_annotation] = ACTIONS(4462), + [anon_sym_data] = ACTIONS(4462), + [anon_sym_inner] = ACTIONS(4462), + [anon_sym_value] = ACTIONS(4462), + [anon_sym_override] = ACTIONS(4462), + [anon_sym_lateinit] = ACTIONS(4462), + [anon_sym_public] = ACTIONS(4462), + [anon_sym_private] = ACTIONS(4462), + [anon_sym_internal] = ACTIONS(4462), + [anon_sym_protected] = ACTIONS(4462), + [anon_sym_tailrec] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_infix] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym_external] = ACTIONS(4462), + [sym_property_modifier] = ACTIONS(4462), + [anon_sym_abstract] = ACTIONS(4462), + [anon_sym_final] = ACTIONS(4462), + [anon_sym_open] = ACTIONS(4462), + [anon_sym_vararg] = ACTIONS(4462), + [anon_sym_noinline] = ACTIONS(4462), + [anon_sym_crossinline] = ACTIONS(4462), + [anon_sym_expect] = ACTIONS(4462), + [anon_sym_actual] = ACTIONS(4462), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4464), + [sym__automatic_semicolon] = ACTIONS(4464), + [sym_safe_nav] = ACTIONS(4464), + [sym_multiline_comment] = ACTIONS(3), + }, + [4249] = { + [sym_function_body] = STATE(3997), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4178), + [anon_sym_AT] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(4178), + [anon_sym_as] = ACTIONS(4178), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LPAREN] = ACTIONS(4180), + [anon_sym_LT] = ACTIONS(4178), + [anon_sym_GT] = ACTIONS(4178), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym_get] = ACTIONS(4178), + [anon_sym_set] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4180), + [sym_label] = ACTIONS(4180), + [anon_sym_in] = ACTIONS(4178), + [anon_sym_DOT_DOT] = ACTIONS(4180), + [anon_sym_QMARK_COLON] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_else] = ACTIONS(4178), + [anon_sym_COLON_COLON] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4180), + [anon_sym_EQ_EQ] = ACTIONS(4178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_BANGin] = ACTIONS(4180), + [anon_sym_is] = ACTIONS(4178), + [anon_sym_BANGis] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4178), + [anon_sym_SLASH] = ACTIONS(4178), + [anon_sym_PERCENT] = ACTIONS(4180), + [anon_sym_as_QMARK] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_BANG_BANG] = ACTIONS(4180), + [anon_sym_suspend] = ACTIONS(4178), + [anon_sym_sealed] = ACTIONS(4178), + [anon_sym_annotation] = ACTIONS(4178), + [anon_sym_data] = ACTIONS(4178), + [anon_sym_inner] = ACTIONS(4178), + [anon_sym_value] = ACTIONS(4178), + [anon_sym_override] = ACTIONS(4178), + [anon_sym_lateinit] = ACTIONS(4178), + [anon_sym_public] = ACTIONS(4178), + [anon_sym_private] = ACTIONS(4178), + [anon_sym_internal] = ACTIONS(4178), + [anon_sym_protected] = ACTIONS(4178), + [anon_sym_tailrec] = ACTIONS(4178), + [anon_sym_operator] = ACTIONS(4178), + [anon_sym_infix] = ACTIONS(4178), + [anon_sym_inline] = ACTIONS(4178), + [anon_sym_external] = ACTIONS(4178), + [sym_property_modifier] = ACTIONS(4178), + [anon_sym_abstract] = ACTIONS(4178), + [anon_sym_final] = ACTIONS(4178), + [anon_sym_open] = ACTIONS(4178), + [anon_sym_vararg] = ACTIONS(4178), + [anon_sym_noinline] = ACTIONS(4178), + [anon_sym_crossinline] = ACTIONS(4178), + [anon_sym_expect] = ACTIONS(4178), + [anon_sym_actual] = ACTIONS(4178), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4180), + [sym__automatic_semicolon] = ACTIONS(4180), + [sym_safe_nav] = ACTIONS(4180), + [sym_multiline_comment] = ACTIONS(3), + }, + [4250] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_where] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(3090), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [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(7492), [anon_sym_GT_EQ] = ACTIONS(7492), [anon_sym_BANGin] = ACTIONS(7494), - [anon_sym_is] = ACTIONS(7071), - [anon_sym_BANGis] = ACTIONS(7073), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -464038,132 +460906,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3090), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4248] = { - [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), + [4251] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4235), + [sym__alpha_identifier] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_as] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_LPAREN] = ACTIONS(4692), + [anon_sym_COMMA] = ACTIONS(7500), + [anon_sym_LT] = ACTIONS(4690), + [anon_sym_GT] = ACTIONS(4690), + [anon_sym_where] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4690), + [anon_sym_set] = ACTIONS(4690), + [anon_sym_STAR] = ACTIONS(4692), + [sym_label] = ACTIONS(4692), + [anon_sym_in] = ACTIONS(4690), + [anon_sym_DOT_DOT] = ACTIONS(4692), + [anon_sym_QMARK_COLON] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_BANG_EQ] = ACTIONS(4690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ] = ACTIONS(4690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_BANGin] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_BANGis] = ACTIONS(4692), + [anon_sym_PLUS] = ACTIONS(4690), + [anon_sym_DASH] = ACTIONS(4690), + [anon_sym_SLASH] = ACTIONS(4690), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_as_QMARK] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_BANG_BANG] = ACTIONS(4692), + [anon_sym_suspend] = ACTIONS(4690), + [anon_sym_sealed] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4690), + [anon_sym_data] = ACTIONS(4690), + [anon_sym_inner] = ACTIONS(4690), + [anon_sym_value] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_lateinit] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4690), + [anon_sym_tailrec] = ACTIONS(4690), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_external] = ACTIONS(4690), + [sym_property_modifier] = ACTIONS(4690), + [anon_sym_abstract] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_vararg] = ACTIONS(4690), + [anon_sym_noinline] = ACTIONS(4690), + [anon_sym_crossinline] = ACTIONS(4690), + [anon_sym_expect] = ACTIONS(4690), + [anon_sym_actual] = ACTIONS(4690), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4692), + [sym__automatic_semicolon] = ACTIONS(4692), + [sym_safe_nav] = ACTIONS(4692), [sym_multiline_comment] = ACTIONS(3), }, - [4249] = { - [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), + [4252] = { + [sym_function_body] = STATE(3899), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_as] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_GT] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [sym_label] = ACTIONS(4391), + [anon_sym_in] = ACTIONS(4389), + [anon_sym_DOT_DOT] = ACTIONS(4391), + [anon_sym_QMARK_COLON] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_PIPE_PIPE] = ACTIONS(4391), + [anon_sym_else] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_BANG_EQ] = ACTIONS(4389), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ] = ACTIONS(4389), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_BANGin] = ACTIONS(4391), + [anon_sym_is] = ACTIONS(4389), + [anon_sym_BANGis] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_as_QMARK] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_BANG_BANG] = ACTIONS(4391), + [anon_sym_suspend] = ACTIONS(4389), + [anon_sym_sealed] = ACTIONS(4389), + [anon_sym_annotation] = ACTIONS(4389), + [anon_sym_data] = ACTIONS(4389), + [anon_sym_inner] = ACTIONS(4389), + [anon_sym_value] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_lateinit] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_internal] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_tailrec] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_infix] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_external] = ACTIONS(4389), + [sym_property_modifier] = ACTIONS(4389), + [anon_sym_abstract] = ACTIONS(4389), + [anon_sym_final] = ACTIONS(4389), + [anon_sym_open] = ACTIONS(4389), + [anon_sym_vararg] = ACTIONS(4389), + [anon_sym_noinline] = ACTIONS(4389), + [anon_sym_crossinline] = ACTIONS(4389), + [anon_sym_expect] = ACTIONS(4389), + [anon_sym_actual] = ACTIONS(4389), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4391), + [sym__automatic_semicolon] = ACTIONS(4391), + [sym_safe_nav] = ACTIONS(4391), + [sym_multiline_comment] = ACTIONS(3), + }, + [4253] = { + [sym_class_body] = STATE(3548), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_while] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), + [sym_multiline_comment] = ACTIONS(3), + }, + [4254] = { + [sym_function_body] = STATE(3871), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4194), + [anon_sym_AT] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_DOT] = ACTIONS(4194), + [anon_sym_as] = ACTIONS(4194), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym_LT] = ACTIONS(4194), + [anon_sym_GT] = ACTIONS(4194), + [anon_sym_SEMI] = ACTIONS(4196), + [anon_sym_get] = ACTIONS(4194), + [anon_sym_set] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4194), + [anon_sym_DOT_DOT] = ACTIONS(4196), + [anon_sym_QMARK_COLON] = ACTIONS(4196), + [anon_sym_AMP_AMP] = ACTIONS(4196), + [anon_sym_PIPE_PIPE] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4194), + [anon_sym_COLON_COLON] = ACTIONS(4196), + [anon_sym_BANG_EQ] = ACTIONS(4194), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ] = ACTIONS(4194), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), + [anon_sym_LT_EQ] = ACTIONS(4196), + [anon_sym_GT_EQ] = ACTIONS(4196), + [anon_sym_BANGin] = ACTIONS(4196), + [anon_sym_is] = ACTIONS(4194), + [anon_sym_BANGis] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4194), + [anon_sym_SLASH] = ACTIONS(4194), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4196), + [anon_sym_PLUS_PLUS] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4196), + [anon_sym_suspend] = ACTIONS(4194), + [anon_sym_sealed] = ACTIONS(4194), + [anon_sym_annotation] = ACTIONS(4194), + [anon_sym_data] = ACTIONS(4194), + [anon_sym_inner] = ACTIONS(4194), + [anon_sym_value] = ACTIONS(4194), + [anon_sym_override] = ACTIONS(4194), + [anon_sym_lateinit] = ACTIONS(4194), + [anon_sym_public] = ACTIONS(4194), + [anon_sym_private] = ACTIONS(4194), + [anon_sym_internal] = ACTIONS(4194), + [anon_sym_protected] = ACTIONS(4194), + [anon_sym_tailrec] = ACTIONS(4194), + [anon_sym_operator] = ACTIONS(4194), + [anon_sym_infix] = ACTIONS(4194), + [anon_sym_inline] = ACTIONS(4194), + [anon_sym_external] = ACTIONS(4194), + [sym_property_modifier] = ACTIONS(4194), + [anon_sym_abstract] = ACTIONS(4194), + [anon_sym_final] = ACTIONS(4194), + [anon_sym_open] = ACTIONS(4194), + [anon_sym_vararg] = ACTIONS(4194), + [anon_sym_noinline] = ACTIONS(4194), + [anon_sym_crossinline] = ACTIONS(4194), + [anon_sym_expect] = ACTIONS(4194), + [anon_sym_actual] = ACTIONS(4194), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4196), + [sym__automatic_semicolon] = ACTIONS(4196), + [sym_safe_nav] = ACTIONS(4196), + [sym_multiline_comment] = ACTIONS(3), + }, + [4255] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3156), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_where] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3096), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -464171,16 +461264,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -464188,57 +461281,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4250] = { - [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), + [4256] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_where] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -464246,16 +461339,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -464263,57 +461356,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3158), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4251] = { - [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), + [4257] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), [anon_sym_GT] = ACTIONS(7474), - [anon_sym_where] = ACTIONS(3182), - [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_where] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), + [sym_label] = ACTIONS(7055), [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_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(7067), [anon_sym_BANG_EQ] = ACTIONS(7488), [anon_sym_BANG_EQ_EQ] = ACTIONS(7490), [anon_sym_EQ_EQ] = ACTIONS(7488), @@ -464321,16 +461414,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -464338,299 +461431,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4254] = { - [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(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), + [4258] = { + [sym_function_body] = STATE(3924), + [sym__block] = STATE(3960), + [sym__alpha_identifier] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_as] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [sym_label] = ACTIONS(4399), + [anon_sym_in] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_QMARK_COLON] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_else] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_BANG_EQ] = ACTIONS(4397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ] = ACTIONS(4397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_BANGin] = ACTIONS(4399), + [anon_sym_is] = ACTIONS(4397), + [anon_sym_BANGis] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_as_QMARK] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_BANG_BANG] = ACTIONS(4399), + [anon_sym_suspend] = ACTIONS(4397), + [anon_sym_sealed] = ACTIONS(4397), + [anon_sym_annotation] = ACTIONS(4397), + [anon_sym_data] = ACTIONS(4397), + [anon_sym_inner] = ACTIONS(4397), + [anon_sym_value] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_lateinit] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_internal] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_tailrec] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_infix] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym_external] = ACTIONS(4397), + [sym_property_modifier] = ACTIONS(4397), + [anon_sym_abstract] = ACTIONS(4397), + [anon_sym_final] = ACTIONS(4397), + [anon_sym_open] = ACTIONS(4397), + [anon_sym_vararg] = ACTIONS(4397), + [anon_sym_noinline] = ACTIONS(4397), + [anon_sym_crossinline] = ACTIONS(4397), + [anon_sym_expect] = ACTIONS(4397), + [anon_sym_actual] = ACTIONS(4397), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4399), + [sym__automatic_semicolon] = ACTIONS(4399), + [sym_safe_nav] = ACTIONS(4399), [sym_multiline_comment] = ACTIONS(3), }, - [4255] = { - [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), + [4259] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1588), + [sym__in_operator] = STATE(1585), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1583), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1581), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_where] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [anon_sym_get] = ACTIONS(3092), [anon_sym_set] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(7476), - [sym_label] = ACTIONS(7049), - [anon_sym_in] = ACTIONS(3160), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3133), [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_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), [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_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -464638,1336 +461581,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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] = { - [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_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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4260] = { - [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_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), - }, - [4262] = { - [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(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__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_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_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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [4267] = { - [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), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [4268] = { - [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), - }, - [4269] = { - [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_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), - }, - [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(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__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_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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [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(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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -465975,147 +461656,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4274] = { - [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), + [4261] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(7535), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7537), + [anon_sym_COLON_COLON] = 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(4976), + [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(3195), - [sym_safe_nav] = ACTIONS(6740), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [4262] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466123,73 +461804,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4276] = { - [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), + [4263] = { + [sym_class_body] = STATE(3913), + [sym__alpha_identifier] = ACTIONS(4421), + [anon_sym_AT] = ACTIONS(4423), + [anon_sym_COLON] = ACTIONS(7539), + [anon_sym_LBRACK] = ACTIONS(4423), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_as] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LPAREN] = ACTIONS(4423), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4423), + [anon_sym_get] = ACTIONS(4421), + [anon_sym_set] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4423), + [sym_label] = ACTIONS(4423), + [anon_sym_in] = ACTIONS(4421), + [anon_sym_DOT_DOT] = ACTIONS(4423), + [anon_sym_QMARK_COLON] = ACTIONS(4423), + [anon_sym_AMP_AMP] = ACTIONS(4423), + [anon_sym_PIPE_PIPE] = ACTIONS(4423), + [anon_sym_else] = ACTIONS(4421), + [anon_sym_COLON_COLON] = ACTIONS(4423), + [anon_sym_BANG_EQ] = ACTIONS(4421), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ] = ACTIONS(4421), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_BANGin] = ACTIONS(4423), + [anon_sym_is] = ACTIONS(4421), + [anon_sym_BANGis] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4421), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_as_QMARK] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(4423), + [anon_sym_DASH_DASH] = ACTIONS(4423), + [anon_sym_BANG_BANG] = ACTIONS(4423), + [anon_sym_suspend] = ACTIONS(4421), + [anon_sym_sealed] = ACTIONS(4421), + [anon_sym_annotation] = ACTIONS(4421), + [anon_sym_data] = ACTIONS(4421), + [anon_sym_inner] = ACTIONS(4421), + [anon_sym_value] = ACTIONS(4421), + [anon_sym_override] = ACTIONS(4421), + [anon_sym_lateinit] = ACTIONS(4421), + [anon_sym_public] = ACTIONS(4421), + [anon_sym_private] = ACTIONS(4421), + [anon_sym_internal] = ACTIONS(4421), + [anon_sym_protected] = ACTIONS(4421), + [anon_sym_tailrec] = ACTIONS(4421), + [anon_sym_operator] = ACTIONS(4421), + [anon_sym_infix] = ACTIONS(4421), + [anon_sym_inline] = ACTIONS(4421), + [anon_sym_external] = ACTIONS(4421), + [sym_property_modifier] = ACTIONS(4421), + [anon_sym_abstract] = ACTIONS(4421), + [anon_sym_final] = ACTIONS(4421), + [anon_sym_open] = ACTIONS(4421), + [anon_sym_vararg] = ACTIONS(4421), + [anon_sym_noinline] = ACTIONS(4421), + [anon_sym_crossinline] = ACTIONS(4421), + [anon_sym_expect] = ACTIONS(4421), + [anon_sym_actual] = ACTIONS(4421), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4423), + [sym__automatic_semicolon] = ACTIONS(4423), + [sym_safe_nav] = ACTIONS(4423), + [sym_multiline_comment] = ACTIONS(3), + }, + [4264] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466197,147 +461952,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4278] = { - [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), + [4265] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [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(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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466345,73 +462026,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4279] = { - [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), + [4266] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466419,147 +462100,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4280] = { - [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), + [4267] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_where] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4268] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [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(6750), + [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(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4269] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(6738), + [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(6750), + [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(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4270] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), [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_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), [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_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466567,73 +462396,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4282] = { - [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), + [4271] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [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(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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [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(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466641,73 +462470,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4283] = { - [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), + [4272] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7543), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_where] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5049), + [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_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(5049), + [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), + }, + [4273] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [anon_sym_SEMI] = ACTIONS(3100), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466715,73 +462618,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4284] = { - [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), + [4274] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4275] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), [anon_sym_while] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(7511), - [anon_sym_QMARK_COLON] = ACTIONS(7527), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), [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_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466789,71 +462766,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4285] = { - [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), + [4276] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [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(6750), + [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(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4277] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = 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_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7537), + [anon_sym_COLON_COLON] = 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(4976), + [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), + }, + [4278] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [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_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -466861,364 +462988,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4286] = { - [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), + [4279] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4820), - [sym_safe_nav] = ACTIONS(4820), + [sym__backtick_identifier] = ACTIONS(1788), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4287] = { - [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), + [4280] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4288] = { - [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), + [4281] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7545), + [anon_sym_COMMA] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_where] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), }, - [4289] = { - [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), + [4282] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_where] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), [sym_multiline_comment] = ACTIONS(3), }, - [4290] = { - [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), + [4283] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [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_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), + [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(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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467226,145 +463358,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4291] = { - [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), + [4284] = { + [sym_class_body] = STATE(3852), + [sym__alpha_identifier] = ACTIONS(4433), + [anon_sym_AT] = ACTIONS(4435), + [anon_sym_COLON] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_as] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(5834), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_LT] = ACTIONS(4433), + [anon_sym_GT] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_get] = ACTIONS(4433), + [anon_sym_set] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4435), + [sym_label] = ACTIONS(4435), + [anon_sym_in] = ACTIONS(4433), + [anon_sym_DOT_DOT] = ACTIONS(4435), + [anon_sym_QMARK_COLON] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4435), + [anon_sym_BANG_EQ] = ACTIONS(4433), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ] = ACTIONS(4433), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_BANGin] = ACTIONS(4435), + [anon_sym_is] = ACTIONS(4433), + [anon_sym_BANGis] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_SLASH] = ACTIONS(4433), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_as_QMARK] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_BANG_BANG] = ACTIONS(4435), + [anon_sym_suspend] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_annotation] = ACTIONS(4433), + [anon_sym_data] = ACTIONS(4433), + [anon_sym_inner] = ACTIONS(4433), + [anon_sym_value] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_lateinit] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_tailrec] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_infix] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym_external] = ACTIONS(4433), + [sym_property_modifier] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_final] = ACTIONS(4433), + [anon_sym_open] = ACTIONS(4433), + [anon_sym_vararg] = ACTIONS(4433), + [anon_sym_noinline] = ACTIONS(4433), + [anon_sym_crossinline] = ACTIONS(4433), + [anon_sym_expect] = ACTIONS(4433), + [anon_sym_actual] = ACTIONS(4433), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4435), + [sym__automatic_semicolon] = ACTIONS(4435), + [sym_safe_nav] = ACTIONS(4435), [sym_multiline_comment] = ACTIONS(3), }, - [4292] = { - [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), + [4285] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(7551), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = 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(7553), + [anon_sym_COLON_COLON] = 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(4976), + [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), + }, + [4286] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7555), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_while] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + }, + [4287] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [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(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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467372,72 +463650,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3146), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4288] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(3154), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467445,145 +463723,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4295] = { - [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), + [4289] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [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(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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467591,145 +463796,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3142), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4296] = { - [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), + [4290] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7583), + [anon_sym_RPAREN] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), + [sym_multiline_comment] = ACTIONS(3), + }, + [4291] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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), + [sym__backtick_identifier] = ACTIONS(3162), + [sym__automatic_semicolon] = ACTIONS(3162), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4292] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3188), + [sym_label] = ACTIONS(7055), + [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(7067), + [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(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4293] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [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(7067), + [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(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [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(4265), - [sym_safe_nav] = ACTIONS(4265), + [sym__backtick_identifier] = ACTIONS(3195), + [sym__automatic_semicolon] = ACTIONS(3195), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4297] = { - [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), + [4294] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [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(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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467737,72 +464161,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3184), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4298] = { - [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), + [4295] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(3108), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467810,72 +464234,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3108), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, - [4299] = { - [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), + [4296] = { + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), [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_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467884,71 +464308,290 @@ 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(3158), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4297] = { + [sym__alpha_identifier] = ACTIONS(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7585), + [anon_sym_RPAREN] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = 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_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(5049), + [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), + }, + [4298] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_RPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = 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(7553), + [anon_sym_COLON_COLON] = 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(4976), + [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), + }, + [4299] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(4295), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym_safe_nav] = ACTIONS(4295), [sym_multiline_comment] = ACTIONS(3), }, [4300] = { - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3104), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -467956,72 +464599,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3104), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4301] = { - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(3096), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7569), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468029,72 +464672,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3096), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4302] = { - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7037), - [anon_sym_as] = ACTIONS(7039), + [anon_sym_LBRACK] = ACTIONS(7043), + [anon_sym_DOT] = ACTIONS(7045), + [anon_sym_as] = ACTIONS(7047), [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_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), [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_COLON_COLON] = ACTIONS(7067), + [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(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468103,71 +464746,71 @@ 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(3090), - [sym_safe_nav] = ACTIONS(7061), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4303] = { - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(3100), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468175,291 +464818,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3100), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4304] = { - [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), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [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(3188), - [anon_sym_LPAREN] = ACTIONS(7041), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_GT] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(7043), [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(7561), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7573), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7573), + [anon_sym_LT_EQ] = ACTIONS(7575), + [anon_sym_GT_EQ] = ACTIONS(7575), + [anon_sym_BANGin] = ACTIONS(7577), + [anon_sym_is] = ACTIONS(7077), + [anon_sym_BANGis] = ACTIONS(7079), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3188), - [sym__automatic_semicolon] = ACTIONS(3188), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3119), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4305] = { - [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), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [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(3195), - [anon_sym_LPAREN] = ACTIONS(7041), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(7043), [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_else] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3112), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [anon_sym_value] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3092), + [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7061), + [sym__backtick_identifier] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(3112), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4306] = { - [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), + [sym_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), + [sym__alpha_identifier] = ACTIONS(3167), [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_LBRACK] = ACTIONS(7043), [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), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_QMARK_COLON] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3169), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), + [anon_sym_data] = ACTIONS(3167), + [anon_sym_inner] = ACTIONS(3167), + [anon_sym_value] = ACTIONS(3167), + [anon_sym_expect] = ACTIONS(3167), + [anon_sym_actual] = ACTIONS(3167), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3169), + [sym__automatic_semicolon] = ACTIONS(3169), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4307] = { - [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_indexing_suffix] = STATE(5155), + [sym_navigation_suffix] = STATE(5152), + [sym_call_suffix] = STATE(5151), + [sym_annotated_lambda] = STATE(5150), + [sym_type_arguments] = STATE(8232), + [sym_value_arguments] = STATE(4570), + [sym_lambda_literal] = STATE(5122), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1617), + [sym__in_operator] = STATE(1622), + [sym__is_operator] = STATE(6041), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1624), + [sym__as_operator] = STATE(5979), + [sym__postfix_unary_operator] = STATE(5120), + [sym__member_access_operator] = STATE(7674), + [sym_annotation] = STATE(8355), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1630), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8355), [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_LBRACK] = ACTIONS(7043), [anon_sym_DOT] = ACTIONS(7045), - [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(7049), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_SEMI] = ACTIONS(3135), [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_STAR] = ACTIONS(7559), + [sym_label] = ACTIONS(7055), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(7563), + [anon_sym_QMARK_COLON] = ACTIONS(7565), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_PLUS] = ACTIONS(7579), + [anon_sym_DASH] = ACTIONS(7579), + [anon_sym_SLASH] = ACTIONS(7581), + [anon_sym_PERCENT] = ACTIONS(7559), + [anon_sym_as_QMARK] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7085), + [anon_sym_BANG_BANG] = ACTIONS(7085), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468467,72 +465110,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(3135), + [sym_safe_nav] = ACTIONS(7067), [sym_multiline_comment] = ACTIONS(3), }, [4308] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8844), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7589), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468540,71 +465183,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4309] = { - [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(5047), + [anon_sym_AT] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_as] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(7593), + [anon_sym_LT] = ACTIONS(5047), + [anon_sym_GT] = ACTIONS(5047), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_get] = ACTIONS(5047), + [anon_sym_set] = ACTIONS(5047), + [anon_sym_STAR] = ACTIONS(5049), + [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_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(5049), + [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), + }, + [4310] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8805), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7595), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468612,71 +465327,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4310] = { - [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), + [4311] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8918), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468684,143 +465399,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4312] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(9065), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7599), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468828,71 +465471,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4313] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8963), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7601), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468900,71 +465543,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4314] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8901), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7603), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -468972,143 +465615,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4315] = { - [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_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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8990), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469116,287 +465687,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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__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_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4319] = { - [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), + [4316] = { + [sym__alpha_identifier] = ACTIONS(5071), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_as] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5071), + [anon_sym_set] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [sym_label] = ACTIONS(5073), + [anon_sym_in] = ACTIONS(5071), + [anon_sym_DOT_DOT] = ACTIONS(5073), + [anon_sym_QMARK_COLON] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_PIPE_PIPE] = ACTIONS(5073), + [anon_sym_else] = ACTIONS(5071), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), + [anon_sym_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), + [anon_sym_LT_EQ] = ACTIONS(5073), + [anon_sym_GT_EQ] = ACTIONS(5073), + [anon_sym_BANGin] = ACTIONS(5073), + [anon_sym_is] = ACTIONS(5071), + [anon_sym_BANGis] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_as_QMARK] = ACTIONS(5073), + [anon_sym_PLUS_PLUS] = ACTIONS(5073), + [anon_sym_DASH_DASH] = ACTIONS(5073), + [anon_sym_BANG_BANG] = ACTIONS(5073), + [anon_sym_suspend] = ACTIONS(5071), + [anon_sym_sealed] = ACTIONS(5071), + [anon_sym_annotation] = ACTIONS(5071), + [anon_sym_data] = ACTIONS(5071), + [anon_sym_inner] = ACTIONS(5071), + [anon_sym_value] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_lateinit] = ACTIONS(5071), + [anon_sym_public] = ACTIONS(5071), + [anon_sym_private] = ACTIONS(5071), + [anon_sym_internal] = ACTIONS(5071), + [anon_sym_protected] = ACTIONS(5071), + [anon_sym_tailrec] = ACTIONS(5071), + [anon_sym_operator] = ACTIONS(5071), + [anon_sym_infix] = ACTIONS(5071), + [anon_sym_inline] = ACTIONS(5071), + [anon_sym_external] = ACTIONS(5071), + [sym_property_modifier] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_final] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_vararg] = ACTIONS(5071), + [anon_sym_noinline] = ACTIONS(5071), + [anon_sym_crossinline] = ACTIONS(5071), + [anon_sym_expect] = ACTIONS(5071), + [anon_sym_actual] = ACTIONS(5071), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5073), + [sym__automatic_semicolon] = ACTIONS(5073), + [sym_safe_nav] = ACTIONS(5073), [sym_multiline_comment] = ACTIONS(3), }, - [4320] = { - [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), + [4317] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(9070), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469404,71 +465831,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4321] = { - [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), + [4318] = { + [sym__alpha_identifier] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_as] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(7611), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4281), + [anon_sym_get] = ACTIONS(4283), + [anon_sym_set] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4281), + [sym_label] = ACTIONS(4281), + [anon_sym_in] = ACTIONS(4283), + [anon_sym_DOT_DOT] = ACTIONS(4281), + [anon_sym_QMARK_COLON] = ACTIONS(4281), + [anon_sym_AMP_AMP] = ACTIONS(4281), + [anon_sym_PIPE_PIPE] = ACTIONS(4281), + [anon_sym_else] = ACTIONS(4283), + [anon_sym_COLON_COLON] = ACTIONS(4281), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4281), + [anon_sym_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4281), + [anon_sym_LT_EQ] = ACTIONS(4281), + [anon_sym_GT_EQ] = ACTIONS(4281), + [anon_sym_BANGin] = ACTIONS(4281), + [anon_sym_is] = ACTIONS(4283), + [anon_sym_BANGis] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_as_QMARK] = ACTIONS(4281), + [anon_sym_PLUS_PLUS] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4281), + [anon_sym_BANG_BANG] = ACTIONS(4281), + [anon_sym_suspend] = ACTIONS(4283), + [anon_sym_sealed] = ACTIONS(4283), + [anon_sym_annotation] = ACTIONS(4283), + [anon_sym_data] = ACTIONS(4283), + [anon_sym_inner] = ACTIONS(4283), + [anon_sym_value] = ACTIONS(4283), + [anon_sym_override] = ACTIONS(4283), + [anon_sym_lateinit] = ACTIONS(4283), + [anon_sym_public] = ACTIONS(4283), + [anon_sym_private] = ACTIONS(4283), + [anon_sym_internal] = ACTIONS(4283), + [anon_sym_protected] = ACTIONS(4283), + [anon_sym_tailrec] = ACTIONS(4283), + [anon_sym_operator] = ACTIONS(4283), + [anon_sym_infix] = ACTIONS(4283), + [anon_sym_inline] = ACTIONS(4283), + [anon_sym_external] = ACTIONS(4283), + [sym_property_modifier] = ACTIONS(4283), + [anon_sym_abstract] = ACTIONS(4283), + [anon_sym_final] = ACTIONS(4283), + [anon_sym_open] = ACTIONS(4283), + [anon_sym_vararg] = ACTIONS(4283), + [anon_sym_noinline] = ACTIONS(4283), + [anon_sym_crossinline] = ACTIONS(4283), + [anon_sym_expect] = ACTIONS(4283), + [anon_sym_actual] = ACTIONS(4283), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4281), + [sym__automatic_semicolon] = ACTIONS(4281), + [sym_safe_nav] = ACTIONS(4281), + [sym_multiline_comment] = ACTIONS(3), + }, + [4319] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8985), [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_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7613), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469476,143 +465975,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4322] = { - [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), + [4320] = { + [sym__alpha_identifier] = ACTIONS(4297), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_LBRACK] = ACTIONS(4295), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_as] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(7615), + [anon_sym_LT] = ACTIONS(4297), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4297), + [anon_sym_set] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4295), + [sym_label] = ACTIONS(4295), + [anon_sym_in] = ACTIONS(4297), + [anon_sym_DOT_DOT] = ACTIONS(4295), + [anon_sym_QMARK_COLON] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_PIPE_PIPE] = ACTIONS(4295), + [anon_sym_else] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_BANG_EQ] = ACTIONS(4297), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ] = ACTIONS(4297), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_BANGin] = ACTIONS(4295), + [anon_sym_is] = ACTIONS(4297), + [anon_sym_BANGis] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_as_QMARK] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_BANG_BANG] = ACTIONS(4295), + [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(4295), + [sym__automatic_semicolon] = ACTIONS(4295), + [sym_safe_nav] = ACTIONS(4295), + [sym_multiline_comment] = ACTIONS(3), + }, + [4321] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(7617), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7619), + [anon_sym_COLON_COLON] = 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(4976), + [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(4876), - [sym__automatic_semicolon] = ACTIONS(4876), - [sym_safe_nav] = ACTIONS(4876), + [sym__backtick_identifier] = ACTIONS(4976), + [sym__automatic_semicolon] = ACTIONS(4976), + [sym_safe_nav] = ACTIONS(4976), [sym_multiline_comment] = ACTIONS(3), }, - [4323] = { - [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), + [4322] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8874), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7621), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469620,71 +466191,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4324] = { - [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), + [4323] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8816), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7623), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469692,71 +466263,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4324] = { + [sym__alpha_identifier] = ACTIONS(4974), + [anon_sym_AT] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4974), + [anon_sym_as] = ACTIONS(4974), + [anon_sym_LBRACE] = ACTIONS(4976), + [anon_sym_RBRACE] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_get] = ACTIONS(4974), + [anon_sym_set] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [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(7619), + [anon_sym_COLON_COLON] = 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(4976), + [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), }, [4325] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [aux_sym_indexing_suffix_repeat1] = STATE(8829), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6726), [anon_sym_RBRACK] = ACTIONS(7625), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_COMMA] = ACTIONS(7591), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -469764,36 +466407,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4326] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4392), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [anon_sym_AT] = ACTIONS(3202), [anon_sym_typealias] = ACTIONS(7627), [anon_sym_class] = ACTIONS(7629), @@ -469839,32 +466482,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4327] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [anon_sym_AT] = ACTIONS(3202), [anon_sym_typealias] = ACTIONS(7627), [anon_sym_class] = ACTIONS(7629), @@ -469910,103 +466553,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4328] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4329] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4353), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [anon_sym_AT] = ACTIONS(3202), [anon_sym_typealias] = ACTIONS(7627), [anon_sym_class] = ACTIONS(7629), @@ -470052,103 +466695,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4330] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4331] = { - [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), + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_RPAREN] = ACTIONS(7669), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4332] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [anon_sym_AT] = ACTIONS(3202), [anon_sym_typealias] = ACTIONS(7627), [anon_sym_class] = ACTIONS(7629), @@ -470193,33 +466907,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4332] = { - [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), + [4333] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [anon_sym_AT] = ACTIONS(3202), [anon_sym_typealias] = ACTIONS(7627), [anon_sym_class] = ACTIONS(7629), @@ -470264,182 +466978,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4333] = { - [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(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, [4334] = { - [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_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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4390), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7673), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470477,40 +467049,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4336] = { - [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), + [4335] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4346), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7675), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470548,111 +467120,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4337] = { - [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(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), + [4336] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4039), + [anon_sym_set] = ACTIONS(4039), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = 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(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4037), + [anon_sym_sealed] = ACTIONS(4037), + [anon_sym_annotation] = ACTIONS(4037), + [anon_sym_data] = ACTIONS(4039), + [anon_sym_inner] = ACTIONS(4039), + [anon_sym_value] = ACTIONS(4039), + [anon_sym_override] = ACTIONS(4037), + [anon_sym_lateinit] = ACTIONS(4037), + [anon_sym_public] = ACTIONS(4037), + [anon_sym_private] = ACTIONS(4037), + [anon_sym_internal] = ACTIONS(4037), + [anon_sym_protected] = ACTIONS(4037), + [anon_sym_tailrec] = ACTIONS(4037), + [anon_sym_operator] = ACTIONS(4037), + [anon_sym_infix] = ACTIONS(4037), + [anon_sym_inline] = ACTIONS(4037), + [anon_sym_external] = ACTIONS(4037), + [sym_property_modifier] = ACTIONS(4037), + [anon_sym_abstract] = ACTIONS(4037), + [anon_sym_final] = ACTIONS(4037), + [anon_sym_open] = ACTIONS(4037), + [anon_sym_vararg] = ACTIONS(4037), + [anon_sym_noinline] = ACTIONS(4037), + [anon_sym_crossinline] = ACTIONS(4037), + [anon_sym_expect] = ACTIONS(4039), + [anon_sym_actual] = ACTIONS(4039), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), }, - [4338] = { - [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), + [4337] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4341), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7677), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470690,40 +467262,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4339] = { - [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), + [4338] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7679), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470761,40 +467333,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, + [4339] = { + [sym__alpha_identifier] = ACTIONS(4030), + [anon_sym_AT] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_object] = ACTIONS(4030), + [anon_sym_fun] = ACTIONS(4030), + [anon_sym_get] = ACTIONS(4047), + [anon_sym_set] = ACTIONS(4047), + [anon_sym_this] = ACTIONS(4030), + [anon_sym_super] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4035), + [sym_label] = ACTIONS(4030), + [anon_sym_null] = ACTIONS(4030), + [anon_sym_if] = 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(4035), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4035), + [anon_sym_DASH_DASH] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_suspend] = ACTIONS(4045), + [anon_sym_sealed] = ACTIONS(4045), + [anon_sym_annotation] = ACTIONS(4045), + [anon_sym_data] = ACTIONS(4047), + [anon_sym_inner] = ACTIONS(4047), + [anon_sym_value] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4045), + [anon_sym_lateinit] = ACTIONS(4045), + [anon_sym_public] = ACTIONS(4045), + [anon_sym_private] = ACTIONS(4045), + [anon_sym_internal] = ACTIONS(4045), + [anon_sym_protected] = ACTIONS(4045), + [anon_sym_tailrec] = ACTIONS(4045), + [anon_sym_operator] = ACTIONS(4045), + [anon_sym_infix] = ACTIONS(4045), + [anon_sym_inline] = ACTIONS(4045), + [anon_sym_external] = ACTIONS(4045), + [sym_property_modifier] = ACTIONS(4045), + [anon_sym_abstract] = ACTIONS(4045), + [anon_sym_final] = ACTIONS(4045), + [anon_sym_open] = ACTIONS(4045), + [anon_sym_vararg] = ACTIONS(4045), + [anon_sym_noinline] = ACTIONS(4045), + [anon_sym_crossinline] = ACTIONS(4045), + [anon_sym_expect] = ACTIONS(4047), + [anon_sym_actual] = ACTIONS(4047), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4035), + [anon_sym_continue_AT] = ACTIONS(4035), + [anon_sym_break_AT] = ACTIONS(4035), + [anon_sym_this_AT] = ACTIONS(4035), + [anon_sym_super_AT] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4035), + [sym_integer_literal] = ACTIONS(4030), + [sym_hex_literal] = ACTIONS(4035), + [sym_bin_literal] = ACTIONS(4035), + [anon_sym_true] = ACTIONS(4030), + [anon_sym_false] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4035), + [sym__backtick_identifier] = ACTIONS(4035), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4035), + }, [4340] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4332), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7681), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470833,39 +467476,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4341] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7683), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470904,39 +467547,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4342] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4344), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7683), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -470975,39 +467618,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4343] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4366), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7685), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471046,39 +467689,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4344] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7687), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471117,39 +467760,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4345] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4333), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7689), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471188,39 +467831,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4346] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7691), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471259,39 +467902,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4347] = { - [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), + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4358), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7691), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471330,252 +467973,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), }, [4348] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7693), + [anon_sym_RPAREN] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4349] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4350] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7696), + [anon_sym_RPAREN] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, [4351] = { - [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), + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7698), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4352] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4375), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7700), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471613,40 +468327,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4352] = { - [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), + [4353] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7702), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471684,40 +468398,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4353] = { - [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), + [4354] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4355] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7706), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471755,40 +468540,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4354] = { - [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), + [4356] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4357] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4362), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7708), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471826,67 +468682,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [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(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), + [4358] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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(7710), + [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(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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(7305), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -471894,43 +468821,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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), + [4360] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [anon_sym_AT] = ACTIONS(7712), + [anon_sym_typealias] = ACTIONS(7715), + [anon_sym_class] = ACTIONS(7718), + [anon_sym_interface] = ACTIONS(7718), + [anon_sym_enum] = ACTIONS(7721), + [anon_sym_constructor] = ACTIONS(7724), + [anon_sym_RBRACE] = ACTIONS(7727), + [anon_sym_val] = ACTIONS(7729), + [anon_sym_var] = ACTIONS(7729), + [anon_sym_init] = ACTIONS(7732), + [anon_sym_companion] = ACTIONS(7735), + [anon_sym_object] = ACTIONS(7738), + [anon_sym_fun] = ACTIONS(7741), + [anon_sym_get] = ACTIONS(7744), + [anon_sym_set] = ACTIONS(7747), + [anon_sym_suspend] = ACTIONS(7750), + [anon_sym_sealed] = ACTIONS(7753), + [anon_sym_annotation] = ACTIONS(7753), + [anon_sym_data] = ACTIONS(7753), + [anon_sym_inner] = ACTIONS(7753), + [anon_sym_value] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7756), + [anon_sym_lateinit] = ACTIONS(7756), + [anon_sym_public] = ACTIONS(7759), + [anon_sym_private] = ACTIONS(7759), + [anon_sym_internal] = ACTIONS(7759), + [anon_sym_protected] = ACTIONS(7759), + [anon_sym_tailrec] = ACTIONS(7750), + [anon_sym_operator] = ACTIONS(7750), + [anon_sym_infix] = ACTIONS(7750), + [anon_sym_inline] = ACTIONS(7750), + [anon_sym_external] = ACTIONS(7750), + [sym_property_modifier] = ACTIONS(7762), + [anon_sym_abstract] = ACTIONS(7765), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_open] = ACTIONS(7765), + [anon_sym_vararg] = ACTIONS(7768), + [anon_sym_noinline] = ACTIONS(7768), + [anon_sym_crossinline] = ACTIONS(7768), + [anon_sym_expect] = ACTIONS(7771), + [anon_sym_actual] = ACTIONS(7771), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4361] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7774), + [anon_sym_RPAREN] = ACTIONS(7774), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4362] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7776), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -471968,111 +469037,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4357] = { - [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), + [4363] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7778), + [anon_sym_RPAREN] = ACTIONS(7778), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4358] = { - [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), + [4364] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7780), + [anon_sym_RPAREN] = ACTIONS(7780), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4365] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7782), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472110,40 +469250,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4359] = { - [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), + [4366] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7784), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472181,40 +469321,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4360] = { - [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), + [4367] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4379), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7784), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472252,67 +469392,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4361] = { - [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), + [4368] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_RBRACK] = ACTIONS(7786), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -472320,43 +469460,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4362] = { - [sym_type_alias] = STATE(9356), - [sym__declaration] = STATE(9356), - [sym_class_declaration] = STATE(9356), + [4369] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), [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), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7788), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472394,40 +469534,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4363] = { - [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), + [4370] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4355), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7790), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472465,111 +469605,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4364] = { - [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), + [4371] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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(7788), + [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(6740), [sym_multiline_comment] = ACTIONS(3), }, - [4365] = { - [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), + [4372] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4373), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7792), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472607,111 +469747,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4373] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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(7794), + [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), }, - [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), + [4374] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4371), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7796), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472749,40 +469889,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4375] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7798), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472820,40 +469960,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4376] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4389), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7798), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472891,40 +470031,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4377] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4378), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7794), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -472962,40 +470102,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [4378] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7800), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473033,253 +470173,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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), + [4379] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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(7802), + [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(6740), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4380] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4381), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), + [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(7804), + [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(6740), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4381] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7806), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473317,67 +470386,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4382] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [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_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), [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_STAR] = ACTIONS(7305), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -473385,43 +470454,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [4377] = { - [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), + [4383] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1452), + [sym__comparison_operator] = STATE(1457), + [sym__in_operator] = STATE(1459), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1469), + [sym__multiplicative_operator] = STATE(1471), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1520), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_COMMA] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7810), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7307), + [anon_sym_DOT_DOT] = ACTIONS(7309), + [anon_sym_QMARK_COLON] = ACTIONS(7311), + [anon_sym_AMP_AMP] = ACTIONS(7313), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7317), + [anon_sym_EQ_EQ] = ACTIONS(7315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7317), + [anon_sym_LT_EQ] = ACTIONS(7319), + [anon_sym_GT_EQ] = ACTIONS(7319), + [anon_sym_BANGin] = ACTIONS(7321), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7323), + [anon_sym_DASH] = ACTIONS(7323), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), + [anon_sym_data] = ACTIONS(3092), + [anon_sym_inner] = ACTIONS(3092), + [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(6750), + [sym_multiline_comment] = ACTIONS(3), + }, + [4384] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4391), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7812), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473459,40 +470599,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4378] = { - [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), + [4385] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7814), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473530,40 +470670,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4379] = { - [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), + [4386] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7816), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473601,182 +470741,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4380] = { - [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(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [4381] = { - [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(7810), - [anon_sym_RPAREN] = ACTIONS(7810), - [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), - }, - [4382] = { - [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), + [4387] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4386), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7818), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473814,111 +470812,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4383] = { - [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(7814), - [anon_sym_RPAREN] = ACTIONS(7814), - [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), - }, - [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), + [4388] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7820), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -473956,111 +470883,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [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), + [4389] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7822), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474098,111 +470954,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [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(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(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(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), + [4390] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7824), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474240,40 +471025,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4389] = { - [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), + [4391] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7635), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474311,40 +471096,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4390] = { - [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), + [4392] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7826), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474382,111 +471167,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4391] = { - [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(1788), - [sym_safe_nav] = ACTIONS(6740), - [sym_multiline_comment] = ACTIONS(3), - }, - [4392] = { - [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), + [4393] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4338), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7828), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474524,40 +471238,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4393] = { - [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), + [4394] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4327), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7830), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474595,40 +471309,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4394] = { - [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), + [4395] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4388), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7832), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474666,40 +471380,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4395] = { - [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), + [4396] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7834), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474737,40 +471451,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4396] = { - [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), + [4397] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4385), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7834), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474808,40 +471522,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4397] = { - [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), + [4398] = { + [sym_type_alias] = STATE(9223), + [sym__declaration] = STATE(9223), + [sym_class_declaration] = STATE(9223), + [aux_sym__class_member_declarations] = STATE(4396), + [sym__class_member_declaration] = STATE(9223), + [sym_anonymous_initializer] = STATE(9223), + [sym_companion_object] = STATE(9223), + [sym_function_declaration] = STATE(9223), + [sym_property_declaration] = STATE(9223), + [sym_getter] = STATE(9223), + [sym_setter] = STATE(9223), + [sym_object_declaration] = STATE(9223), + [sym_secondary_constructor] = STATE(9223), + [sym_modifiers] = STATE(7923), + [sym__modifier] = STATE(5520), + [sym_class_modifier] = STATE(5520), + [sym_member_modifier] = STATE(5520), + [sym_visibility_modifier] = STATE(5520), + [sym_function_modifier] = STATE(5520), + [sym_inheritance_modifier] = STATE(5520), + [sym_parameter_modifier] = STATE(5520), + [sym_platform_modifier] = STATE(5520), + [sym_annotation] = STATE(5520), + [sym__single_annotation] = STATE(5736), + [sym__multi_annotation] = STATE(5736), + [aux_sym_modifiers_repeat1] = STATE(5520), [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_RBRACE] = ACTIONS(7836), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_init] = ACTIONS(7637), @@ -474879,137 +471593,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4398] = { - [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(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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7838), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475017,69 +471660,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4400] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7840), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475087,69 +471730,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4401] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7842), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475157,69 +471800,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4402] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7844), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475227,69 +471870,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4403] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7846), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475297,69 +471940,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4404] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7848), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475367,69 +472010,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4405] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7850), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475437,69 +472080,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4406] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7852), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475507,69 +472150,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4407] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7854), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475577,69 +472220,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4408] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7856), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475647,69 +472290,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4409] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7858), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475717,69 +472360,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4410] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7860), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475787,69 +472430,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4411] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7862), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475857,69 +472500,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4412] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7864), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475927,69 +472570,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4413] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7866), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -475997,69 +472640,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4414] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7868), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476067,69 +472710,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4415] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7870), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476137,69 +472780,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4416] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7872), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476207,69 +472850,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4417] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7874), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476277,69 +472920,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4418] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7876), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476347,69 +472990,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4419] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7878), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476417,69 +473060,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4420] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7880), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476487,69 +473130,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4421] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7882), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476557,69 +473200,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4422] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7884), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476627,69 +473270,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4423] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7886), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476697,69 +473340,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4424] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7888), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476767,69 +473410,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4425] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7890), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476837,69 +473480,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4426] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7892), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476907,69 +473550,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4427] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7894), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -476977,69 +473620,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4428] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7896), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477047,69 +473690,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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(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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7898), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477117,69 +473760,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4430] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7900), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477187,69 +473830,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4431] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7902), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477257,69 +473900,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4432] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7904), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477327,69 +473970,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4433] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7906), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477397,69 +474040,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4434] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7908), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477467,69 +474110,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4435] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7910), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477537,69 +474180,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4436] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7912), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477607,69 +474250,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4437] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7914), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477677,69 +474320,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4438] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7916), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477747,69 +474390,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4439] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7918), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477817,69 +474460,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4440] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7920), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477887,69 +474530,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4441] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7922), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -477957,69 +474600,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4442] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7924), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478027,69 +474670,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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(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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7926), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478097,69 +474740,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4444] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7928), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478167,69 +474810,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4445] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7930), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478237,69 +474880,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4446] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7932), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478307,69 +474950,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4447] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7934), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478377,69 +475020,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4448] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7936), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478447,69 +475090,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4449] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7938), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478517,69 +475160,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4450] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7940), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478587,69 +475230,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4451] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7942), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478657,69 +475300,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [4452] = { - [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7944), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478727,69 +475370,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7946), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478797,69 +475440,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7948), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478867,69 +475510,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7950), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -478937,69 +475580,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7952), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479007,69 +475650,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7954), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479077,69 +475720,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7956), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479147,69 +475790,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7958), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479217,69 +475860,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7960), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479287,69 +475930,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7962), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479357,69 +476000,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, - [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), + [4462] = { + [sym_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7964), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479427,69 +476070,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479497,69 +476140,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479567,69 +476210,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7970), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479637,69 +476280,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7972), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479707,69 +476350,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7974), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479777,69 +476420,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), - [anon_sym_RPAREN] = ACTIONS(7976), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_RBRACE] = ACTIONS(7976), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479847,69 +476490,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7978), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479917,69 +476560,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7980), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -479987,69 +476630,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7982), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480057,69 +476700,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7984), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480127,69 +476770,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7986), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480197,69 +476840,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7988), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480267,69 +476910,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7990), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480337,69 +476980,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7992), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480407,69 +477050,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7994), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480477,69 +477120,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7996), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480547,69 +477190,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(7998), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480617,69 +477260,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480687,69 +477330,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480757,69 +477400,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8004), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480827,69 +477470,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480897,69 +477540,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -480967,69 +477610,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8010), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481037,69 +477680,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8012), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481107,69 +477750,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8014), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481177,69 +477820,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8016), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481247,69 +477890,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8018), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481317,69 +477960,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8020), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481387,69 +478030,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8022), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481457,69 +478100,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8024), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481527,69 +478170,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8026), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481597,69 +478240,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8028), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481667,69 +478310,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8030), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481737,69 +478380,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8032), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481807,69 +478450,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8034), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481877,69 +478520,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8036), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -481947,69 +478590,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8038), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482017,69 +478660,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8040), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482087,69 +478730,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8042), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482157,69 +478800,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8044), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482227,69 +478870,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8046), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482297,69 +478940,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8048), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482367,69 +479010,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482437,69 +479080,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8052), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482507,69 +479150,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8054), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482577,69 +479220,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8056), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482647,69 +479290,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8058), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482717,69 +479360,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8060), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482787,69 +479430,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8062), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482857,69 +479500,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8064), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482927,69 +479570,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8066), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -482997,69 +479640,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8068), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483067,69 +479710,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8070), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483137,69 +479780,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8072), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483207,69 +479850,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8074), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483277,69 +479920,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8076), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483347,69 +479990,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8078), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483417,69 +480060,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8080), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483487,69 +480130,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8082), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483557,69 +480200,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8084), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483627,69 +480270,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8086), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483697,69 +480340,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(8088), - [anon_sym_LPAREN] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(8088), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483767,69 +480410,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8090), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483837,69 +480480,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8092), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483907,69 +480550,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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_indexing_suffix] = STATE(4763), + [sym_navigation_suffix] = STATE(4758), + [sym_call_suffix] = STATE(4757), + [sym_annotated_lambda] = STATE(4754), + [sym_type_arguments] = STATE(8191), + [sym_value_arguments] = STATE(4531), + [sym_lambda_literal] = STATE(4753), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1552), + [sym__in_operator] = STATE(1551), + [sym__is_operator] = STATE(6376), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1543), + [sym__as_operator] = STATE(6379), + [sym__postfix_unary_operator] = STATE(4746), + [sym__member_access_operator] = STATE(7619), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [sym_simple_identifier] = STATE(1541), + [sym__lexical_identifier] = STATE(5441), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), [sym__alpha_identifier] = ACTIONS(1724), [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_as] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6726), + [anon_sym_DOT] = ACTIONS(6728), + [anon_sym_as] = ACTIONS(6730), [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6720), + [anon_sym_LPAREN] = ACTIONS(6732), [anon_sym_RPAREN] = ACTIONS(8094), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_GT] = ACTIONS(7509), [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_STAR] = ACTIONS(7511), + [sym_label] = ACTIONS(6738), + [anon_sym_in] = ACTIONS(7513), + [anon_sym_DOT_DOT] = ACTIONS(7515), + [anon_sym_QMARK_COLON] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_COLON_COLON] = ACTIONS(6750), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7525), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_BANGin] = ACTIONS(7529), + [anon_sym_is] = ACTIONS(6760), + [anon_sym_BANGis] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7533), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_as_QMARK] = ACTIONS(6766), + [anon_sym_PLUS_PLUS] = ACTIONS(6768), + [anon_sym_DASH_DASH] = ACTIONS(6768), + [anon_sym_BANG_BANG] = ACTIONS(6768), [anon_sym_data] = ACTIONS(3092), [anon_sym_inner] = ACTIONS(3092), [anon_sym_value] = ACTIONS(3092), @@ -483977,376 +480620,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3092), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6740), + [sym_safe_nav] = ACTIONS(6750), [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(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_annotated_lambda] = STATE(4748), + [sym_lambda_literal] = STATE(4753), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(4020), + [anon_sym_AT] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_RBRACK] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_as] = ACTIONS(4020), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_LPAREN] = ACTIONS(4022), + [anon_sym_COMMA] = ACTIONS(4022), + [anon_sym_RPAREN] = ACTIONS(4022), + [anon_sym_LT] = ACTIONS(4020), + [anon_sym_GT] = ACTIONS(4020), + [anon_sym_where] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_get] = ACTIONS(4020), + [anon_sym_set] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_DASH_GT] = ACTIONS(4022), + [sym_label] = ACTIONS(4022), + [anon_sym_in] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_DOT_DOT] = ACTIONS(4022), + [anon_sym_QMARK_COLON] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_PLUS_EQ] = ACTIONS(4022), + [anon_sym_DASH_EQ] = ACTIONS(4022), + [anon_sym_STAR_EQ] = ACTIONS(4022), + [anon_sym_SLASH_EQ] = ACTIONS(4022), + [anon_sym_PERCENT_EQ] = ACTIONS(4022), + [anon_sym_BANG_EQ] = ACTIONS(4020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4022), + [anon_sym_EQ_EQ] = ACTIONS(4020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4022), + [anon_sym_LT_EQ] = ACTIONS(4022), + [anon_sym_GT_EQ] = ACTIONS(4022), + [anon_sym_BANGin] = ACTIONS(4022), + [anon_sym_is] = ACTIONS(4020), + [anon_sym_BANGis] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_SLASH] = ACTIONS(4020), + [anon_sym_PERCENT] = ACTIONS(4020), + [anon_sym_as_QMARK] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_BANG_BANG] = ACTIONS(4022), + [anon_sym_data] = ACTIONS(4020), + [anon_sym_inner] = ACTIONS(4020), + [anon_sym_value] = ACTIONS(4020), + [anon_sym_expect] = ACTIONS(4020), + [anon_sym_actual] = ACTIONS(4020), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4022), + [sym_safe_nav] = ACTIONS(4022), [sym_multiline_comment] = ACTIONS(3), }, [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_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4013), + [anon_sym_DASH_EQ] = ACTIONS(4013), + [anon_sym_STAR_EQ] = ACTIONS(4013), + [anon_sym_SLASH_EQ] = ACTIONS(4013), + [anon_sym_PERCENT_EQ] = ACTIONS(4013), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), [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_indexing_suffix] = STATE(7175), + [sym_navigation_suffix] = STATE(7175), + [sym__postfix_unary_operator] = STATE(7175), + [sym__member_access_operator] = STATE(7619), + [sym__postfix_unary_suffix] = STATE(7175), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7175), + [sym__alpha_identifier] = ACTIONS(3998), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_as] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym_COMMA] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(3998), + [anon_sym_GT] = ACTIONS(3998), + [anon_sym_where] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_get] = ACTIONS(3998), + [anon_sym_set] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_DASH_GT] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_DOT_DOT] = ACTIONS(4000), + [anon_sym_QMARK_COLON] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_PIPE_PIPE] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_PLUS_EQ] = ACTIONS(4027), + [anon_sym_DASH_EQ] = ACTIONS(4027), + [anon_sym_STAR_EQ] = ACTIONS(4027), + [anon_sym_SLASH_EQ] = ACTIONS(4027), + [anon_sym_PERCENT_EQ] = ACTIONS(4027), + [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(4000), + [anon_sym_GT_EQ] = ACTIONS(4000), + [anon_sym_BANGin] = ACTIONS(4000), + [anon_sym_is] = ACTIONS(3998), + [anon_sym_BANGis] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_SLASH] = ACTIONS(3998), + [anon_sym_PERCENT] = ACTIONS(3998), + [anon_sym_as_QMARK] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_BANG_BANG] = ACTIONS(4015), + [anon_sym_data] = ACTIONS(3998), + [anon_sym_inner] = ACTIONS(3998), + [anon_sym_value] = ACTIONS(3998), + [anon_sym_expect] = ACTIONS(3998), + [anon_sym_actual] = ACTIONS(3998), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4000), + [sym_safe_nav] = ACTIONS(4010), [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_annotated_lambda] = STATE(4844), + [sym_lambda_literal] = STATE(4753), + [sym_annotation] = STATE(8349), + [sym__single_annotation] = STATE(5899), + [sym__multi_annotation] = STATE(5899), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8349), + [sym__alpha_identifier] = ACTIONS(3978), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_LBRACK] = ACTIONS(3980), + [anon_sym_RBRACK] = ACTIONS(3980), + [anon_sym_DOT] = ACTIONS(3978), + [anon_sym_as] = ACTIONS(3978), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_RPAREN] = ACTIONS(3980), + [anon_sym_LT] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(3978), + [anon_sym_where] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym_get] = ACTIONS(3978), + [anon_sym_set] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3978), + [anon_sym_DASH_GT] = ACTIONS(3980), + [sym_label] = ACTIONS(3980), + [anon_sym_in] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_QMARK_COLON] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_PIPE_PIPE] = ACTIONS(3980), + [anon_sym_else] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_PLUS_EQ] = ACTIONS(3980), + [anon_sym_DASH_EQ] = ACTIONS(3980), + [anon_sym_STAR_EQ] = ACTIONS(3980), + [anon_sym_SLASH_EQ] = ACTIONS(3980), + [anon_sym_PERCENT_EQ] = ACTIONS(3980), + [anon_sym_BANG_EQ] = ACTIONS(3978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3980), + [anon_sym_EQ_EQ] = ACTIONS(3978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3980), + [anon_sym_LT_EQ] = ACTIONS(3980), + [anon_sym_GT_EQ] = ACTIONS(3980), + [anon_sym_BANGin] = ACTIONS(3980), + [anon_sym_is] = ACTIONS(3978), + [anon_sym_BANGis] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_SLASH] = ACTIONS(3978), + [anon_sym_PERCENT] = ACTIONS(3978), + [anon_sym_as_QMARK] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_BANG_BANG] = ACTIONS(3980), + [anon_sym_data] = ACTIONS(3978), + [anon_sym_inner] = ACTIONS(3978), + [anon_sym_value] = ACTIONS(3978), + [anon_sym_expect] = ACTIONS(3978), + [anon_sym_actual] = ACTIONS(3978), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3980), + [sym_safe_nav] = ACTIONS(3980), [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), + [sym_catch_block] = STATE(4541), + [sym_finally_block] = STATE(4796), + [aux_sym_try_expression_repeat1] = STATE(4541), + [sym__alpha_identifier] = ACTIONS(4106), + [anon_sym_AT] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_as] = ACTIONS(4106), + [anon_sym_EQ] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4108), + [anon_sym_COMMA] = ACTIONS(4108), + [anon_sym_RPAREN] = ACTIONS(4108), + [anon_sym_LT] = ACTIONS(4106), + [anon_sym_GT] = ACTIONS(4106), + [anon_sym_where] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym_get] = ACTIONS(4106), + [anon_sym_set] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(4108), + [sym_label] = ACTIONS(4108), + [anon_sym_in] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_DOT_DOT] = ACTIONS(4108), + [anon_sym_QMARK_COLON] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_PIPE_PIPE] = ACTIONS(4108), + [anon_sym_else] = ACTIONS(4106), [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), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [anon_sym_DASH_EQ] = ACTIONS(4108), + [anon_sym_STAR_EQ] = ACTIONS(4108), + [anon_sym_SLASH_EQ] = ACTIONS(4108), + [anon_sym_PERCENT_EQ] = ACTIONS(4108), + [anon_sym_BANG_EQ] = ACTIONS(4106), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4108), + [anon_sym_EQ_EQ] = ACTIONS(4106), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4108), + [anon_sym_LT_EQ] = ACTIONS(4108), + [anon_sym_GT_EQ] = ACTIONS(4108), + [anon_sym_BANGin] = ACTIONS(4108), + [anon_sym_is] = ACTIONS(4106), + [anon_sym_BANGis] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_SLASH] = ACTIONS(4106), + [anon_sym_PERCENT] = ACTIONS(4106), + [anon_sym_as_QMARK] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_BANG_BANG] = ACTIONS(4108), + [anon_sym_data] = ACTIONS(4106), + [anon_sym_inner] = ACTIONS(4106), + [anon_sym_value] = ACTIONS(4106), + [anon_sym_expect] = ACTIONS(4106), + [anon_sym_actual] = ACTIONS(4106), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4108), + [sym_safe_nav] = ACTIONS(4108), [sym_multiline_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 10, - ACTIONS(5582), 1, - anon_sym_where, + [0] = 5, ACTIONS(8100), 1, - anon_sym_COLON, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, - anon_sym_LBRACE, - STATE(4588), 1, - sym_type_constraints, - STATE(4711), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + anon_sym_DOT, + STATE(4534), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 23, + ACTIONS(4139), 27, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -484364,11 +481001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4175), 32, + ACTIONS(4141), 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, @@ -484397,19 +481035,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [85] = 3, + [75] = 5, + ACTIONS(8103), 1, + anon_sym_DOT, + STATE(4544), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 29, - anon_sym_COLON, + ACTIONS(4122), 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, @@ -484431,7 +481071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4009), 33, + ACTIONS(4124), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484465,29 +481105,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [156] = 10, - ACTIONS(5582), 1, + [150] = 5, + ACTIONS(8106), 1, + anon_sym_LT, + STATE(4599), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4161), 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(4159), 33, + anon_sym_DOT, + anon_sym_by, anon_sym_where, - ACTIONS(8102), 1, + 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, + [225] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(8104), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + 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(4030), 34, + anon_sym_COLON, + anon_sym_DOT, + 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, + [296] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8108), 1, anon_sym_COLON, - STATE(4586), 1, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4615), 1, sym_type_constraints, - STATE(4800), 1, - sym__block, - STATE(4871), 1, + STATE(4784), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 23, + ACTIONS(4165), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484507,7 +481285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 32, + ACTIONS(4167), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484540,29 +481318,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [241] = 10, - ACTIONS(5582), 1, + [381] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8102), 1, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8108), 1, + ACTIONS(8114), 1, anon_sym_COLON, - STATE(4619), 1, + STATE(4581), 1, sym_type_constraints, - STATE(4730), 1, + STATE(4842), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 23, + ACTIONS(4153), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + 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(4155), 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, + [466] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8116), 1, + anon_sym_COLON, + STATE(4611), 1, + sym_type_constraints, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4178), 23, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484582,7 +481435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 32, + ACTIONS(4180), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484615,11 +481468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [326] = 3, + [551] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 28, + ACTIONS(4192), 28, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -484648,13 +481501,13 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4179), 34, + ACTIONS(4190), 34, anon_sym_COLON, + anon_sym_DOT, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -484683,29 +481536,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [397] = 5, - ACTIONS(8110), 1, - anon_sym_LT, - STATE(4554), 1, - sym_type_arguments, + [622] = 5, + ACTIONS(8118), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4128), 27, + STATE(4541), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4146), 26, + anon_sym_DOT, 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_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -484719,7 +481572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4189), 33, + ACTIONS(4148), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484753,31 +481606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [472] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8112), 1, - anon_sym_COLON, - STATE(4584), 1, - sym_type_constraints, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + [697] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 23, + ACTIONS(4190), 29, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -484795,11 +481640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 32, + ACTIONS(4192), 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, @@ -484828,15 +481674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [557] = 5, - ACTIONS(8114), 1, - anon_sym_DOT, - STATE(4546), 1, - aux_sym_user_type_repeat1, + [768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4193), 27, + ACTIONS(4030), 29, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -484864,7 +481708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4195), 33, + ACTIONS(4035), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484898,15 +481742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [632] = 5, - ACTIONS(8117), 1, + [839] = 5, + ACTIONS(8121), 1, anon_sym_DOT, - STATE(4541), 1, + STATE(4544), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 27, + ACTIONS(4171), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -484934,7 +481778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4168), 33, + ACTIONS(4173), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484968,29 +481812,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [707] = 5, - ACTIONS(8120), 1, - anon_sym_catch, + [914] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8124), 1, + anon_sym_COLON, + STATE(4608), 1, + sym_type_constraints, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4542), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4130), 26, + ACTIONS(4129), 23, + anon_sym_DOT, 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, @@ -485004,12 +481854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4132), 33, + ACTIONS(4131), 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, @@ -485038,29 +481887,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [782] = 10, - ACTIONS(5582), 1, + [999] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8102), 1, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8126), 1, anon_sym_COLON, - STATE(4582), 1, + STATE(4605), 1, sym_type_constraints, - STATE(4775), 1, + STATE(4858), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4194), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485080,7 +481929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 32, + ACTIONS(4196), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485113,163 +481962,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [867] = 5, - ACTIONS(8125), 1, + [1084] = 5, + ACTIONS(8128), 1, anon_sym_LT, - STATE(4610), 1, + STATE(4562), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 27, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4159), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + 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(4161), 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_AMP, - sym__quest, - 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(4128), 33, + [1159] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4247), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, anon_sym_by, + anon_sym_LT, + anon_sym_GT, 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_AMP, + 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, - [942] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4009), 28, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4249), 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_LT, - anon_sym_AMP, - sym__quest, - 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(4004), 34, + [1229] = 8, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8130), 1, anon_sym_COLON, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4255), 24, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [1013] = 5, - ACTIONS(8127), 1, - anon_sym_DOT, - STATE(4541), 1, - aux_sym_user_type_repeat1, + ACTIONS(4257), 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, + [1309] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4602), 1, + sym_type_constraints, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4153), 27, + ACTIONS(4303), 23, + anon_sym_DOT, 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, @@ -485287,12 +482211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4155), 33, + ACTIONS(4305), 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, @@ -485321,23 +482244,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1088] = 3, + [1391] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4605), 1, + sym_type_constraints, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 29, - anon_sym_COLON, + ACTIONS(4194), 23, + anon_sym_DOT, 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, @@ -485355,12 +482284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 33, + ACTIONS(4196), 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, @@ -485389,119 +482317,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1159] = 5, - ACTIONS(8130), 1, + [1473] = 11, + ACTIONS(4002), 1, + anon_sym_LBRACK, + ACTIONS(4005), 1, anon_sym_DOT, - STATE(4568), 1, - aux_sym_user_type_repeat1, + ACTIONS(4008), 1, + anon_sym_EQ, + STATE(7619), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 27, + ACTIONS(4010), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4015), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4013), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7175), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4000), 20, 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_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_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_as_QMARK, sym__backtick_identifier, - ACTIONS(4193), 32, - anon_sym_by, + ACTIONS(3998), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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, - [1233] = 11, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + [1559] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(4037), 1, - anon_sym_DOT, - STATE(7730), 1, - sym__member_access_operator, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4608), 1, + sym_type_constraints, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4040), 2, + ACTIONS(4129), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4131), 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, - 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [1641] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4263), 28, + anon_sym_DOT, + 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(4265), 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, @@ -485509,9 +482528,23 @@ 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, - ACTIONS(4028), 22, + [1711] = 5, + ACTIONS(8132), 1, + sym__quest, + STATE(4572), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485519,6 +482552,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, @@ -485533,22 +482567,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [1319] = 3, + ACTIONS(4206), 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, + [1785] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4611), 1, + sym_type_constraints, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 28, + ACTIONS(4178), 23, + anon_sym_DOT, 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, @@ -485566,12 +482641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4315), 33, + ACTIONS(4180), 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, @@ -485600,101 +482674,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1389] = 11, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_DOT, - ACTIONS(4050), 1, - anon_sym_EQ, - 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(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, + [1867] = 8, + ACTIONS(5496), 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_BANG_EQ_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, - [1475] = 8, - ACTIONS(5582), 1, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8132), 1, + ACTIONS(5666), 1, anon_sym_COLON, - STATE(4676), 1, + STATE(4686), 1, sym_type_constraints, - STATE(4891), 1, + STATE(4880), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(3276), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485714,7 +482713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 32, + ACTIONS(3280), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485747,28 +482746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1555] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - 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, + [1947] = 4, + ACTIONS(8134), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(4222), 27, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -485786,11 +482780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 32, + ACTIONS(4224), 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, @@ -485819,18 +482814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1635] = 3, + [2019] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 28, + ACTIONS(4171), 28, + anon_sym_DOT, 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, @@ -485852,7 +482847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4337), 33, + ACTIONS(4173), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485886,50 +482881,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1705] = 7, - STATE(5158), 1, - sym_lambda_literal, - STATE(5180), 1, - sym_annotated_lambda, + [2089] = 11, + ACTIONS(4002), 1, + anon_sym_LBRACK, + ACTIONS(4005), 1, + anon_sym_DOT, + ACTIONS(4024), 1, + anon_sym_EQ, + STATE(7619), 1, + sym__member_access_operator, 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, - 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, - 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(3994), 31, - sym__automatic_semicolon, + ACTIONS(4010), 2, sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(4015), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(4027), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7175), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(4000), 20, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -485940,12 +482925,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, @@ -485953,35 +482932,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, - [1783] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - 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(3278), 24, + ACTIONS(3998), 22, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -485996,61 +482956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [1863] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8134), 1, - anon_sym_COLON, - STATE(4672), 1, - sym_type_constraints, - STATE(4809), 1, - sym_enum_class_body, + [2175] = 4, + ACTIONS(8136), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4222), 27, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -486068,11 +482990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 32, + ACTIONS(4224), 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, @@ -486101,28 +483024,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1943] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8136), 1, - anon_sym_COLON, - STATE(4682), 1, - sym_type_constraints, - STATE(4809), 1, - sym_class_body, + [2247] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4307), 28, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -486140,11 +483057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 32, + ACTIONS(4309), 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, @@ -486173,22 +483091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2023] = 5, + [2317] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, ACTIONS(8138), 1, - sym__quest, - STATE(4569), 1, - aux_sym_nullable_type_repeat1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4247), 26, + ACTIONS(4228), 24, + anon_sym_DOT, 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, @@ -486208,12 +483130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4249), 33, + ACTIONS(4230), 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, @@ -486242,26 +483163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2097] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5659), 1, - anon_sym_COLON, - STATE(4694), 1, - sym_type_constraints, - STATE(4786), 1, - sym_enum_class_body, + [2397] = 5, + ACTIONS(8140), 1, + sym__quest, + STATE(4555), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 24, + ACTIONS(4323), 26, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486281,11 +483198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 32, + ACTIONS(4325), 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, @@ -486314,26 +483232,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2177] = 8, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, - anon_sym_LBRACE, + [2471] = 5, ACTIONS(8140), 1, - anon_sym_COLON, - STATE(4763), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + sym__quest, + STATE(4555), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 24, + ACTIONS(4267), 26, + anon_sym_DOT, 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, @@ -486353,11 +483267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 32, + ACTIONS(4269), 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, @@ -486386,31 +483301,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [2545] = 7, + STATE(5122), 1, + sym_lambda_literal, + STATE(5211), 1, + sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 24, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8355), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(4020), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -486425,17 +483340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 32, + ACTIONS(4022), 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, @@ -486458,26 +483372,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2337] = 8, - ACTIONS(8102), 1, + [2623] = 8, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8144), 1, + ACTIONS(8142), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(4802), 1, + STATE(4885), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 24, + ACTIONS(4329), 24, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486497,7 +483411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 32, + ACTIONS(4331), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486530,26 +483444,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2417] = 8, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [2703] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8146), 1, + ACTIONS(5658), 1, anon_sym_COLON, - STATE(4800), 1, - sym__block, - STATE(4813), 1, - sym_function_body, + STATE(4688), 1, + sym_type_constraints, + STATE(4714), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 24, + ACTIONS(3268), 24, + anon_sym_DOT, 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, @@ -486569,7 +483483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 32, + ACTIONS(3272), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486602,26 +483516,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2497] = 8, - ACTIONS(5582), 1, + [2783] = 9, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(5651), 1, - anon_sym_COLON, - STATE(4624), 1, + STATE(4600), 1, sym_type_constraints, - STATE(4759), 1, - sym_class_body, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 24, + ACTIONS(4251), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486641,7 +483556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 32, + ACTIONS(4253), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486674,27 +483589,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2577] = 7, - STATE(5158), 1, + [2865] = 7, + STATE(5122), 1, sym_lambda_literal, - STATE(5247), 1, + STATE(5126), 1, sym_annotated_lambda, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6228), 2, + STATE(5899), 2, sym__single_annotation, sym__multi_annotation, - STATE(8351), 2, + STATE(8355), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4000), 24, + ACTIONS(3978), 24, + anon_sym_DOT, 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, @@ -486713,7 +483628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4002), 31, + ACTIONS(3980), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486745,15 +483660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2655] = 5, - ACTIONS(8148), 1, + [2943] = 5, + ACTIONS(8144), 1, anon_sym_DOT, - STATE(4567), 1, + STATE(4571), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 27, + ACTIONS(4173), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -486781,7 +483696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4166), 32, + ACTIONS(4171), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -486814,91 +483729,167 @@ static const uint16_t ts_small_parse_table[] = { 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, + [3017] = 5, + ACTIONS(8147), 1, + sym__quest, + STATE(4572), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 27, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4234), 26, + anon_sym_DOT, + 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(4236), 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_AMP, - sym__quest, - 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(4153), 32, - anon_sym_by, + [3091] = 8, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8150), 1, + anon_sym_COLON, + STATE(4789), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4216), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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, - [2803] = 5, - ACTIONS(8153), 1, - sym__quest, - STATE(4569), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(4218), 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, + [3171] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5660), 1, + anon_sym_COLON, + STATE(4665), 1, + sym_type_constraints, + STATE(4798), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 26, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -486918,12 +483909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4224), 33, + ACTIONS(3296), 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, @@ -486952,27 +483942,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2877] = 9, - ACTIONS(5582), 1, + [3251] = 8, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4607), 1, + ACTIONS(8152), 1, + anon_sym_COLON, + STATE(4681), 1, sym_type_constraints, - STATE(4800), 1, - sym__block, - STATE(4824), 1, - sym_function_body, + STATE(4732), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 23, + ACTIONS(4241), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486992,7 +483981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 32, + ACTIONS(4243), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487025,27 +484014,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2959] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [3331] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4618), 1, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8154), 1, + anon_sym_COLON, + STATE(4635), 1, sym_type_constraints, - STATE(4699), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4732), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, + ACTIONS(4241), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -487065,7 +484053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 32, + ACTIONS(4243), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487098,27 +484086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3041] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [3411] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4582), 1, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8156), 1, + anon_sym_COLON, + STATE(4637), 1, sym_type_constraints, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4317), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -487138,7 +484125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 32, + ACTIONS(4319), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487171,90 +484158,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3123] = 4, - ACTIONS(8156), 1, - anon_sym_AMP, + [3491] = 5, + ACTIONS(8158), 1, + anon_sym_DOT, + STATE(4579), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 27, - anon_sym_as, + ACTIONS(4141), 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(4139), 32, anon_sym_by, - anon_sym_LT, - anon_sym_GT, anon_sym_where, - anon_sym_DOT, + 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_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(4239), 33, - sym_safe_nav, + [3565] = 5, + ACTIONS(8160), 1, + anon_sym_DOT, + STATE(4571), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 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_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, - [3195] = 5, - ACTIONS(8158), 1, - sym__quest, - STATE(4559), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(4122), 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, + [3639] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(5662), 1, + anon_sym_COLON, + STATE(4645), 1, + sym_type_constraints, + STATE(4798), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 26, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -487274,12 +484335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4206), 33, + ACTIONS(3296), 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, @@ -487308,22 +484368,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3269] = 3, + [3719] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 28, + ACTIONS(4165), 24, + anon_sym_DOT, 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, @@ -487341,12 +484405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4319), 33, + ACTIONS(4167), 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, @@ -487375,27 +484438,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3339] = 9, - ACTIONS(5582), 1, + [3796] = 7, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4619), 1, + STATE(4633), 1, sym_type_constraints, - STATE(4730), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4887), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 23, + ACTIONS(4507), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -487415,7 +484475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 32, + ACTIONS(4509), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487448,22 +484508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3421] = 3, + [3873] = 7, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4682), 1, + sym_type_constraints, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 28, + ACTIONS(4228), 24, + anon_sym_DOT, 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, @@ -487481,12 +484545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4168), 33, + ACTIONS(4230), 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, @@ -487515,23 +484578,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3491] = 4, - ACTIONS(8160), 1, - anon_sym_AMP, + [3950] = 5, + ACTIONS(8162), 1, + anon_sym_by, + STATE(4744), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 27, + ACTIONS(4462), 25, + anon_sym_DOT, 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, @@ -487549,7 +484612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 33, + ACTIONS(4464), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487583,27 +484646,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3563] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [4023] = 7, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4584), 1, + ACTIONS(5500), 1, + anon_sym_where, + STATE(4626), 1, sym_type_constraints, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4778), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 23, + ACTIONS(4491), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -487623,7 +484683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 32, + ACTIONS(4493), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487656,22 +484716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3645] = 5, - ACTIONS(8158), 1, - sym__quest, - STATE(4559), 1, - aux_sym_nullable_type_repeat1, + [4100] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4702), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 26, + ACTIONS(4389), 24, + anon_sym_DOT, 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, @@ -487691,12 +484753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4305), 33, + ACTIONS(4391), 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, @@ -487725,30 +484786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3719] = 7, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - STATE(4634), 1, - sym_type_constraints, - STATE(4846), 1, - sym_enum_class_body, + [4177] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 24, + ACTIONS(4403), 27, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -487762,11 +484818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 32, + ACTIONS(4405), 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, @@ -487795,24 +484852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [4246] = 5, + ACTIONS(8164), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8166), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 24, + ACTIONS(4495), 25, + anon_sym_DOT, 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, @@ -487832,11 +484886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 32, + ACTIONS(4497), 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, @@ -487865,26 +484920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [4319] = 4, + ACTIONS(4315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 24, + ACTIONS(4311), 27, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -487902,17 +484954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 32, + 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, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -487935,24 +484987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3950] = 7, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [4390] = 7, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4730), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + ACTIONS(5500), 1, + anon_sym_where, + STATE(4622), 1, + sym_type_constraints, + STATE(4845), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 24, + ACTIONS(4375), 24, + anon_sym_DOT, 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, @@ -487972,7 +485024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 32, + ACTIONS(4377), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488005,24 +485057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4027] = 7, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [4467] = 7, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4763), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4641), 1, + sym_type_constraints, + STATE(4868), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 24, + ACTIONS(4407), 24, + anon_sym_DOT, 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, @@ -488042,7 +485094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 32, + ACTIONS(4409), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488075,24 +485127,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4104] = 7, - ACTIONS(8102), 1, + [4544] = 7, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4757), 1, + STATE(4707), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 24, + ACTIONS(4397), 24, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488112,7 +485164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 32, + ACTIONS(4399), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488145,232 +485197,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4181] = 5, - ACTIONS(8162), 1, - anon_sym_by, - STATE(4787), 1, - sym_value_arguments, + [4621] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(4507), 33, - sym_safe_nav, + ACTIONS(4173), 27, + 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_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, - [4254] = 7, - ACTIONS(8102), 1, anon_sym_EQ, - ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4800), 1, - sym__block, - STATE(4871), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - 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(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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, - [4331] = 7, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(4691), 1, - sym_type_constraints, - STATE(4729), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4355), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4171), 33, anon_sym_DOT, + anon_sym_by, + anon_sym_where, + 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(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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [4408] = 7, - ACTIONS(5582), 1, + [4690] = 7, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4627), 1, + STATE(4677), 1, sym_type_constraints, - STATE(4744), 1, - sym_class_body, + STATE(4797), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4411), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488390,7 +485300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 32, + ACTIONS(4413), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488423,23 +485333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4485] = 6, - ACTIONS(5598), 1, + [4767] = 6, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8164), 1, + ACTIONS(8168), 1, anon_sym_COLON, - STATE(4774), 1, + STATE(4806), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 25, + ACTIONS(4421), 25, + anon_sym_DOT, 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, @@ -488459,7 +485369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 32, + ACTIONS(4423), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488492,30 +485402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4560] = 7, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - STATE(4629), 1, - sym_type_constraints, - STATE(4740), 1, - sym_enum_class_body, + [4842] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 24, + ACTIONS(4468), 27, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -488529,11 +485434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 32, + ACTIONS(4470), 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, @@ -488562,25 +485468,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4637] = 3, + [4911] = 7, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + STATE(4635), 1, + sym_type_constraints, + STATE(4732), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4451), 27, + ACTIONS(4241), 24, + anon_sym_DOT, 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, @@ -488594,12 +485505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4453), 33, + ACTIONS(4243), 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, @@ -488628,26 +485538,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4706] = 3, + [4988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 28, - anon_sym_COLON, + ACTIONS(4472), 27, + anon_sym_DOT, 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_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -488661,15 +485570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4181), 32, - sym__automatic_semicolon, + ACTIONS(4474), 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, @@ -488694,23 +485604,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4775] = 6, - ACTIONS(5598), 1, + [5057] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8166), 1, - anon_sym_COLON, - STATE(4749), 1, - sym_class_body, + 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(4307), 33, + anon_sym_DOT, + 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, + [5126] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4805), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 25, + ACTIONS(4385), 24, + anon_sym_DOT, 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, @@ -488730,7 +485707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 32, + ACTIONS(4387), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488763,17 +485740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4850] = 3, + [5203] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 27, + ACTIONS(4393), 27, + anon_sym_DOT, 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, @@ -488795,7 +485772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 33, + ACTIONS(4395), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488829,24 +485806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4919] = 7, - ACTIONS(5578), 1, + [5272] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - STATE(4679), 1, - sym_type_constraints, - STATE(4825), 1, - sym_enum_class_body, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 24, + ACTIONS(4251), 24, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488866,7 +485843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 32, + ACTIONS(4253), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488899,96 +485876,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4996] = 3, + [5349] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4345), 27, - anon_sym_as, + ACTIONS(4249), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + 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(4247), 33, anon_sym_DOT, + anon_sym_by, + anon_sym_where, + 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_catch, - anon_sym_finally, - 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(4347), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + [5418] = 6, + ACTIONS(5496), 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, - [5065] = 7, - ACTIONS(8168), 1, - anon_sym_catch, ACTIONS(8170), 1, - anon_sym_finally, - STATE(5208), 1, - sym_finally_block, + anon_sym_COLON, + STATE(4832), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4628), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4094), 24, + ACTIONS(4433), 25, + anon_sym_DOT, 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, @@ -489003,16 +485978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4096), 31, - sym__automatic_semicolon, + ACTIONS(4435), 32, 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -489035,24 +486011,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5142] = 7, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, + [5493] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4682), 1, - sym_type_constraints, - STATE(4809), 1, - sym_class_body, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4303), 24, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489072,7 +486048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 32, + ACTIONS(4305), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489105,24 +486081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [5570] = 5, + ACTIONS(8172), 1, + anon_sym_DOT, + STATE(4534), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4139), 25, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489142,11 +486115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 32, + ACTIONS(4141), 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, @@ -489175,24 +486149,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5296] = 7, - ACTIONS(5582), 1, + [5643] = 7, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4676), 1, + STATE(4681), 1, sym_type_constraints, - STATE(4891), 1, - sym_class_body, + STATE(4732), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4241), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489212,7 +486186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 32, + ACTIONS(4243), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489245,23 +486219,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5373] = 4, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [5720] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4210), 27, + ACTIONS(4194), 24, + anon_sym_DOT, 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, @@ -489279,17 +486256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4212), 32, + ACTIONS(4196), 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, @@ -489312,156 +486289,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5444] = 3, + [5797] = 7, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + STATE(4694), 1, + sym_type_constraints, + STATE(4730), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 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(4313), 33, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4379), 24, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, - [5513] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4319), 27, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4381), 32, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - 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(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, + [5874] = 7, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, + ACTIONS(5500), 1, anon_sym_where, - STATE(4658), 1, + STATE(4637), 1, sym_type_constraints, - STATE(4784), 1, - sym_enum_class_body, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 24, + ACTIONS(4317), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489481,7 +486396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 32, + ACTIONS(4319), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489514,24 +486429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5659] = 7, - ACTIONS(8102), 1, + [5951] = 7, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4699), 1, + STATE(4814), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4129), 24, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489551,7 +486466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 32, + ACTIONS(4131), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489584,91 +486499,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5736] = 3, + [6028] = 7, + ACTIONS(8175), 1, + anon_sym_catch, + ACTIONS(8177), 1, + anon_sym_finally, + STATE(5199), 1, + sym_finally_block, 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), 33, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + STATE(4639), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4106), 24, 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, 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, @@ -489682,18 +486537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 33, + ACTIONS(4108), 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, @@ -489716,11 +486569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5874] = 3, + [6105] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 27, + ACTIONS(4265), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -489748,12 +486601,12 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4335), 33, + ACTIONS(4263), 33, + anon_sym_DOT, anon_sym_by, anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -489782,24 +486635,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [5943] = 7, - ACTIONS(8102), 1, + [6174] = 7, + ACTIONS(8110), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4800), 1, - sym__block, - STATE(4886), 1, + STATE(4847), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 24, + ACTIONS(4255), 24, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489819,7 +486672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 32, + ACTIONS(4257), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489852,25 +486705,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6020] = 3, + [6251] = 7, + ACTIONS(8110), 1, + anon_sym_EQ, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 28, - anon_sym_COLON, + ACTIONS(4178), 24, + anon_sym_DOT, 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, @@ -489885,15 +486742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4009), 32, - sym__automatic_semicolon, + ACTIONS(4180), 32, 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_DASH_GT, sym_label, @@ -489918,21 +486775,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6089] = 5, - ACTIONS(8172), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8174), 1, - anon_sym_L, + [6328] = 7, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4660), 1, + sym_type_constraints, + STATE(4845), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4455), 25, + ACTIONS(4375), 24, + anon_sym_DOT, 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, @@ -489952,12 +486812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4457), 33, + ACTIONS(4377), 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, @@ -489986,24 +486845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6162] = 7, - ACTIONS(8102), 1, - anon_sym_EQ, - ACTIONS(8104), 1, + [6405] = 7, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4800), 1, - sym__block, - STATE(4881), 1, - sym_function_body, + ACTIONS(5500), 1, + anon_sym_where, + STATE(4690), 1, + sym_type_constraints, + STATE(4797), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 24, + ACTIONS(4411), 24, + anon_sym_DOT, 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, @@ -490023,7 +486882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 32, + ACTIONS(4413), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490056,29 +486915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [6482] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 24, + ACTIONS(4190), 28, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -490093,15 +486948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 32, + ACTIONS(4192), 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, @@ -490126,15 +486981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6316] = 5, - ACTIONS(8176), 1, - anon_sym_DOT, - STATE(4546), 1, - aux_sym_user_type_repeat1, + [6551] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4193), 25, + ACTIONS(4030), 28, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -490143,9 +486996,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490160,16 +487014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4195), 33, + ACTIONS(4035), 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, @@ -490194,24 +487047,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6389] = 7, - ACTIONS(5582), 1, + [6620] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4689), 1, + ACTIONS(8179), 1, + anon_sym_COLON, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4842), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5056), 1, sym_type_constraints, - STATE(4740), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 24, + ACTIONS(4153), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -490231,17 +487089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 32, + ACTIONS(4155), 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -490264,24 +487119,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6466] = 7, - ACTIONS(8102), 1, + [6702] = 5, + ACTIONS(8183), 1, + sym__quest, + STATE(4650), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4269), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(8104), 1, anon_sym_LBRACE, - STATE(4800), 1, - sym__block, - STATE(4838), 1, - sym_function_body, + 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(4267), 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, + [6774] = 5, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4874), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 24, + ACTIONS(4529), 25, + anon_sym_DOT, 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, @@ -490301,7 +487220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 32, + ACTIONS(4531), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490334,29 +487253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6543] = 7, - ACTIONS(8102), 1, + [6846] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8185), 1, + anon_sym_COLON, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, + STATE(4927), 1, + sym_type_constraints, + STATE(5094), 1, sym__block, + STATE(5101), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 24, + ACTIONS(4129), 22, + anon_sym_DOT, 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, @@ -490371,17 +487294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 32, + ACTIONS(4131), 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -490404,26 +487325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6620] = 5, - ACTIONS(8179), 1, - anon_sym_COMMA, - STATE(4620), 1, - aux_sym_type_constraints_repeat1, + [6928] = 5, + ACTIONS(8191), 1, + anon_sym_DOT, + STATE(4654), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4430), 25, + ACTIONS(4139), 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, @@ -490438,17 +487360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4432), 32, + ACTIONS(4141), 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, @@ -490471,85 +487392,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6692] = 5, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(4809), 1, - sym_class_body, + [7000] = 5, + ACTIONS(8160), 1, + anon_sym_DOT, + STATE(4579), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 25, - anon_sym_as, + ACTIONS(4141), 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(4139), 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(4218), 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, - [6764] = 3, + [7072] = 5, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4836), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4577), 26, - anon_sym_COLON, + ACTIONS(4653), 25, + anon_sym_DOT, 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, @@ -490569,12 +487493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4579), 33, + ACTIONS(4655), 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, @@ -490603,23 +487526,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6832] = 3, + [7144] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8194), 1, + anon_sym_COLON, + STATE(4941), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4585), 26, - anon_sym_COLON, + ACTIONS(4178), 22, + anon_sym_DOT, 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, @@ -490634,18 +487567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4587), 33, + ACTIONS(4180), 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, @@ -490668,21 +487598,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6900] = 5, - ACTIONS(5598), 1, + [7226] = 4, + ACTIONS(8196), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4224), 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(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, + [7296] = 5, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4891), 1, + STATE(4880), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 25, + ACTIONS(3276), 25, + anon_sym_DOT, 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, @@ -490702,7 +487698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 32, + ACTIONS(3280), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490735,21 +487731,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6972] = 5, - ACTIONS(5578), 1, + [7368] = 5, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4811), 1, - sym_enum_class_body, + STATE(4798), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 25, + ACTIONS(3292), 25, + anon_sym_DOT, 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, @@ -490769,7 +487765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 32, + ACTIONS(3296), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490802,21 +487798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7044] = 5, - ACTIONS(5578), 1, - anon_sym_LBRACE, - STATE(4748), 1, - sym_enum_class_body, + [7440] = 5, + ACTIONS(8198), 1, + anon_sym_COMMA, + STATE(4663), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 25, + ACTIONS(4439), 25, + anon_sym_DOT, 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, @@ -490836,14 +487832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 32, + 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, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_DASH_GT, @@ -490869,21 +487865,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7116] = 5, - ACTIONS(5598), 1, + [7512] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8200), 1, + anon_sym_COLON, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(4735), 1, - sym_class_body, + STATE(5054), 1, + sym_type_constraints, + STATE(5357), 1, + sym_function_body, + STATE(5369), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4167), 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(4165), 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, + [7594] = 5, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4795), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 25, + ACTIONS(4635), 25, + anon_sym_DOT, 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, @@ -490903,7 +487971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 32, + ACTIONS(4637), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490936,28 +488004,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7188] = 5, - ACTIONS(8182), 1, - anon_sym_catch, + [7666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4628), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4130), 25, + ACTIONS(4525), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -490971,16 +488035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4132), 31, - sym__automatic_semicolon, + ACTIONS(4527), 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, @@ -491003,21 +488069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7260] = 5, - ACTIONS(5578), 1, + [7734] = 5, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4715), 1, - sym_enum_class_body, + STATE(4797), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 25, + ACTIONS(4411), 25, + anon_sym_DOT, 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, @@ -491037,7 +488103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 32, + ACTIONS(4413), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491070,90 +488136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7332] = 10, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(8185), 1, - anon_sym_COLON, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, - anon_sym_LBRACE, - STATE(4990), 1, - sym_type_constraints, - STATE(5360), 1, - sym_function_body, - STATE(5420), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4175), 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(4173), 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, - [7414] = 3, + [7806] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 26, + ACTIONS(4515), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -491173,7 +488167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4206), 33, + ACTIONS(4517), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491207,18 +488201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7482] = 3, + [7874] = 5, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 26, - anon_sym_COLON, + ACTIONS(4379), 25, + anon_sym_DOT, 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, @@ -491238,12 +488235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 33, + ACTIONS(4381), 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, @@ -491272,88 +488268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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(4195), 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(4193), 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, - [7622] = 5, - ACTIONS(5578), 1, - anon_sym_LBRACE, - STATE(4784), 1, - sym_enum_class_body, + [7946] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 25, + ACTIONS(4643), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -491373,11 +488299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 32, + ACTIONS(4645), 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, @@ -491406,25 +488333,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7694] = 4, - STATE(4648), 1, - aux_sym__delegation_specifiers_repeat1, + [8014] = 5, + ACTIONS(8206), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 25, + STATE(4639), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4146), 25, + anon_sym_DOT, 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, @@ -491438,18 +488368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 33, + ACTIONS(4148), 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, @@ -491472,19 +488400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7764] = 4, - ACTIONS(8191), 1, - anon_sym_L, + [8086] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 25, + ACTIONS(4519), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -491504,7 +488431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 33, + ACTIONS(4521), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491538,18 +488465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7834] = 3, + [8154] = 5, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4887), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4706), 26, + ACTIONS(4507), 25, + anon_sym_DOT, 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, @@ -491569,12 +488499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4708), 33, + ACTIONS(4509), 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, @@ -491603,18 +488532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7902] = 3, + [8226] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4696), 26, + ACTIONS(4647), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -491634,7 +488563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4698), 33, + ACTIONS(4649), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491668,18 +488597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7970] = 3, + [8294] = 5, + ACTIONS(8209), 1, + anon_sym_COMMA, + STATE(4643), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4674), 26, + ACTIONS(4665), 25, + anon_sym_DOT, 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, @@ -491699,7 +488631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4676), 33, + ACTIONS(4667), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491707,7 +488639,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, @@ -491733,25 +488664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8038] = 10, - ACTIONS(5764), 1, + [8366] = 10, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8187), 1, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(8189), 1, + ACTIONS(8204), 1, anon_sym_LBRACE, - ACTIONS(8193), 1, + ACTIONS(8212), 1, anon_sym_COLON, - STATE(4966), 1, + STATE(5070), 1, sym_type_constraints, - STATE(5406), 1, - sym_function_body, - STATE(5420), 1, + STATE(5369), 1, sym__block, + STATE(5371), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 22, + ACTIONS(4196), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -491774,7 +488705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4183), 30, + ACTIONS(4194), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -491805,27 +488736,26 @@ static const uint16_t ts_small_parse_table[] = { 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, + [8448] = 5, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4732), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4153), 26, + ACTIONS(4241), 25, + anon_sym_DOT, 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, @@ -491840,16 +488770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4155), 31, - sym__automatic_semicolon, + ACTIONS(4243), 32, 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -491872,29 +488803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [8520] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4714), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -491914,14 +488834,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4716), 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, @@ -491944,82 +488868,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8274] = 5, - ACTIONS(8202), 1, - sym__quest, - STATE(4643), 1, - aux_sym_nullable_type_repeat1, + [8588] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8214), 1, + anon_sym_COLON, + STATE(4958), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5222), 1, + sym_function_body, 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, + ACTIONS(4165), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [8346] = 5, - ACTIONS(8205), 1, - anon_sym_DOT, - STATE(4644), 1, - aux_sym_user_type_repeat1, + ACTIONS(4167), 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, + [8670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 26, + ACTIONS(4736), 26, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -492028,10 +488954,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -492046,16 +488971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4168), 31, - sym__automatic_semicolon, + ACTIONS(4738), 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, @@ -492078,82 +489005,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8418] = 5, - ACTIONS(8208), 1, - sym__quest, - STATE(4646), 1, - aux_sym_nullable_type_repeat1, + [8738] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8216), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5021), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(4204), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4194), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [8490] = 5, - ACTIONS(8210), 1, + ACTIONS(4196), 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, + [8820] = 5, + ACTIONS(8218), 1, sym__quest, - STATE(4643), 1, + STATE(4661), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4249), 25, + ACTIONS(4206), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -492179,7 +489111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4247), 32, + ACTIONS(4204), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -492212,93 +489144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [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, + [8892] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4267), 26, 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(4162), 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, - [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(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_STAR, @@ -492318,7 +489175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 32, + ACTIONS(4269), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492326,6 +489183,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, @@ -492351,29 +489209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8716] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - ACTIONS(8217), 1, - anon_sym_COLON, - STATE(4800), 1, - sym__block, - STATE(4871), 1, - sym_function_body, - STATE(5036), 1, - sym_type_constraints, + [8960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 23, + ACTIONS(4672), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492393,14 +489240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 29, + ACTIONS(4674), 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, @@ -492423,21 +489274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8798] = 5, - ACTIONS(5578), 1, - anon_sym_LBRACE, - STATE(4786), 1, - sym_enum_class_body, + [9028] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 25, + ACTIONS(4718), 26, + anon_sym_DOT, 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, @@ -492457,11 +489305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 32, + ACTIONS(4721), 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, @@ -492490,31 +489339,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [9096] = 5, + ACTIONS(8220), 1, + anon_sym_DOT, + STATE(4656), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 22, + ACTIONS(4122), 26, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -492531,11 +489374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 30, + ACTIONS(4124), 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, @@ -492562,21 +489406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8952] = 5, - ACTIONS(8225), 1, - anon_sym_COMMA, - STATE(4653), 1, - aux_sym_type_constraints_repeat1, + [9168] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 25, + ACTIONS(4694), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -492596,7 +489437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 32, + ACTIONS(4696), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492604,6 +489445,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, @@ -492629,26 +489471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9024] = 5, - ACTIONS(8225), 1, - anon_sym_COMMA, - STATE(4620), 1, - aux_sym_type_constraints_repeat1, + [9236] = 5, + ACTIONS(8223), 1, + anon_sym_DOT, + STATE(4656), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 25, + ACTIONS(4171), 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, @@ -492663,17 +489506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 32, + ACTIONS(4173), 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, @@ -492696,18 +489538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9096] = 3, + [9308] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4559), 26, - anon_sym_COLON, + ACTIONS(4748), 26, + anon_sym_DOT, 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, @@ -492727,7 +489569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4561), 33, + ACTIONS(4751), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492761,34 +489603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9164] = 10, - ACTIONS(5582), 1, + [9376] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8227), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8226), 1, anon_sym_COLON, - STATE(4711), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5037), 1, + STATE(4959), 1, sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 23, + ACTIONS(4153), 22, + anon_sym_DOT, 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, @@ -492803,13 +489644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4175), 29, + ACTIONS(4155), 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, @@ -492833,18 +489675,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9246] = 3, + [9458] = 5, + ACTIONS(8198), 1, + anon_sym_COMMA, + STATE(4631), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 26, - anon_sym_COLON, + ACTIONS(4503), 25, + anon_sym_DOT, 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, @@ -492864,7 +489709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 33, + ACTIONS(4505), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492872,7 +489717,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, @@ -492898,21 +489742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9314] = 5, - ACTIONS(5598), 1, + [9530] = 5, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4811), 1, - sym_class_body, + STATE(4874), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 25, + ACTIONS(4529), 25, + anon_sym_DOT, 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, @@ -492932,7 +489776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 32, + ACTIONS(4531), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492965,21 +489809,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9386] = 5, - ACTIONS(5578), 1, + [9602] = 5, + ACTIONS(8228), 1, + sym__quest, + STATE(4661), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - STATE(4825), 1, - sym_enum_class_body, + 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(4234), 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, + [9674] = 5, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4792), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 25, + ACTIONS(4621), 25, + anon_sym_DOT, 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, @@ -492999,7 +489910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 32, + ACTIONS(4623), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493032,21 +489943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9458] = 5, - ACTIONS(5578), 1, - anon_sym_LBRACE, - STATE(4809), 1, - sym_enum_class_body, + [9746] = 5, + ACTIONS(8231), 1, + anon_sym_COMMA, + STATE(4663), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 25, + ACTIONS(4453), 25, + anon_sym_DOT, 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, @@ -493066,14 +489977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 32, + ACTIONS(4455), 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, @@ -493099,21 +490010,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9530] = 5, - ACTIONS(5598), 1, + [9818] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4759), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8234), 1, + anon_sym_COLON, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5055), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4165), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4167), 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, + [9900] = 5, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4732), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 25, + ACTIONS(4241), 25, + anon_sym_DOT, 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, @@ -493133,7 +490116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 32, + ACTIONS(4243), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493166,25 +490149,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9602] = 10, - ACTIONS(5764), 1, + [9972] = 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_by, anon_sym_where, - ACTIONS(8187), 1, + 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, + [10042] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(8189), 1, + ACTIONS(8204), 1, anon_sym_LBRACE, - ACTIONS(8229), 1, + ACTIONS(8236), 1, anon_sym_COLON, - STATE(5015), 1, + STATE(5069), 1, sym_type_constraints, - STATE(5420), 1, + STATE(5369), 1, sym__block, - STATE(5421), 1, + STATE(5417), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4139), 22, + ACTIONS(4155), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -493207,7 +490256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4137), 30, + ACTIONS(4153), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -493238,18 +490287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [9684] = 3, + [10124] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4563), 26, + ACTIONS(4625), 26, anon_sym_COLON, + anon_sym_DOT, 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, @@ -493269,7 +490318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4565), 33, + ACTIONS(4627), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493303,15 +490352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9752] = 5, - ACTIONS(8208), 1, - sym__quest, - STATE(4646), 1, - aux_sym_nullable_type_repeat1, + [10192] = 4, + ACTIONS(8238), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 25, + ACTIONS(4224), 26, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -493321,6 +490368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -493337,7 +490385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4303), 32, + ACTIONS(4222), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -493370,18 +490418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [9824] = 3, + [10262] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 26, + ACTIONS(4657), 26, anon_sym_COLON, + anon_sym_DOT, 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, @@ -493401,7 +490449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4752), 33, + ACTIONS(4659), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493435,23 +490483,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9892] = 4, - ACTIONS(8231), 1, - anon_sym_AMP, + [10330] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, + anon_sym_COLON, + STATE(5005), 1, + sym_type_constraints, + STATE(5364), 1, + sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 26, + ACTIONS(4131), 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, - sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -493468,9 +490524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4237), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4129), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -493501,18 +490555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [9962] = 3, + [10412] = 5, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4714), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4581), 26, - anon_sym_COLON, + ACTIONS(3268), 25, + anon_sym_DOT, 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, @@ -493532,12 +490589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4583), 33, + ACTIONS(3272), 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, @@ -493566,29 +490622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10030] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, + [10484] = 5, + ACTIONS(5496), 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, + STATE(4751), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 23, + ACTIONS(4724), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -493608,14 +490656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 29, + ACTIONS(4726), 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, @@ -493638,84 +490689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10112] = 4, - ACTIONS(8235), 1, - anon_sym_AMP, + [10556] = 3, 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, - 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(4670), 26, + ACTIONS(4680), 26, + anon_sym_DOT, 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, @@ -493735,7 +490720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4672), 33, + ACTIONS(4682), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493769,84 +490754,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10250] = 4, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [10624] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8242), 1, + anon_sym_COLON, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5052), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4212), 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(4210), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(4178), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [10320] = 3, + ACTIONS(4180), 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, + [10706] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 26, + ACTIONS(4661), 26, anon_sym_COLON, + anon_sym_DOT, 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, @@ -493866,7 +490857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4748), 33, + ACTIONS(4663), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493900,21 +490891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10388] = 5, - ACTIONS(5578), 1, + [10774] = 5, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4740), 1, + STATE(4845), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 25, + ACTIONS(4375), 25, + anon_sym_DOT, 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, @@ -493934,7 +490925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 32, + ACTIONS(4377), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493967,95 +490958,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [10846] = 3, 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, + ACTIONS(4511), 26, + anon_sym_DOT, + 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_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, - [10542] = 3, + ACTIONS(4513), 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, + [10914] = 5, + ACTIONS(8244), 1, + anon_sym_LT, + STATE(4716), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 26, + ACTIONS(4159), 26, + anon_sym_DOT, 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, @@ -494070,18 +491058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4765), 33, + ACTIONS(4161), 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, @@ -494104,18 +491090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10610] = 3, + [10986] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, ACTIONS(4728), 26, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -494169,21 +491155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10678] = 5, - ACTIONS(5598), 1, + [11054] = 5, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4729), 1, - sym_class_body, + STATE(4797), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 25, + ACTIONS(4411), 25, + anon_sym_DOT, 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, @@ -494203,7 +491189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4357), 32, + ACTIONS(4413), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494236,21 +491222,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10750] = 5, - ACTIONS(5598), 1, + [11126] = 5, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(4748), 1, - sym_class_body, + STATE(4868), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 25, + ACTIONS(4407), 25, + anon_sym_DOT, 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, @@ -494270,7 +491256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 32, + ACTIONS(4409), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494303,15 +491289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10822] = 5, - ACTIONS(8239), 1, - anon_sym_DOT, - STATE(4641), 1, - aux_sym_user_type_repeat1, + [11198] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4193), 26, + ACTIONS(4676), 26, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -494320,10 +491303,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -494338,16 +491320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4195), 31, - sym__automatic_semicolon, + ACTIONS(4678), 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, @@ -494370,154 +491354,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10894] = 5, - ACTIONS(5578), 1, + [11266] = 10, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(4833), 1, - sym_enum_class_body, + ACTIONS(8246), 1, + anon_sym_COLON, + STATE(4983), 1, + sym_type_constraints, + STATE(5336), 1, + sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(4569), 32, - sym_safe_nav, + ACTIONS(4180), 22, + sym__automatic_semicolon, + sym__string_start, 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_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, - [10966] = 4, - ACTIONS(8162), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4505), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4178), 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(4507), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + [11348] = 5, + ACTIONS(5504), 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, - [11036] = 5, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(4782), 1, - sym_class_body, + STATE(4798), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 25, + ACTIONS(3292), 25, + anon_sym_DOT, 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, @@ -494537,7 +491460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4549), 32, + ACTIONS(3296), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494570,21 +491493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11108] = 5, - ACTIONS(5598), 1, + [11420] = 5, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4740), 1, + STATE(4819), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 25, + ACTIONS(4317), 25, + anon_sym_DOT, 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, @@ -494604,7 +491527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 32, + ACTIONS(4319), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494637,87 +491560,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11180] = 5, - ACTIONS(8242), 1, - anon_sym_LT, - STATE(4848), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [11492] = 4, + ACTIONS(8248), 1, anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4710), 26, + ACTIONS(4762), 26, anon_sym_AT, + anon_sym_DOT, 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, @@ -494737,7 +491593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4712), 32, + ACTIONS(4764), 32, sym_safe_nav, anon_sym_LBRACK, anon_sym_RBRACK, @@ -494770,18 +491626,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11322] = 3, + [11562] = 5, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4678), 26, + ACTIONS(4228), 25, + anon_sym_DOT, 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, @@ -494801,12 +491660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4681), 33, + ACTIONS(4230), 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, @@ -494835,29 +491693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11390] = 10, - ACTIONS(5776), 1, + [11634] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8221), 1, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8246), 1, + ACTIONS(8250), 1, anon_sym_COLON, - STATE(4933), 1, + STATE(4918), 1, sym_type_constraints, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5220), 1, + STATE(5112), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4194), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -494876,7 +491734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 30, + ACTIONS(4196), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -494907,33 +491765,26 @@ static const uint16_t ts_small_parse_table[] = { 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, + [11716] = 5, + ACTIONS(5496), 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, + STATE(4845), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 22, + ACTIONS(4375), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -494948,15 +491799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4175), 30, - sym__automatic_semicolon, + ACTIONS(4377), 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, @@ -494979,18 +491832,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11554] = 3, + [11788] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8252), 1, + anon_sym_COLON, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5047), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4543), 26, - anon_sym_COLON, + ACTIONS(4129), 23, + anon_sym_DOT, 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, @@ -495010,18 +491874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4545), 33, + ACTIONS(4131), 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, @@ -495044,21 +491904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11622] = 5, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(4715), 1, - sym_class_body, + [11870] = 4, + ACTIONS(8254), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 25, + ACTIONS(4581), 25, + anon_sym_DOT, 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, @@ -495078,11 +491936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 32, + ACTIONS(4583), 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, @@ -495111,21 +491970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11694] = 5, - ACTIONS(5598), 1, - anon_sym_LBRACE, - STATE(4773), 1, - sym_class_body, + [11940] = 4, + STATE(4643), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4555), 25, + ACTIONS(4690), 25, + anon_sym_DOT, 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, @@ -495145,11 +492002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4557), 32, + ACTIONS(4692), 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, @@ -495178,21 +492036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11766] = 5, - ACTIONS(5598), 1, + [12010] = 5, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4744), 1, + STATE(4778), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 25, + ACTIONS(4491), 25, + anon_sym_DOT, 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, @@ -495212,7 +492070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 32, + ACTIONS(4493), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495245,18 +492103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11838] = 3, + [12082] = 4, + ACTIONS(8162), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4571), 26, + ACTIONS(4462), 25, + anon_sym_DOT, 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, @@ -495276,7 +492135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4573), 33, + ACTIONS(4464), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495310,18 +492169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11906] = 3, + [12152] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 26, + ACTIONS(4577), 26, anon_sym_COLON, + anon_sym_DOT, 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, @@ -495341,7 +492200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4553), 33, + ACTIONS(4579), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495375,21 +492234,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11974] = 5, - ACTIONS(5578), 1, + [12220] = 5, + ACTIONS(8183), 1, + sym__quest, + STATE(4650), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4325), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - STATE(4846), 1, - sym_enum_class_body, + 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(4323), 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, + [12292] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 25, + ACTIONS(1802), 25, + anon_sym_DOT, 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, @@ -495409,11 +492331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 32, + 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, @@ -495442,105 +492365,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [12359] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4665), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [12128] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(4667), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, + 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, + [12426] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(4786), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -495555,15 +492459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 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, @@ -495586,29 +492493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12210] = 10, - ACTIONS(5776), 1, + [12493] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8254), 1, + ACTIONS(8256), 1, anon_sym_COLON, - STATE(4956), 1, + STATE(5059), 1, sym_type_constraints, - STATE(5091), 1, - sym__block, - STATE(5178), 1, - sym_function_body, + STATE(5159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 22, + ACTIONS(4241), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -495627,7 +492531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 30, + ACTIONS(4243), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -495658,17 +492562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12292] = 3, + [12570] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 25, + ACTIONS(4397), 25, + anon_sym_DOT, 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, @@ -495688,7 +492592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4920), 33, + ACTIONS(4399), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495722,22 +492626,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12359] = 3, + [12637] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5886), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_type_constraints, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 25, + ACTIONS(3292), 23, + anon_sym_DOT, 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, @@ -495752,18 +492664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 33, + ACTIONS(3296), 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, @@ -495786,17 +492695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12426] = 3, + [12714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5135), 25, + ACTIONS(4910), 25, + anon_sym_DOT, 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, @@ -495816,7 +492725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5137), 33, + ACTIONS(4912), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495850,22 +492759,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12493] = 3, + [12781] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(123), 25, + ACTIONS(3292), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + 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), 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, + [12858] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, anon_sym_where, + ACTIONS(8258), 1, + anon_sym_COLON, + STATE(5060), 1, + sym_type_constraints, + STATE(5263), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4317), 23, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, @@ -495880,18 +492866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(121), 33, + ACTIONS(4319), 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, @@ -495914,17 +492897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12560] = 3, + [12935] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4884), 25, + ACTIONS(4914), 25, + anon_sym_DOT, 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, @@ -495944,7 +492927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4886), 33, + ACTIONS(4916), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495978,17 +492961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12627] = 3, + [13002] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 25, + ACTIONS(4918), 25, + anon_sym_DOT, 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, @@ -496008,7 +492991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 33, + ACTIONS(4920), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496042,27 +493025,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12694] = 9, - ACTIONS(5776), 1, + [13069] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4956), 1, - sym_type_constraints, - STATE(5091), 1, + ACTIONS(8260), 1, + anon_sym_COLON, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, sym__block, - STATE(5178), 1, + STATE(5112), 1, sym_function_body, + STATE(5114), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 22, + ACTIONS(4194), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -496081,14 +493066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 30, + ACTIONS(4196), 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, @@ -496112,24 +493096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12773] = 3, + [13150] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5052), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 27, + ACTIONS(4178), 23, + anon_sym_DOT, 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, @@ -496144,15 +493136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4315), 31, - sym__automatic_semicolon, + ACTIONS(4180), 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, @@ -496176,17 +493166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12840] = 3, + [13229] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 25, + ACTIONS(4790), 25, + anon_sym_DOT, 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, @@ -496206,7 +493196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5185), 33, + ACTIONS(4792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496240,31 +493230,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12907] = 9, - ACTIONS(5776), 1, + [13296] = 9, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(4947), 1, - sym_type_constraints, - STATE(5091), 1, - sym__block, - STATE(5240), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4814), 1, sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5047), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(4129), 23, + anon_sym_DOT, 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, @@ -496279,14 +493270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 30, - sym__automatic_semicolon, + ACTIONS(4131), 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, @@ -496310,22 +493300,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12986] = 5, - ACTIONS(8256), 1, - sym__quest, - STATE(4708), 1, - aux_sym_nullable_type_repeat1, + [13375] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8264), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, + STATE(5139), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4222), 25, + ACTIONS(4178), 22, + anon_sym_DOT, 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, @@ -496344,15 +493341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4224), 31, + ACTIONS(4180), 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, @@ -496376,17 +493371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13057] = 3, + [13456] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 25, + ACTIONS(4228), 25, + anon_sym_DOT, 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, @@ -496406,7 +493401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5133), 33, + ACTIONS(4230), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496440,22 +493435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13124] = 3, + [13523] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5894), 1, + anon_sym_COLON, + STATE(5011), 1, + sym_type_constraints, + STATE(5184), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 25, + ACTIONS(3276), 23, + anon_sym_DOT, 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, @@ -496470,18 +493473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 33, + ACTIONS(3280), 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, @@ -496504,22 +493504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13191] = 3, + [13600] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 25, + ACTIONS(4307), 27, + anon_sym_DOT, 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, @@ -496534,18 +493536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 33, + ACTIONS(4309), 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, @@ -496568,31 +493568,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [13667] = 4, + ACTIONS(8266), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 22, + ACTIONS(4222), 26, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -496609,13 +493601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4175), 29, + ACTIONS(4224), 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, @@ -496639,22 +493633,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13339] = 3, + [13736] = 5, + ACTIONS(8268), 1, + sym__quest, + STATE(4877), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4962), 25, + ACTIONS(4323), 25, + anon_sym_DOT, 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, @@ -496669,18 +493667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4964), 33, + ACTIONS(4325), 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, @@ -496703,17 +493699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13406] = 3, + [13807] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4774), 25, + ACTIONS(4898), 25, + anon_sym_DOT, 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, @@ -496733,7 +493729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4776), 33, + ACTIONS(4900), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496767,17 +493763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13473] = 3, + [13874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 25, + ACTIONS(5101), 25, + anon_sym_DOT, 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, @@ -496797,7 +493793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 33, + ACTIONS(5103), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496831,17 +493827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13540] = 3, + [13941] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 25, + ACTIONS(4798), 25, + anon_sym_DOT, 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, @@ -496861,7 +493857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 33, + ACTIONS(4800), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496895,24 +493891,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13607] = 4, - ACTIONS(8263), 1, - anon_sym_LPAREN, + [14008] = 5, + ACTIONS(8270), 1, + sym__quest, + STATE(4722), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 25, + ACTIONS(4234), 25, + anon_sym_DOT, 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, @@ -496927,17 +493925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 32, + ACTIONS(4236), 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, @@ -496960,19 +493957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13676] = 4, - ACTIONS(8265), 1, - anon_sym_LPAREN, + [14079] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 25, + ACTIONS(4902), 25, + anon_sym_DOT, 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, @@ -496992,13 +493987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4894), 32, + ACTIONS(4904), 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, @@ -497025,17 +494021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13745] = 3, + [14146] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4950), 25, + ACTIONS(4858), 25, + anon_sym_DOT, 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, @@ -497055,7 +494051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4952), 33, + ACTIONS(4860), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497089,89 +494085,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [14213] = 4, + ACTIONS(8273), 1, + anon_sym_AMP, 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, + ACTIONS(4222), 26, + anon_sym_DOT, + 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_this, - anon_sym_super, - sym_label, + sym__quest, + 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, - [13891] = 4, - ACTIONS(8267), 1, + ACTIONS(4224), 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, + [14282] = 4, + ACTIONS(8275), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 25, + ACTIONS(4283), 25, + anon_sym_DOT, 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, @@ -497191,7 +494182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 32, + ACTIONS(4281), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497224,25 +494215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13960] = 4, - ACTIONS(8269), 1, - anon_sym_AMP, + [14351] = 4, + ACTIONS(8277), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 26, + ACTIONS(4297), 25, + anon_sym_DOT, 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, @@ -497257,16 +494247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 31, - sym__automatic_semicolon, + ACTIONS(4295), 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, @@ -497289,22 +494280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14029] = 5, - ACTIONS(8271), 1, + [14420] = 5, + ACTIONS(8268), 1, sym__quest, - STATE(4806), 1, + STATE(4877), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 25, + ACTIONS(4267), 25, + anon_sym_DOT, 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, @@ -497323,7 +494314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4206), 31, + ACTIONS(4269), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -497355,17 +494346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14100] = 3, + [14491] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4954), 25, + ACTIONS(4802), 25, + anon_sym_DOT, 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, @@ -497385,7 +494376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4956), 33, + ACTIONS(4804), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497419,33 +494410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [14558] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(4491), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -497460,14 +494440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 29, - sym__automatic_semicolon, + ACTIONS(4493), 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, @@ -497490,17 +494474,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14248] = 3, + [14625] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5032), 1, + sym_type_constraints, + STATE(5369), 1, + sym__block, + STATE(5412), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4253), 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(4251), 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, + [14704] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5175), 25, + ACTIONS(4411), 25, + anon_sym_DOT, 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, @@ -497520,7 +494574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5177), 33, + ACTIONS(4413), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497554,17 +494608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14315] = 3, + [14771] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 25, + ACTIONS(4906), 25, + anon_sym_DOT, 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, @@ -497584,7 +494638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 33, + ACTIONS(4908), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497618,17 +494672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14382] = 3, + [14838] = 4, + ACTIONS(8279), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1796), 25, + ACTIONS(5071), 25, + anon_sym_DOT, 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, @@ -497648,14 +494704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1798), 33, + ACTIONS(5073), 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, @@ -497682,17 +494737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14449] = 3, + [14907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 25, + ACTIONS(5171), 25, + anon_sym_DOT, 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, @@ -497712,7 +494767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 33, + ACTIONS(5173), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497746,17 +494801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14516] = 3, + [14974] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 25, + ACTIONS(4922), 25, + anon_sym_DOT, 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, @@ -497776,7 +494831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 33, + ACTIONS(4924), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497810,17 +494865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14583] = 3, + [15041] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 25, + ACTIONS(5185), 25, + anon_sym_DOT, 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, @@ -497840,7 +494895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5197), 33, + ACTIONS(5187), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497874,17 +494929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14650] = 3, + [15108] = 4, + ACTIONS(8281), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4914), 25, + ACTIONS(5047), 25, + anon_sym_DOT, 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, @@ -497904,14 +494961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4916), 33, + ACTIONS(5049), 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, @@ -497938,24 +494994,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14717] = 4, - ACTIONS(8275), 1, - anon_sym_else, + [15177] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 24, + ACTIONS(3268), 25, + anon_sym_DOT, 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, @@ -497969,7 +495024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 33, + ACTIONS(3272), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498003,17 +495058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14786] = 3, + [15244] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5021), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1732), 25, + ACTIONS(4194), 23, + anon_sym_DOT, 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, @@ -498033,18 +495098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1734), 33, + ACTIONS(4196), 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, @@ -498067,22 +495128,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14853] = 3, + [15323] = 8, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8283), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 25, + ACTIONS(4255), 23, + anon_sym_DOT, 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, @@ -498097,18 +495166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4908), 33, + ACTIONS(4257), 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, @@ -498131,17 +495197,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14920] = 3, + [15400] = 8, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8285), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5198), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 25, + ACTIONS(4216), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, 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, + 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, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [15477] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(4967), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4303), 23, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -498161,18 +495306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4904), 33, + ACTIONS(4305), 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, @@ -498195,17 +495336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14987] = 3, + [15556] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4633), 25, + ACTIONS(4894), 25, + anon_sym_DOT, 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, @@ -498225,7 +495366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 33, + ACTIONS(4896), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498259,26 +495400,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15054] = 5, - ACTIONS(8275), 1, - anon_sym_else, - ACTIONS(8277), 1, - anon_sym_SEMI, + [15623] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 24, + ACTIONS(4806), 25, + anon_sym_DOT, 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, @@ -498292,7 +495430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 32, + ACTIONS(4808), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498302,6 +495440,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, @@ -498325,17 +495464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15125] = 3, + [15690] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5077), 25, + ACTIONS(4926), 25, + anon_sym_DOT, 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, @@ -498355,7 +495494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5079), 33, + ACTIONS(4928), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498389,17 +495528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15192] = 3, + [15757] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 25, + ACTIONS(5199), 25, + anon_sym_DOT, 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, @@ -498419,7 +495558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 33, + ACTIONS(5201), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498453,30 +495592,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [15824] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4774), 25, + anon_sym_DOT, 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, @@ -498491,15 +495622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 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, @@ -498522,17 +495656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15336] = 3, + [15891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 25, + ACTIONS(5055), 25, + anon_sym_DOT, 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, @@ -498552,7 +495686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5161), 33, + ACTIONS(5057), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498586,27 +495720,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15403] = 9, - ACTIONS(5776), 1, + [15958] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4933), 1, - sym_type_constraints, - STATE(5091), 1, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8287), 1, + anon_sym_COLON, + STATE(5094), 1, sym__block, - STATE(5220), 1, + STATE(5222), 1, sym_function_body, + STATE(5223), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4165), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -498625,14 +495761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 30, + ACTIONS(4167), 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, @@ -498656,17 +495791,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15482] = 3, + [16039] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 25, + ACTIONS(5167), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, 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(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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [16106] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 25, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -498686,7 +495885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 33, + ACTIONS(4131), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498720,17 +495919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15549] = 3, + [16173] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 25, + ACTIONS(4930), 25, + anon_sym_DOT, 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, @@ -498750,7 +495949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 33, + ACTIONS(4932), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498784,17 +495983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15616] = 3, + [16240] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4946), 25, + ACTIONS(3978), 25, + anon_sym_DOT, 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, @@ -498814,7 +496013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4948), 33, + ACTIONS(3980), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498848,87 +496047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15683] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, - anon_sym_LBRACE, - STATE(4932), 1, - sym_type_constraints, - STATE(5091), 1, - sym__block, - STATE(5194), 1, - sym_function_body, + [16307] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5163), 25, 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, anon_sym_STAR, @@ -498948,7 +496077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 33, + ACTIONS(5165), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498982,17 +496111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15829] = 3, + [16374] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 25, + ACTIONS(4744), 25, + anon_sym_DOT, 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, @@ -499012,7 +496141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5105), 33, + ACTIONS(4746), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499046,17 +496175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15896] = 3, + [16441] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5191), 25, + ACTIONS(4940), 25, + anon_sym_DOT, 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, @@ -499076,7 +496205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5193), 33, + ACTIONS(4942), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499110,82 +496239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15963] = 4, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [16508] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4210), 26, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4944), 25, anon_sym_DOT, - anon_sym_get, - anon_sym_set, - 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(4212), 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, - [16032] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5073), 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, @@ -499205,7 +496269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5075), 33, + ACTIONS(4946), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499239,17 +496303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16099] = 3, + [16575] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, + STATE(5062), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 25, + ACTIONS(4251), 23, + anon_sym_DOT, 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, @@ -499269,18 +496343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 33, + ACTIONS(4253), 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, @@ -499303,18 +496373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16166] = 4, - ACTIONS(8281), 1, - anon_sym_LT, + [16654] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 24, + ACTIONS(4573), 25, + anon_sym_DOT, 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, @@ -499334,7 +496403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 33, + ACTIONS(4575), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499368,86 +496437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16235] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(5900), 1, - anon_sym_COLON, - STATE(4624), 1, - sym_type_constraints, - STATE(4759), 1, - sym_class_body, + [16721] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4453), 25, 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(3274), 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, - [16312] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, anon_sym_STAR, @@ -499467,7 +496467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5037), 33, + ACTIONS(4455), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499501,17 +496501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16379] = 3, + [16788] = 4, + ACTIONS(8289), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 25, + ACTIONS(4994), 25, + anon_sym_DOT, 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, @@ -499531,7 +496533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 33, + ACTIONS(4996), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499548,7 +496550,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, @@ -499565,17 +496566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16446] = 3, + [16857] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 25, + ACTIONS(4948), 25, + anon_sym_DOT, 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, @@ -499595,7 +496596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 33, + ACTIONS(4950), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499629,17 +496630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16513] = 3, + [16924] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 25, + ACTIONS(5013), 25, + anon_sym_DOT, 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, @@ -499659,7 +496660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 33, + ACTIONS(5015), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499693,17 +496694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16580] = 3, + [16991] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 25, + ACTIONS(4952), 25, + anon_sym_DOT, 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, @@ -499723,7 +496724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 33, + ACTIONS(4954), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499757,22 +496758,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16647] = 3, + [17058] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(5878), 1, + anon_sym_COLON, + STATE(5004), 1, + sym_type_constraints, + STATE(5121), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4958), 25, + ACTIONS(3268), 23, + anon_sym_DOT, 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, @@ -499787,18 +496796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4960), 33, + ACTIONS(3272), 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, @@ -499821,17 +496827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16714] = 3, + [17135] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 25, + ACTIONS(4958), 25, + anon_sym_DOT, 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, @@ -499851,7 +496857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5201), 33, + ACTIONS(4960), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499885,17 +496891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16781] = 3, + [17202] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 25, + ACTIONS(5085), 25, + anon_sym_DOT, 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, @@ -499915,7 +496921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 33, + ACTIONS(5087), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499949,17 +496955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16848] = 3, + [17269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4866), 25, + ACTIONS(4962), 25, + anon_sym_DOT, 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, @@ -499979,7 +496985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4868), 33, + ACTIONS(4964), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500013,31 +497019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [17336] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 22, + ACTIONS(4822), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -500052,15 +497049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 30, - sym__automatic_semicolon, + ACTIONS(4824), 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, @@ -500083,26 +497083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16994] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8283), 1, - anon_sym_COLON, - STATE(4676), 1, - sym_type_constraints, - STATE(4891), 1, - sym_class_body, + [17403] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4810), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -500122,14 +497113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(4812), 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, @@ -500152,17 +497147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17071] = 3, + [17470] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5167), 25, + ACTIONS(4966), 25, + anon_sym_DOT, 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, @@ -500182,7 +497177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5169), 33, + ACTIONS(4968), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500216,24 +497211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17138] = 5, - ACTIONS(5020), 1, - anon_sym_EQ, + [17537] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4768), 25, + anon_sym_DOT, 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, @@ -500253,7 +497241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4453), 28, + ACTIONS(4770), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500271,6 +497259,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, @@ -500282,22 +497275,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17209] = 3, + [17604] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 25, + ACTIONS(4171), 27, + anon_sym_DOT, 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, @@ -500312,18 +497307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 33, + ACTIONS(4173), 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, @@ -500346,17 +497339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17276] = 3, + [17671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 25, + ACTIONS(4970), 25, + anon_sym_DOT, 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, @@ -500376,7 +497369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 33, + ACTIONS(4972), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500410,17 +497403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17343] = 3, + [17738] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3160), 25, + ACTIONS(5159), 25, + anon_sym_DOT, 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, @@ -500440,7 +497433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3162), 33, + ACTIONS(5161), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500474,22 +497467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17410] = 3, + [17805] = 4, + ACTIONS(4315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4028), 25, + ACTIONS(4311), 26, + anon_sym_DOT, 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, @@ -500504,18 +497500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4030), 33, + ACTIONS(4313), 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, @@ -500538,17 +497532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17477] = 3, + [17874] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5219), 25, + ACTIONS(4653), 25, + anon_sym_DOT, 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, @@ -500568,7 +497562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5221), 33, + ACTIONS(4655), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500602,17 +497596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17544] = 3, + [17941] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4850), 25, + ACTIONS(5147), 25, + anon_sym_DOT, 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, @@ -500632,7 +497626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4852), 33, + ACTIONS(5149), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500666,17 +497660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17611] = 3, + [18008] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 25, + ACTIONS(5143), 25, + anon_sym_DOT, 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, @@ -500696,7 +497690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 33, + ACTIONS(5145), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500730,163 +497724,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17678] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + [18075] = 9, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8285), 1, - anon_sym_COLON, - STATE(4999), 1, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5049), 1, sym_type_constraints, - STATE(5231), 1, - sym_enum_class_body, + STATE(5369), 1, + sym__block, + STATE(5419), 1, + sym_function_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_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, + ACTIONS(4305), 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, - 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, - [17755] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4000), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4303), 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(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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [17822] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5950), 1, - anon_sym_COLON, - STATE(4981), 1, - sym_type_constraints, - STATE(5246), 1, - sym_enum_class_body, + [18154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 23, + ACTIONS(4794), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -500901,15 +497824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 30, - 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, @@ -500932,17 +497858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17899] = 3, + [18221] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4898), 25, + ACTIONS(3140), 25, + anon_sym_DOT, 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, @@ -500962,7 +497888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4900), 33, + ACTIONS(3142), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500996,17 +497922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17966] = 3, + [18288] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5117), 25, + ACTIONS(4178), 25, + anon_sym_DOT, 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, @@ -501026,7 +497952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5119), 33, + ACTIONS(4180), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501060,26 +497986,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18033] = 8, - ACTIONS(5776), 1, + [18355] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5788), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8287), 1, + ACTIONS(8292), 1, anon_sym_COLON, - STATE(4979), 1, + STATE(5027), 1, sym_type_constraints, - STATE(5106), 1, - sym_class_body, + STATE(5088), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 23, + ACTIONS(4228), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501098,7 +498024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 30, + ACTIONS(4230), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -501129,17 +498055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18110] = 3, + [18432] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5121), 25, + ACTIONS(4988), 25, + anon_sym_DOT, 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, @@ -501159,7 +498085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5123), 33, + ACTIONS(4990), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501193,30 +498119,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18177] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8289), 1, - anon_sym_COLON, - STATE(4972), 1, - sym_type_constraints, - STATE(5106), 1, - sym_enum_class_body, + [18499] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 23, + ACTIONS(4818), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -501231,15 +498149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 30, - sym__automatic_semicolon, + ACTIONS(4820), 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, @@ -501262,17 +498183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18254] = 3, + [18566] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 25, + ACTIONS(4878), 25, + anon_sym_DOT, 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, @@ -501292,7 +498213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 33, + ACTIONS(4880), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501326,17 +498247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18321] = 3, + [18633] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 25, + ACTIONS(4389), 25, + anon_sym_DOT, 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, @@ -501356,7 +498277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4780), 33, + ACTIONS(4391), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501390,17 +498311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18388] = 3, + [18700] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 25, + ACTIONS(3276), 25, + anon_sym_DOT, 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, @@ -501420,7 +498341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 33, + ACTIONS(3280), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501454,17 +498375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18455] = 3, + [18767] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 25, + ACTIONS(4936), 25, + anon_sym_DOT, 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, @@ -501484,7 +498405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5189), 33, + ACTIONS(4938), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501518,31 +498439,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18522] = 10, - ACTIONS(5776), 1, + [18834] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5137), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8223), 1, + 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(5139), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - ACTIONS(8291), 1, - anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5219), 1, - sym_type_constraints, - STATE(5220), 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, + [18901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4247), 27, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -501559,13 +498535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4249), 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, @@ -501589,17 +498567,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18603] = 3, + [18968] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5934), 1, + anon_sym_COLON, + STATE(4686), 1, + sym_type_constraints, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 25, + ACTIONS(3276), 24, + anon_sym_DOT, 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, @@ -501619,18 +498606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4784), 33, + ACTIONS(3280), 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, @@ -501653,17 +498636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18670] = 3, + [19045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4786), 25, + ACTIONS(5023), 25, + anon_sym_DOT, 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, @@ -501683,7 +498666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4788), 33, + ACTIONS(5025), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501717,30 +498700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [19112] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 23, + ACTIONS(4778), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -501755,15 +498730,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 30, - sym__automatic_semicolon, + 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, @@ -501786,17 +498764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18814] = 3, + [19179] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 25, + ACTIONS(4375), 25, + anon_sym_DOT, 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, @@ -501816,7 +498794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 33, + ACTIONS(4377), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501850,17 +498828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18881] = 3, + [19246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4094), 25, + ACTIONS(4241), 25, + anon_sym_DOT, 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, @@ -501880,7 +498858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4096), 33, + ACTIONS(4243), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501914,26 +498892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18948] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5924), 1, - anon_sym_COLON, - STATE(4659), 1, - sym_type_constraints, - STATE(4748), 1, - sym_enum_class_body, + [19313] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(3338), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501953,14 +498922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 29, + ACTIONS(3340), 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, @@ -501983,17 +498956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19025] = 3, + [19380] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 25, + ACTIONS(4462), 25, + anon_sym_DOT, 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, @@ -502013,7 +498986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 33, + ACTIONS(4464), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502047,26 +499020,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19092] = 8, - ACTIONS(5582), 1, + [19447] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(6957), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4275), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5598), 1, + 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(4278), 27, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(5926), 1, - anon_sym_COLON, - STATE(4621), 1, - sym_type_constraints, - STATE(4748), 1, - sym_class_body, + 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, + [19520] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(5155), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502086,14 +499117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 29, + ACTIONS(5157), 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, @@ -502116,17 +499151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19169] = 3, + [19587] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3344), 25, + ACTIONS(5125), 25, + anon_sym_DOT, 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, @@ -502146,7 +499181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3346), 33, + ACTIONS(5127), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502180,30 +499215,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19236] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5938), 1, - anon_sym_COLON, - STATE(5049), 1, - sym_type_constraints, - STATE(5118), 1, - sym_enum_class_body, + [19654] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(6976), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 23, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4289), 24, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -502218,26 +499254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 30, - sym__automatic_semicolon, + ACTIONS(4292), 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, @@ -502249,30 +499282,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19313] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(8293), 1, - anon_sym_COLON, - STATE(5057), 1, - sym_type_constraints, - STATE(5102), 1, - sym_class_body, + [19727] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4984), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -502287,15 +499312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 30, - sym__automatic_semicolon, + ACTIONS(4986), 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, @@ -502318,17 +499346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19390] = 3, + [19794] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 25, + ACTIONS(5077), 25, + anon_sym_DOT, 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, @@ -502348,7 +499376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5097), 33, + ACTIONS(5079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502382,26 +499410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19457] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - 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, + [19861] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(5211), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502421,14 +499440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 29, + ACTIONS(5213), 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, @@ -502451,22 +499474,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19534] = 3, + [19928] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4941), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4794), 25, + ACTIONS(4178), 22, + anon_sym_DOT, 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, @@ -502481,18 +499513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4796), 33, + ACTIONS(4180), 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, @@ -502515,86 +499544,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19601] = 8, - ACTIONS(5582), 1, + [20007] = 9, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - ACTIONS(8297), 1, - anon_sym_COLON, - STATE(4682), 1, + STATE(5070), 1, sym_type_constraints, - STATE(4809), 1, - sym_class_body, + STATE(5369), 1, + sym__block, + STATE(5371), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4196), 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(4194), 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(4218), 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, - [19678] = 3, + [20086] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4846), 25, + ACTIONS(1814), 25, + anon_sym_DOT, 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, @@ -502614,7 +499644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4848), 33, + ACTIONS(1816), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502648,30 +499678,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19745] = 8, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + [20153] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8299), 1, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8294), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5163), 1, - sym_function_body, + STATE(4637), 1, + sym_type_constraints, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 23, + ACTIONS(4317), 24, + anon_sym_DOT, 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, @@ -502686,14 +499717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 30, - sym__automatic_semicolon, + ACTIONS(4319), 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, @@ -502717,24 +499747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19822] = 5, - ACTIONS(8301), 1, - sym__quest, - STATE(4708), 1, - aux_sym_nullable_type_repeat1, + [20230] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4247), 25, + ACTIONS(4263), 27, + anon_sym_DOT, 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, @@ -502751,7 +499779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4249), 31, + ACTIONS(4265), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502783,30 +499811,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19893] = 8, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + [20297] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8303), 1, + ACTIONS(5916), 1, anon_sym_COLON, - STATE(5076), 1, - sym_function_body, - STATE(5091), 1, - sym__block, + STATE(4645), 1, + sym_type_constraints, + STATE(4798), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 23, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -502821,14 +499850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 30, - sym__automatic_semicolon, + ACTIONS(3296), 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, @@ -502852,30 +499880,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19970] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(5936), 1, - anon_sym_COLON, - STATE(5030), 1, - sym_type_constraints, - STATE(5175), 1, - sym_class_body, + [20374] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 23, + ACTIONS(4194), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -502890,15 +499910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 30, - sym__automatic_semicolon, + ACTIONS(4196), 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, @@ -502921,17 +499944,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20047] = 3, + [20441] = 5, + ACTIONS(4936), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 25, + ACTIONS(4938), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4393), 24, + anon_sym_DOT, 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, @@ -502951,7 +499981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 33, + ACTIONS(4395), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502969,11 +499999,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, @@ -502985,17 +500010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20114] = 3, + [20512] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5099), 25, + ACTIONS(5001), 25, + anon_sym_DOT, 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, @@ -503015,7 +500040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5101), 33, + ACTIONS(5003), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503049,17 +500074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20181] = 3, + [20579] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4966), 25, + ACTIONS(5133), 25, + anon_sym_DOT, 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, @@ -503079,7 +500104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4968), 33, + ACTIONS(5135), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503113,17 +500138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20248] = 3, + [20646] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 25, + ACTIONS(1822), 25, + anon_sym_DOT, 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, @@ -503143,7 +500168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 33, + ACTIONS(1824), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503177,17 +500202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20315] = 3, + [20713] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 25, + ACTIONS(4379), 25, + anon_sym_DOT, 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, @@ -503207,7 +500232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 33, + ACTIONS(4381), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503241,33 +500266,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20382] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, + [20780] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - ACTIONS(8305), 1, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5946), 1, anon_sym_COLON, - STATE(5071), 1, + STATE(4665), 1, sym_type_constraints, - STATE(5091), 1, - sym__block, - STATE(5141), 1, - sym_function_body, + STATE(4798), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 22, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -503282,13 +500305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 29, - sym__automatic_semicolon, + ACTIONS(3296), 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, @@ -503312,25 +500335,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20463] = 4, - ACTIONS(8307), 1, - anon_sym_AMP, + [20857] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(8296), 1, + anon_sym_COLON, + STATE(4681), 1, + sym_type_constraints, + STATE(4732), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 26, + ACTIONS(4241), 24, + anon_sym_DOT, 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, @@ -503345,15 +500374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4239), 31, - sym__automatic_semicolon, + ACTIONS(4243), 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, @@ -503377,26 +500404,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20532] = 5, - ACTIONS(8271), 1, - sym__quest, - STATE(4806), 1, - aux_sym_nullable_type_repeat1, + [20934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4303), 25, + ACTIONS(5121), 25, + anon_sym_DOT, 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, @@ -503411,16 +500434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4305), 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, @@ -503443,17 +500468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20603] = 3, + [21001] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3113), 25, + ACTIONS(123), 25, + anon_sym_DOT, 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, @@ -503473,7 +500498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3115), 33, + ACTIONS(121), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503507,17 +500532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20670] = 3, + [21068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4798), 25, + ACTIONS(5067), 25, + anon_sym_DOT, 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, @@ -503537,7 +500562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4800), 33, + ACTIONS(5069), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503571,17 +500596,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20737] = 3, + [21135] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8298), 1, + anon_sym_COLON, + STATE(4635), 1, + sym_type_constraints, + STATE(4732), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5205), 25, + ACTIONS(4241), 24, + anon_sym_DOT, 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, @@ -503601,18 +500635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5207), 33, + ACTIONS(4243), 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, @@ -503635,17 +500665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20804] = 3, + [21212] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4804), 25, + ACTIONS(4814), 25, + anon_sym_DOT, 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, @@ -503665,7 +500695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4806), 33, + ACTIONS(4816), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503699,87 +500729,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20871] = 9, - ACTIONS(5764), 1, + [21279] = 8, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - STATE(5012), 1, + ACTIONS(5952), 1, + anon_sym_COLON, + STATE(4688), 1, sym_type_constraints, - STATE(5370), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + STATE(4714), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3268), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + 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(3272), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, 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(4299), 30, - anon_sym_object, - anon_sym_fun, + [21356] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4927), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [20950] = 3, + ACTIONS(4131), 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, + [21435] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4812), 25, + ACTIONS(3133), 25, + anon_sym_DOT, 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, @@ -503799,7 +500898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4814), 33, + ACTIONS(3135), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503833,17 +500932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21017] = 3, + [21502] = 4, + ACTIONS(6474), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5125), 25, + ACTIONS(4275), 25, + anon_sym_DOT, 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, @@ -503863,14 +500964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5127), 33, + ACTIONS(4278), 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, @@ -503897,17 +500997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21084] = 3, + [21571] = 4, + ACTIONS(6470), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 25, + ACTIONS(4289), 25, + anon_sym_DOT, 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, @@ -503927,14 +501029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 33, + ACTIONS(4292), 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, @@ -503961,17 +501062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21151] = 3, + [21640] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4567), 25, + ACTIONS(5117), 25, + anon_sym_DOT, 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, @@ -503991,7 +501092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4569), 33, + ACTIONS(5119), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504025,26 +501126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21218] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - 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, + [21707] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 24, + ACTIONS(4407), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -504064,14 +501156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 29, + ACTIONS(4409), 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, @@ -504094,17 +501190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21295] = 3, + [21774] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3420), 25, + ACTIONS(1808), 25, + anon_sym_DOT, 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, @@ -504124,7 +501220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3422), 33, + ACTIONS(1810), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504158,26 +501254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21362] = 8, - ACTIONS(5578), 1, - anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8309), 1, - anon_sym_COLON, - STATE(4634), 1, - sym_type_constraints, - STATE(4846), 1, - sym_enum_class_body, + [21841] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 24, + ACTIONS(5129), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -504197,14 +501284,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(5131), 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, @@ -504227,17 +501318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21439] = 3, + [21908] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4834), 25, + ACTIONS(5105), 25, + anon_sym_DOT, 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, @@ -504257,7 +501348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4836), 33, + ACTIONS(5107), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504291,24 +501382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21506] = 5, - ACTIONS(4812), 1, - anon_sym_EQ, + [21975] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(5097), 25, + anon_sym_DOT, 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, @@ -504328,7 +501412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 28, + ACTIONS(5099), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504346,6 +501430,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, @@ -504357,25 +501446,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21577] = 4, - ACTIONS(8311), 1, - anon_sym_LPAREN, + [22042] = 4, + ACTIONS(8300), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 25, + ACTIONS(4974), 24, + anon_sym_DOT, 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, @@ -504389,13 +501477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4265), 32, + 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, @@ -504422,23 +501511,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21646] = 3, + [22111] = 5, + ACTIONS(8300), 1, + anon_sym_else, + ACTIONS(8302), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1584), 25, + ACTIONS(4974), 24, + anon_sym_DOT, 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, @@ -504452,7 +501544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1582), 33, + ACTIONS(4976), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504462,7 +501554,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, @@ -504486,17 +501577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21713] = 3, + [22182] = 5, + ACTIONS(4902), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5085), 25, + ACTIONS(4904), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4403), 24, + anon_sym_DOT, 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, @@ -504516,7 +501614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5087), 33, + ACTIONS(4405), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504534,11 +501632,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, @@ -504550,17 +501643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21780] = 3, + [22253] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 25, + ACTIONS(5109), 25, + anon_sym_DOT, 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, @@ -504580,7 +501673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5041), 33, + ACTIONS(5111), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504614,87 +501707,17 @@ static const uint16_t ts_small_parse_table[] = { 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(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, - [21926] = 3, + [22320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4838), 25, + ACTIONS(4165), 25, + anon_sym_DOT, 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, @@ -504714,7 +501737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4840), 33, + ACTIONS(4167), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504748,17 +501771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21993] = 3, + [22387] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 25, + ACTIONS(4403), 25, + anon_sym_DOT, 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, @@ -504778,7 +501801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4924), 33, + ACTIONS(4405), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504812,17 +501835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22060] = 3, + [22454] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 25, + ACTIONS(4020), 25, + anon_sym_DOT, 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, @@ -504842,7 +501865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4976), 33, + ACTIONS(4022), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -504876,19 +501899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22127] = 4, - ACTIONS(6494), 1, - anon_sym_LPAREN, + [22521] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 25, + ACTIONS(4529), 25, + anon_sym_DOT, 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, @@ -504908,13 +501929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4284), 32, + ACTIONS(4531), 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, @@ -504941,93 +501963,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22196] = 6, - ACTIONS(4004), 1, + [22588] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(6980), 1, - anon_sym_LPAREN, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5005), 1, + sym_type_constraints, + STATE(5364), 1, + sym_function_body, + STATE(5369), 1, + sym__block, 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), 24, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4131), 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(4129), 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(4284), 27, - 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_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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(6976), 1, - anon_sym_LPAREN, + [22667] = 3, 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(4259), 24, + ACTIONS(4216), 25, + anon_sym_DOT, 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, @@ -505047,13 +502063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 27, + 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, @@ -505064,6 +502081,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, @@ -505075,17 +502097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22342] = 3, + [22734] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1814), 25, + ACTIONS(4866), 25, + anon_sym_DOT, 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, @@ -505105,7 +502127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1816), 33, + ACTIONS(4868), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505139,17 +502161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22409] = 3, + [22801] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 25, + ACTIONS(4870), 25, + anon_sym_DOT, 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, @@ -505169,7 +502191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4724), 33, + ACTIONS(4872), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505203,17 +502225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22476] = 3, + [22868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4660), 25, + ACTIONS(4862), 25, + anon_sym_DOT, 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, @@ -505233,7 +502255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4662), 33, + ACTIONS(4864), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505267,17 +502289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22543] = 3, + [22935] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4430), 25, + ACTIONS(5151), 25, + anon_sym_DOT, 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, @@ -505297,7 +502319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4432), 33, + ACTIONS(5153), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505331,17 +502353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22610] = 3, + [23002] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 25, + ACTIONS(4886), 25, + anon_sym_DOT, 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, @@ -505361,7 +502383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 33, + ACTIONS(4888), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505395,94 +502417,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [23069] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 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(4295), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4874), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [22756] = 3, + ACTIONS(4876), 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, + [23136] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 27, + ACTIONS(1734), 25, + anon_sym_DOT, 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, @@ -505497,16 +502511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4337), 31, - sym__automatic_semicolon, + ACTIONS(1736), 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, @@ -505529,27 +502545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [23203] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, + ACTIONS(4106), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -505569,14 +502575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 29, + ACTIONS(4108), 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, @@ -505599,27 +502609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22902] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4824), 1, - sym_function_body, - STATE(5027), 1, - sym_type_constraints, + [23270] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 23, + ACTIONS(4393), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -505639,14 +502639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 29, + ACTIONS(4395), 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, @@ -505669,22 +502673,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22981] = 3, + [23337] = 8, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8304), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 25, + ACTIONS(4329), 23, + anon_sym_DOT, 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, @@ -505699,18 +502711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 33, + ACTIONS(4331), 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, @@ -505733,19 +502742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23048] = 4, - ACTIONS(6490), 1, - anon_sym_LPAREN, + [23414] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4259), 25, + ACTIONS(4303), 25, + anon_sym_DOT, 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, @@ -505765,13 +502772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 32, + ACTIONS(4305), 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, @@ -505798,26 +502806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23117] = 6, - ACTIONS(5055), 1, - anon_sym_EQ, - ACTIONS(8313), 1, - anon_sym_COLON_COLON, + [23481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(5219), 25, + anon_sym_DOT, 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, @@ -505837,7 +502836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 27, + ACTIONS(5221), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505854,6 +502853,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, @@ -505865,22 +502870,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23190] = 3, + [23548] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8306), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5159), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5145), 25, + ACTIONS(4241), 23, + anon_sym_DOT, 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, @@ -505895,18 +502908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5147), 33, + ACTIONS(4243), 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, @@ -505929,17 +502939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23257] = 3, + [23625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 25, + ACTIONS(1790), 25, + anon_sym_DOT, 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, @@ -505959,7 +502969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5181), 33, + ACTIONS(1792), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -505993,17 +503003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23324] = 3, + [23692] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 25, + ACTIONS(5043), 25, + anon_sym_DOT, 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, @@ -506023,7 +503033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5215), 33, + ACTIONS(5045), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506057,24 +503067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23391] = 3, + [23759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 27, + ACTIONS(4882), 25, + anon_sym_DOT, 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, @@ -506089,16 +503097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4168), 31, - sym__automatic_semicolon, + ACTIONS(4884), 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, @@ -506121,32 +503131,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23458] = 9, - ACTIONS(5582), 1, + [23826] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, + ACTIONS(8308), 1, + anon_sym_COLON, + STATE(5094), 1, sym__block, - STATE(5028), 1, + STATE(5101), 1, + sym_function_body, + STATE(5102), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4129), 22, + anon_sym_DOT, 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, @@ -506161,13 +503172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4131), 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, sym_label, anon_sym_DOT_DOT, @@ -506191,22 +503202,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23537] = 3, + [23907] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8310), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5226), 1, + sym_type_constraints, + STATE(5235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4477), 25, + ACTIONS(4153), 22, + anon_sym_DOT, 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, @@ -506221,18 +503243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 33, + ACTIONS(4155), 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -506255,17 +503273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23604] = 3, + [23988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4842), 25, + ACTIONS(5215), 25, + anon_sym_DOT, 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, @@ -506285,7 +503303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4844), 33, + ACTIONS(5217), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506319,17 +503337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23671] = 3, + [24055] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4451), 25, + ACTIONS(5029), 25, + anon_sym_DOT, 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, @@ -506349,7 +503367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4453), 33, + ACTIONS(5031), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506383,17 +503401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23738] = 3, + [24122] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5163), 25, + ACTIONS(4507), 25, + anon_sym_DOT, 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, @@ -506413,7 +503431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5165), 33, + ACTIONS(4509), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506447,27 +503465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23805] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4730), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5031), 1, - sym_type_constraints, + [24189] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 23, + ACTIONS(5039), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -506487,14 +503495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 29, + 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, @@ -506517,17 +503529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23884] = 3, + [24256] = 4, + ACTIONS(8312), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 25, + ACTIONS(5005), 24, + anon_sym_DOT, 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, @@ -506547,7 +503560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4856), 33, + ACTIONS(5007), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506581,19 +503594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23951] = 4, - ACTIONS(8313), 1, - anon_sym_COLON_COLON, + [24325] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5024), 25, + ACTIONS(1616), 25, + anon_sym_DOT, 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, @@ -506613,7 +503624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 32, + ACTIONS(1614), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506630,6 +503641,7 @@ 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, @@ -506646,27 +503658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24020] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5033), 1, - sym_type_constraints, + [24392] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 23, + ACTIONS(3292), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -506686,14 +503688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 29, + ACTIONS(3296), 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, @@ -506716,81 +503722,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24099] = 3, + [24459] = 9, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(4983), 1, + sym_type_constraints, + STATE(5336), 1, + sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1802), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4180), 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(4178), 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(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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [24166] = 3, + [24538] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3992), 25, + ACTIONS(5035), 25, + anon_sym_DOT, 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, @@ -506810,7 +503822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3994), 33, + ACTIONS(5037), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506844,33 +503856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24233] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - ACTIONS(8316), 1, - anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5164), 1, - sym_type_constraints, - STATE(5178), 1, - sym_function_body, + [24605] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 22, + ACTIONS(5207), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -506885,14 +503886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 29, - sym__automatic_semicolon, + ACTIONS(5209), 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, @@ -506915,17 +503920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24314] = 3, + [24672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4870), 25, + ACTIONS(4251), 25, + anon_sym_DOT, 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, @@ -506945,7 +503950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4872), 33, + ACTIONS(4253), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506979,22 +503984,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24381] = 3, + [24739] = 5, + ACTIONS(8314), 1, + sym__quest, + STATE(4722), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 25, + ACTIONS(4204), 25, + anon_sym_DOT, 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, @@ -507009,18 +504018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 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, @@ -507043,22 +504050,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24448] = 3, + [24810] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4910), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4880), 25, + ACTIONS(4251), 22, + anon_sym_DOT, 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, @@ -507073,18 +504089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4882), 33, + ACTIONS(4253), 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, @@ -507107,17 +504120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24515] = 3, + [24889] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 25, + ACTIONS(5081), 25, + anon_sym_DOT, 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, @@ -507137,7 +504150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4890), 33, + ACTIONS(5083), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507171,17 +504184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24582] = 3, + [24956] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4910), 25, + ACTIONS(4317), 25, + anon_sym_DOT, 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, @@ -507201,7 +504214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4912), 33, + ACTIONS(4319), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507235,17 +504248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24649] = 3, + [25023] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 25, + ACTIONS(5017), 25, + anon_sym_DOT, 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, @@ -507265,7 +504278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 33, + ACTIONS(5019), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507299,22 +504312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24716] = 3, + [25090] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4913), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4930), 25, + ACTIONS(4303), 22, + anon_sym_DOT, 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, @@ -507329,18 +504351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4932), 33, + ACTIONS(4305), 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, @@ -507363,17 +504382,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24783] = 3, + [25169] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(8316), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 25, + ACTIONS(4228), 24, + anon_sym_DOT, 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, @@ -507393,18 +504421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4936), 33, + ACTIONS(4230), 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, @@ -507427,17 +504451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24850] = 3, + [25246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4938), 25, + ACTIONS(3998), 25, + anon_sym_DOT, 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, @@ -507457,7 +504481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4940), 33, + ACTIONS(4000), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507491,17 +504515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24917] = 3, + [25313] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 25, + ACTIONS(4890), 25, + anon_sym_DOT, 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, @@ -507521,7 +504545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4944), 33, + ACTIONS(4892), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507555,17 +504579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24984] = 3, + [25380] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4970), 25, + ACTIONS(4782), 25, + anon_sym_DOT, 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, @@ -507585,7 +504609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4972), 33, + ACTIONS(4784), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507619,17 +504643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25051] = 3, + [25447] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 25, + ACTIONS(4635), 25, + anon_sym_DOT, 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, @@ -507649,7 +504673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 33, + ACTIONS(4637), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507683,22 +504707,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25118] = 3, + [25514] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4918), 1, + sym_type_constraints, + STATE(5094), 1, + sym__block, + STATE(5112), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 25, + ACTIONS(4194), 22, + anon_sym_DOT, 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, @@ -507713,18 +504746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 33, + ACTIONS(4196), 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, @@ -507747,17 +504777,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25185] = 3, + [25593] = 6, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(8289), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 25, + ACTIONS(5011), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4994), 24, + anon_sym_DOT, 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, @@ -507777,7 +504816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5022), 33, + ACTIONS(4996), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507794,12 +504833,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, @@ -507811,17 +504844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25252] = 3, + [25666] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 25, + ACTIONS(5005), 25, + anon_sym_DOT, 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, @@ -507841,7 +504874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5049), 33, + ACTIONS(5007), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -507875,87 +504908,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [25733] = 3, 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, + ACTIONS(3422), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [25398] = 3, + ACTIONS(3424), 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, + [25800] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 25, + ACTIONS(5089), 25, + anon_sym_DOT, 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, @@ -507975,7 +505002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5033), 33, + ACTIONS(5091), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508009,17 +505036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25465] = 3, + [25867] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5153), 25, + ACTIONS(4385), 25, + anon_sym_DOT, 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, @@ -508039,7 +505066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5155), 33, + ACTIONS(4387), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -508073,23 +505100,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25532] = 3, + [25934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5139), 25, + ACTIONS(4393), 26, + anon_sym_DOT, 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, @@ -508103,18 +505131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5141), 33, + ACTIONS(4395), 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, @@ -508137,22 +505163,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25599] = 3, + [26000] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5221), 1, + sym_type_constraints, + STATE(5228), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 25, + ACTIONS(4303), 22, + anon_sym_DOT, 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, @@ -508167,18 +505202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 33, + ACTIONS(4305), 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -508201,22 +505232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25666] = 3, + [26078] = 7, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + STATE(5060), 1, + sym_type_constraints, + STATE(5263), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5107), 25, + ACTIONS(4317), 23, + anon_sym_DOT, 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, @@ -508231,18 +505268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5109), 33, + ACTIONS(4319), 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, @@ -508265,22 +505299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25733] = 3, + [26152] = 7, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + STATE(5065), 1, + sym_type_constraints, + STATE(5138), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 25, + ACTIONS(4379), 23, + anon_sym_DOT, 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, @@ -508295,18 +505335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4357), 33, + ACTIONS(4381), 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, @@ -508329,24 +505366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25800] = 3, + [26226] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8318), 1, + anon_sym_COLON, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5197), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 27, + ACTIONS(4129), 21, + anon_sym_DOT, 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, @@ -508354,61 +505400,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(4319), 31, - sym__automatic_semicolon, + ACTIONS(4131), 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, - [25867] = 3, + [26306] = 5, + ACTIONS(8322), 1, + anon_sym_DOT, + STATE(4654), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 25, + ACTIONS(4139), 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, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -508423,18 +505469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5045), 33, + ACTIONS(4141), 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, @@ -508457,24 +505501,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25934] = 7, - ACTIONS(5776), 1, + [26376] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4403), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5788), 1, + anon_sym_get, + anon_sym_set, + 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, + 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(4405), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(4971), 1, - sym_type_constraints, - STATE(5171), 1, + 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, + [26442] = 6, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(8325), 1, + anon_sym_COLON, + STATE(5260), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 23, + ACTIONS(4433), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508493,7 +505599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4357), 30, + ACTIONS(4435), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508524,21 +505630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26008] = 8, - ACTIONS(5758), 1, + [26514] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5764), 1, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8318), 1, + ACTIONS(5992), 1, anon_sym_COLON, - STATE(5293), 1, + STATE(5301), 1, sym_type_constraints, - STATE(5415), 1, - sym_enum_class_body, + STATE(5382), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 22, + ACTIONS(3280), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -508561,7 +505667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4321), 30, + ACTIONS(3276), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -508592,24 +505698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [26084] = 7, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + [26590] = 7, + ACTIONS(5810), 1, anon_sym_where, - STATE(4972), 1, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(4969), 1, sym_type_constraints, - STATE(5106), 1, + STATE(5202), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 23, + ACTIONS(4407), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508628,7 +505734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 30, + ACTIONS(4409), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508659,21 +505765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26158] = 5, - ACTIONS(8320), 1, - anon_sym_DOT, - STATE(4641), 1, - aux_sym_user_type_repeat1, + [26664] = 7, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(4982), 1, + sym_type_constraints, + STATE(5109), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4193), 24, + ACTIONS(4411), 23, + anon_sym_DOT, 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, @@ -508692,12 +505801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4195), 31, + ACTIONS(4413), 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, @@ -508724,95 +505832,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26228] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [26738] = 6, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(6032), 1, + ACTIONS(8327), 1, anon_sym_COLON, - STATE(5029), 1, - sym_type_constraints, - STATE(5118), 1, + STATE(5140), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 23, + ACTIONS(4421), 24, + anon_sym_DOT, 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(3282), 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, - [26304] = 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(5164), 1, - sym_type_constraints, - STATE(5178), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4147), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508831,13 +505867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 29, + ACTIONS(4423), 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, @@ -508861,24 +505898,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26382] = 7, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [26810] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(4979), 1, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(6032), 1, + anon_sym_COLON, + STATE(4986), 1, sym_type_constraints, - STATE(5106), 1, + STATE(5249), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 23, + ACTIONS(3292), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508897,14 +505936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 30, + ACTIONS(3296), 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, @@ -508928,26 +505966,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26456] = 8, - ACTIONS(5776), 1, + [26886] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5788), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8329), 1, anon_sym_COLON, - STATE(4979), 1, + STATE(5059), 1, sym_type_constraints, - STATE(5106), 1, - sym_class_body, + STATE(5159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 23, + ACTIONS(4241), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508966,7 +506004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 29, + ACTIONS(4243), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508996,25 +506034,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26532] = 8, - ACTIONS(8104), 1, + [26962] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(8325), 1, + ACTIONS(8331), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(4813), 1, + STATE(4885), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 23, + ACTIONS(4329), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509034,7 +506072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 29, + ACTIONS(4331), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -509064,31 +506102,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [27038] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 23, + ACTIONS(4472), 26, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, 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, @@ -509102,13 +506133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 29, + ACTIONS(4474), 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, @@ -509132,33 +506165,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26684] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8327), 1, - anon_sym_COLON, - ACTIONS(8329), 1, + [27104] = 7, + ACTIONS(8187), 1, anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, sym__block, - STATE(5250), 1, - sym_type_constraints, + STATE(5252), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 21, + ACTIONS(4385), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -509166,66 +506194,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(4149), 29, + ACTIONS(4387), 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, - [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, + [27178] = 5, + ACTIONS(8333), 1, + anon_sym_by, + STATE(5141), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 23, + ACTIONS(4462), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -509240,13 +506265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 29, + ACTIONS(4464), 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, @@ -509270,25 +506297,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26840] = 5, - ACTIONS(8333), 1, - aux_sym_unsigned_literal_token1, + [27248] = 5, ACTIONS(8335), 1, - anon_sym_L, + anon_sym_COMMA, + STATE(4643), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4455), 24, + ACTIONS(4690), 25, + anon_sym_DOT, 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, @@ -509303,15 +506331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4457), 31, - sym__automatic_semicolon, + ACTIONS(4692), 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, @@ -509335,24 +506362,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26910] = 7, - ACTIONS(5770), 1, + [27318] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - STATE(4999), 1, - sym_type_constraints, - STATE(5231), 1, - sym_enum_class_body, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 23, + ACTIONS(4251), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509371,7 +506398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 30, + ACTIONS(4253), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509402,26 +506429,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26984] = 5, - ACTIONS(8337), 1, - anon_sym_COMMA, - STATE(4648), 1, - aux_sym__delegation_specifiers_repeat1, + [27392] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, + STATE(5102), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 25, + ACTIONS(4129), 22, + anon_sym_DOT, 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, @@ -509436,14 +506468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 30, + ACTIONS(4131), 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, sym_label, anon_sym_DOT_DOT, @@ -509467,24 +506498,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27054] = 5, + [27470] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, ACTIONS(8337), 1, - anon_sym_COMMA, - STATE(4908), 1, - aux_sym__delegation_specifiers_repeat1, + anon_sym_COLON, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5209), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4684), 25, + ACTIONS(4165), 21, + anon_sym_DOT, 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, @@ -509494,65 +506532,128 @@ 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(4686), 30, + ACTIONS(4167), 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, - [27124] = 9, - ACTIONS(5776), 1, + [27550] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(5954), 1, + anon_sym_COLON, + STATE(5268), 1, + sym_type_constraints, + STATE(5395), 1, + sym_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_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, + [27626] = 7, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5091), 1, - sym__block, - STATE(5179), 1, + ACTIONS(5810), 1, + anon_sym_where, + STATE(4979), 1, sym_type_constraints, + STATE(5111), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 22, + ACTIONS(4491), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509571,13 +506672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 29, + ACTIONS(4493), 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, @@ -509601,24 +506703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27202] = 7, - ACTIONS(5770), 1, + [27700] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - STATE(5009), 1, - sym_type_constraints, - STATE(5192), 1, - sym_enum_class_body, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 23, + ACTIONS(4303), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509637,7 +506739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 30, + ACTIONS(4305), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509668,23 +506770,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27276] = 6, - ACTIONS(5788), 1, + [27774] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8339), 1, - anon_sym_COLON, - STATE(5172), 1, - sym_class_body, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, + STATE(5244), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 24, + ACTIONS(4251), 22, + anon_sym_DOT, 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, @@ -509703,14 +506809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 30, + ACTIONS(4253), 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, @@ -509734,28 +506839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [27852] = 5, + ACTIONS(8335), 1, + anon_sym_COMMA, + STATE(4912), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 23, + ACTIONS(4684), 25, + anon_sym_DOT, 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, @@ -509770,14 +506873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 30, - 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, @@ -509801,29 +506904,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27422] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + [27922] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5091), 1, - sym__block, - STATE(5140), 1, - sym_function_body, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8339), 1, + anon_sym_COLON, + STATE(5281), 1, + sym_type_constraints, + STATE(5418), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4319), 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(4317), 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, + [27998] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 23, + ACTIONS(4468), 26, + anon_sym_DOT, 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_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -509837,11 +507003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 30, + ACTIONS(4470), 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, @@ -509868,27 +507035,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27496] = 9, - ACTIONS(5776), 1, + [28064] = 8, + ACTIONS(5762), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(5768), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5194), 1, - sym_function_body, - STATE(5196), 1, + ACTIONS(6028), 1, + anon_sym_COLON, + STATE(5276), 1, sym_type_constraints, + STATE(5395), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 22, + 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_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, + [28140] = 5, + ACTIONS(8341), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8343), 1, + anon_sym_L, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4495), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509907,13 +507136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 29, + ACTIONS(4497), 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, @@ -509937,23 +507168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27574] = 6, - ACTIONS(5788), 1, + [28210] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8341), 1, - anon_sym_COLON, - STATE(5093), 1, - sym_class_body, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 24, + ACTIONS(4255), 23, + anon_sym_DOT, 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, @@ -509972,7 +507204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 30, + ACTIONS(4257), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510003,24 +507235,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27646] = 7, - ACTIONS(8221), 1, + [28284] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, + anon_sym_LBRACE, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(5275), 1, + sym_type_constraints, + STATE(5331), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4243), 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(4241), 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, + [28360] = 7, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5167), 1, + STATE(5112), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 23, + ACTIONS(4194), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510039,7 +507339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 30, + ACTIONS(4196), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510070,11 +507370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27720] = 3, + [28434] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 25, + ACTIONS(4269), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510100,7 +507400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4204), 32, + ACTIONS(4267), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -510133,30 +507433,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27786] = 8, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, + [28500] = 7, + ACTIONS(8187), 1, anon_sym_EQ, - ACTIONS(8343), 1, - anon_sym_COLON, - STATE(4800), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, sym__block, - STATE(4802), 1, + STATE(5176), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 23, + ACTIONS(4389), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -510171,13 +507469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 29, + ACTIONS(4391), 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, @@ -510201,24 +507500,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27862] = 3, + [28574] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym__block, + STATE(5168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4451), 26, + ACTIONS(4397), 23, + anon_sym_DOT, 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_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -510232,12 +507536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4453), 31, + ACTIONS(4399), 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, @@ -510264,87 +507567,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27928] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - 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(4706), 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, - [27994] = 7, - ACTIONS(5770), 1, + [28648] = 7, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, + ACTIONS(5810), 1, anon_sym_where, - STATE(5008), 1, + STATE(5002), 1, sym_type_constraints, - STATE(5210), 1, - sym_enum_class_body, + STATE(5109), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 23, + ACTIONS(4411), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510363,7 +507603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 30, + ACTIONS(4413), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510394,28 +507634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28068] = 7, - ACTIONS(5776), 1, + [28722] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5788), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5007), 1, + ACTIONS(8320), 1, + anon_sym_EQ, + ACTIONS(8347), 1, + anon_sym_COLON, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5146), 1, sym_type_constraints, - STATE(5225), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 23, + ACTIONS(4194), 21, + anon_sym_DOT, 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, @@ -510423,49 +507668,115 @@ 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(4361), 30, - sym__automatic_semicolon, + ACTIONS(4196), 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, - [28142] = 3, + [28802] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, + anon_sym_LBRACE, + ACTIONS(8349), 1, + anon_sym_COLON, + STATE(5314), 1, + sym_type_constraints, + STATE(5386), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 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(4228), 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, + [28878] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4698), 25, + ACTIONS(4678), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510491,7 +507802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4696), 32, + ACTIONS(4676), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -510524,11 +507835,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28208] = 3, + [28944] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4676), 25, + ACTIONS(4513), 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(4511), 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, + [29010] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4682), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -510554,7 +507928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4674), 32, + ACTIONS(4680), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -510587,27 +507961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28274] = 9, - ACTIONS(5776), 1, + [29076] = 7, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5219), 1, + STATE(5027), 1, sym_type_constraints, - STATE(5220), 1, - sym_function_body, + STATE(5088), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4228), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510626,13 +507997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4230), 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, @@ -510656,33 +508028,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28352] = 10, - ACTIONS(5582), 1, + [29150] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4674), 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(4672), 32, + anon_sym_by, anon_sym_where, - ACTIONS(8104), 1, + 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, + [29216] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, - anon_sym_EQ, - ACTIONS(8345), 1, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8351), 1, anon_sym_COLON, - STATE(4711), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5080), 1, + STATE(5060), 1, sym_type_constraints, + STATE(5263), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 21, + ACTIONS(4317), 23, + anon_sym_DOT, 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, @@ -510690,60 +508122,124 @@ 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(4175), 29, + ACTIONS(4319), 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, - [28432] = 7, - ACTIONS(5770), 1, + [29292] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4751), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(5776), 1, + 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_by, anon_sym_where, - STATE(5003), 1, - sym_type_constraints, - STATE(5225), 1, - sym_enum_class_body, + 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, + [29358] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 23, + ACTIONS(4129), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510762,7 +508258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 30, + ACTIONS(4131), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510793,24 +508289,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28506] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + [29432] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(5091), 1, - sym__block, - STATE(5174), 1, - sym_function_body, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(6064), 1, + anon_sym_COLON, + STATE(5011), 1, + sym_type_constraints, + STATE(5184), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 23, + ACTIONS(3276), 23, + anon_sym_DOT, 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, @@ -510829,14 +508327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 30, + ACTIONS(3280), 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, @@ -510860,26 +508357,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28580] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + [29508] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8347), 1, - anon_sym_COLON, - STATE(4999), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, + STATE(5139), 1, sym_type_constraints, - STATE(5231), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 23, + ACTIONS(4178), 22, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510898,7 +508396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(4180), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510928,27 +508426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28656] = 8, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, - anon_sym_LBRACE, - ACTIONS(6060), 1, - anon_sym_COLON, - STATE(5270), 1, - sym_type_constraints, - STATE(5316), 1, - sym_class_body, + [29586] = 5, + ACTIONS(7091), 1, + anon_sym_by, + STATE(5075), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 22, + ACTIONS(4464), 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, @@ -510965,7 +508459,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3270), 30, + ACTIONS(4462), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -510996,160 +508491,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [28732] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, - anon_sym_LBRACE, - STATE(5073), 1, - sym_function_body, - STATE(5091), 1, - sym__block, + [29656] = 3, 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_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(4301), 30, + ACTIONS(4738), 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, - [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(4295), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4736), 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(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, - [28880] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [29722] = 7, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5992), 1, - anon_sym_COLON, - STATE(5030), 1, + ACTIONS(5810), 1, + anon_sym_where, + STATE(4987), 1, sym_type_constraints, - STATE(5175), 1, + STATE(5104), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 23, + ACTIONS(4375), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -511168,13 +508590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 29, + ACTIONS(4377), 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, @@ -511198,74 +508621,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28956] = 3, + [29796] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(6036), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(3292), 23, + anon_sym_DOT, + 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(4571), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_LT, + anon_sym_GT, 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, - [29022] = 3, + ACTIONS(3296), 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, + [29872] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4681), 25, + ACTIONS(4721), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511291,7 +508719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4678), 32, + ACTIONS(4718), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -511324,11 +508752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [29088] = 3, + [29938] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 25, + ACTIONS(4716), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511354,7 +508782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4728), 32, + ACTIONS(4714), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -511387,24 +508815,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [29154] = 3, + [30004] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5112), 1, + sym_function_body, + STATE(5114), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4485), 26, + ACTIONS(4194), 22, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + 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(4196), 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, + [30082] = 7, + ACTIONS(5810), 1, anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5031), 1, + sym_type_constraints, + STATE(5229), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4507), 23, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, 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, @@ -511418,12 +508920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4487), 31, + ACTIONS(4509), 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, @@ -511450,23 +508951,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29220] = 5, - ACTIONS(7123), 1, - anon_sym_by, - STATE(5119), 1, - sym_value_arguments, + [30156] = 8, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, + anon_sym_LBRACE, + ACTIONS(5994), 1, + anon_sym_COLON, + STATE(5299), 1, + sym_type_constraints, + STATE(5389), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(3272), 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, @@ -511483,8 +508988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4505), 31, - anon_sym_where, + ACTIONS(3268), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511515,94 +509019,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [29290] = 8, - ACTIONS(5758), 1, - anon_sym_LBRACE, - ACTIONS(5764), 1, + [30232] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(6036), 1, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + ACTIONS(8353), 1, anon_sym_COLON, - STATE(5314), 1, + STATE(4842), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5162), 1, sym_type_constraints, - STATE(5353), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 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(3286), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4153), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [29366] = 8, - ACTIONS(5770), 1, + ACTIONS(4155), 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, + [30312] = 7, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5956), 1, - anon_sym_COLON, - STATE(5049), 1, + STATE(5033), 1, sym_type_constraints, - STATE(5118), 1, - sym_enum_class_body, + STATE(5159), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 23, + ACTIONS(4241), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -511621,13 +509125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 29, + ACTIONS(4243), 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, @@ -511651,26 +509156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29442] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [30386] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8349), 1, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8355), 1, anon_sym_COLON, - STATE(5057), 1, + STATE(5033), 1, sym_type_constraints, - STATE(5102), 1, + STATE(5159), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4241), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -511689,7 +509194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(4243), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511719,21 +509224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29518] = 8, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [30462] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8351), 1, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(8357), 1, anon_sym_COLON, - STATE(5315), 1, + STATE(5289), 1, sym_type_constraints, - STATE(5358), 1, + STATE(5331), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 22, + ACTIONS(4243), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511756,7 +509261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4216), 30, + ACTIONS(4241), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511787,24 +509292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [29594] = 7, - ACTIONS(5776), 1, + [30538] = 7, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5788), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - STATE(4998), 1, + STATE(4980), 1, sym_type_constraints, - STATE(5249), 1, - sym_class_body, + STATE(5104), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 23, + ACTIONS(4375), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -511823,7 +509328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 30, + ACTIONS(4377), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511854,150 +509359,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29668] = 3, + [30612] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4765), 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(4762), 32, - anon_sym_by, + ACTIONS(4178), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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, - [29734] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4672), 25, + ACTIONS(4180), 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(4670), 32, - anon_sym_by, + [30686] = 7, + ACTIONS(8187), 1, + anon_sym_EQ, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(5094), 1, + sym__block, + STATE(5222), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4165), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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, - [29800] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + ACTIONS(4167), 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, + [30760] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, anon_sym_LBRACE, - STATE(5091), 1, - sym__block, - STATE(5220), 1, - sym_function_body, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(5027), 1, + sym_type_constraints, + STATE(5088), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4228), 23, + anon_sym_DOT, 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, @@ -512016,14 +509531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 30, + ACTIONS(4230), 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, @@ -512047,27 +509561,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29874] = 9, - ACTIONS(5776), 1, + [30836] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5240), 1, - sym_function_body, - STATE(5243), 1, + ACTIONS(6072), 1, + anon_sym_COLON, + STATE(5004), 1, sym_type_constraints, + STATE(5121), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(3268), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -512086,7 +509599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 29, + ACTIONS(3272), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512116,24 +509629,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29952] = 3, + [30912] = 8, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4345), 26, + ACTIONS(4255), 23, + anon_sym_DOT, 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, @@ -512147,15 +509667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4347), 31, - sym__automatic_semicolon, + ACTIONS(4257), 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, @@ -512179,30 +509697,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30018] = 8, - ACTIONS(5770), 1, + [30988] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8353), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8363), 1, anon_sym_COLON, - STATE(4972), 1, - sym_type_constraints, - STATE(5106), 1, - sym_enum_class_body, + STATE(4789), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, ACTIONS(4216), 23, + anon_sym_DOT, 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, @@ -512218,12 +509736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_actual, sym__alpha_identifier, ACTIONS(4218), 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, sym_label, anon_sym_DOT_DOT, @@ -512247,25 +509765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30094] = 5, - ACTIONS(8355), 1, - anon_sym_by, - STATE(5127), 1, - sym_value_arguments, + [31064] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + ACTIONS(8365), 1, + anon_sym_COLON, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5156), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 24, + ACTIONS(4178), 21, + anon_sym_DOT, 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, @@ -512273,63 +509799,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(4507), 31, - sym__automatic_semicolon, + ACTIONS(4180), 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, - [30164] = 7, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + [31144] = 7, + ACTIONS(5810), 1, anon_sym_where, - STATE(4995), 1, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5059), 1, sym_type_constraints, - STATE(5249), 1, + STATE(5159), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 23, + ACTIONS(4241), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -512348,7 +509871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 30, + ACTIONS(4243), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512379,24 +509902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [31218] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 23, + ACTIONS(4672), 25, + anon_sym_DOT, 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, @@ -512415,11 +509932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 30, + ACTIONS(4674), 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, @@ -512446,31 +509964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30312] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, + [31283] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(8357), 1, - anon_sym_COLON, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(5237), 1, - sym_type_constraints, + STATE(4893), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4251), 23, + anon_sym_DOT, 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, @@ -512480,64 +509993,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(4185), 29, + ACTIONS(4253), 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, - [30392] = 7, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [31356] = 6, + ACTIONS(5496), 1, anon_sym_LBRACE, - STATE(4993), 1, - sym_type_constraints, - STATE(5253), 1, + ACTIONS(8367), 1, + anon_sym_COLON, + STATE(4832), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 23, + ACTIONS(4433), 24, + anon_sym_DOT, 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, @@ -512552,14 +510065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 30, - sym__automatic_semicolon, + ACTIONS(4435), 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, @@ -512583,24 +510095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30466] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, + [31427] = 5, + ACTIONS(5828), 1, anon_sym_LBRACE, - STATE(5091), 1, - sym__block, - STATE(5240), 1, - sym_function_body, + STATE(5229), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 23, + ACTIONS(4507), 24, + anon_sym_DOT, 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, @@ -512619,7 +510128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 30, + ACTIONS(4509), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512650,33 +510159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30540] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, + [31496] = 5, + ACTIONS(5828), 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, + STATE(5121), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 21, + ACTIONS(3268), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -512684,60 +510185,56 @@ 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(4162), 29, + ACTIONS(3272), 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, - [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, + [31565] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4657), 25, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -512756,11 +510253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 30, + ACTIONS(4659), 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, @@ -512787,24 +510285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30694] = 7, - ACTIONS(8221), 1, - anon_sym_EQ, - ACTIONS(8223), 1, - anon_sym_LBRACE, - STATE(5091), 1, - sym__block, - STATE(5178), 1, - sym_function_body, + [31630] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 23, + ACTIONS(4694), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -512823,11 +510315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 30, + ACTIONS(4696), 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, @@ -512854,21 +510347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30768] = 8, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [31695] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8361), 1, - anon_sym_COLON, - STATE(5298), 1, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5289), 1, sym_type_constraints, - STATE(5378), 1, + STATE(5331), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 22, + ACTIONS(4243), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512891,7 +510382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4327), 30, + ACTIONS(4241), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512922,92 +510413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [30844] = 8, - ACTIONS(5758), 1, + [31768] = 7, + ACTIONS(8112), 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__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_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(8181), 1, + anon_sym_EQ, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4477), 26, + ACTIONS(4255), 23, + anon_sym_DOT, 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, @@ -513021,15 +510449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 31, - sym__automatic_semicolon, + ACTIONS(4257), 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, @@ -513053,33 +510479,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [31841] = 5, + ACTIONS(8369), 1, + anon_sym_COMMA, + STATE(5066), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 21, + ACTIONS(4503), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -513087,57 +510505,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(4139), 29, + ACTIONS(4505), 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_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, - [31066] = 8, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [31910] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5974), 1, - anon_sym_COLON, - STATE(5295), 1, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5297), 1, sym_type_constraints, - STATE(5391), 1, + STATE(5378), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 22, + ACTIONS(4377), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513160,7 +510578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3278), 30, + ACTIONS(4375), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513191,155 +510609,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [31142] = 8, - ACTIONS(5758), 1, + [31983] = 6, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(8365), 1, + ACTIONS(8371), 1, anon_sym_COLON, - STATE(5300), 1, - sym_type_constraints, - STATE(5358), 1, - sym_enum_class_body, + STATE(4806), 1, + sym_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, + ACTIONS(4421), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, - [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__string_start, + ACTIONS(4423), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, 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(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, + [32054] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5296), 1, + sym_type_constraints, + STATE(5390), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4426), 24, + ACTIONS(4409), 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, @@ -513358,7 +510709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4424), 30, + ACTIONS(4407), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513389,18 +510740,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [31360] = 3, + [32127] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5090), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4581), 25, - anon_sym_COLON, + ACTIONS(4653), 24, + anon_sym_DOT, 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, @@ -513419,12 +510773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4583), 31, + ACTIONS(4655), 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, @@ -513451,19 +510804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31425] = 4, - ACTIONS(8369), 1, - anon_sym_L, + [32196] = 5, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5214), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4740), 24, + ACTIONS(4529), 24, + anon_sym_DOT, 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, @@ -513482,12 +510837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4742), 31, + ACTIONS(4531), 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, @@ -513514,28 +510868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31492] = 8, - ACTIONS(8104), 1, + [32265] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(8371), 1, - anon_sym_COLON, - STATE(4763), 1, + STATE(4702), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 22, + ACTIONS(4389), 23, + anon_sym_DOT, 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, @@ -513545,57 +510897,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(4309), 29, + ACTIONS(4391), 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, - [31567] = 5, - ACTIONS(5788), 1, + [32338] = 5, + ACTIONS(5828), 1, anon_sym_LBRACE, - STATE(5253), 1, - sym_class_body, + STATE(5104), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4375), 24, + anon_sym_DOT, 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, @@ -513614,7 +510967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 30, + ACTIONS(4377), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513645,79 +510998,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31636] = 5, - ACTIONS(5770), 1, + [32407] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(5249), 1, - sym_enum_class_body, + STATE(5364), 1, + sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4131), 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(4129), 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(4465), 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, - [31705] = 5, + [32480] = 5, ACTIONS(8373), 1, anon_sym_COMMA, - STATE(4973), 1, + STATE(5044), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 24, + ACTIONS(4441), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513742,7 +511097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4430), 30, + ACTIONS(4439), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513773,25 +511128,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [31774] = 8, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8261), 1, + [32549] = 4, + STATE(5023), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4690), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - ACTIONS(8376), 1, - anon_sym_COLON, - STATE(5076), 1, - sym_function_body, - STATE(5091), 1, - sym__block, + 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, + ACTIONS(4692), 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, + [32616] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5159), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 22, + ACTIONS(4241), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, 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, + ACTIONS(4243), 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, + [32685] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5214), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4529), 24, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -513810,13 +511288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 29, + ACTIONS(4531), 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, @@ -513840,18 +511319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31849] = 3, + [32754] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4204), 25, + ACTIONS(4511), 25, + anon_sym_DOT, 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, @@ -513870,7 +511349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4206), 31, + ACTIONS(4513), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513902,27 +511381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31914] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, + [32819] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8320), 1, anon_sym_EQ, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, + ACTIONS(8375), 1, + anon_sym_COLON, + STATE(4879), 1, sym__block, - STATE(5237), 1, - sym_type_constraints, + STATE(4885), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4329), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -513940,7 +511418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4331), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -513970,86 +511448,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31991] = 7, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [32894] = 5, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(5298), 1, - sym_type_constraints, - STATE(5378), 1, + STATE(5184), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(3276), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [32064] = 4, - ACTIONS(8378), 1, - anon_sym_AT2, + ACTIONS(3280), 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, + [32963] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4710), 25, - anon_sym_AT, + ACTIONS(4676), 25, + anon_sym_DOT, 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, @@ -514068,9 +511542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4712), 30, + ACTIONS(4678), 31, sym__automatic_semicolon, sym_safe_nav, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -514099,21 +511574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32131] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5249), 1, - sym_class_body, + [33028] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 24, + ACTIONS(4515), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -514132,11 +511604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 30, + ACTIONS(4517), 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, @@ -514163,19 +511636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32200] = 3, + [33093] = 4, + ACTIONS(7091), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4583), 24, + ACTIONS(4464), 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, @@ -514192,8 +511667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4581), 32, - anon_sym_COLON, + ACTIONS(4462), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -514225,21 +511699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [32265] = 5, - ACTIONS(5770), 1, + [33160] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5231), 1, - sym_enum_class_body, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8377), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 24, + ACTIONS(4329), 22, + anon_sym_DOT, 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, @@ -514258,14 +511736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 30, + ACTIONS(4331), 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, @@ -514289,22 +511766,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32334] = 3, + [33235] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5156), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4577), 25, - anon_sym_COLON, + ACTIONS(4178), 21, + anon_sym_DOT, 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, @@ -514312,68 +511798,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(4579), 31, - sym__automatic_semicolon, + ACTIONS(4180), 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, - [32399] = 8, - ACTIONS(8223), 1, + [33312] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5090), 1, + STATE(4707), 1, sym_function_body, - STATE(5091), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 22, + ACTIONS(4397), 23, + anon_sym_DOT, 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, @@ -514388,13 +511870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 29, - sym__automatic_semicolon, + ACTIONS(4399), 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, @@ -514418,84 +511900,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32474] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4706), 25, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, + [33385] = 9, + ACTIONS(5500), 1, 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(4708), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8112), 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, - [32539] = 3, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5146), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4696), 25, + ACTIONS(4194), 21, + anon_sym_DOT, 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, @@ -514503,121 +511932,54 @@ 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(4698), 31, - sym__automatic_semicolon, + ACTIONS(4196), 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, - [32604] = 5, - ACTIONS(8382), 1, - anon_sym_COMMA, - STATE(5014), 1, - aux_sym__delegation_specifiers_repeat1, + [33462] = 3, 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, - 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(4674), 25, + ACTIONS(4736), 25, + anon_sym_DOT, 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, @@ -514636,7 +511998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4676), 31, + ACTIONS(4738), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514668,20 +512030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32738] = 5, - ACTIONS(8367), 1, + [33527] = 5, + ACTIONS(8379), 1, anon_sym_COMMA, - STATE(4967), 1, - aux_sym_type_constraints_repeat1, + STATE(5016), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4341), 24, + ACTIONS(4692), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -514701,7 +512062,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4339), 30, + ACTIONS(4690), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514732,18 +512094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [32807] = 3, + [33596] = 5, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 25, - anon_sym_COLON, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -514762,12 +512127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 31, + ACTIONS(3296), 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, @@ -514794,84 +512158,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [33665] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - [32945] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4543), 25, - anon_sym_COLON, + ACTIONS(4718), 25, + anon_sym_DOT, 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, @@ -514890,7 +512188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4545), 31, + ACTIONS(4721), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514922,30 +512220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33010] = 8, - ACTIONS(8104), 1, + [33730] = 5, + ACTIONS(5804), 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, + STATE(5104), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 22, + ACTIONS(4375), 24, + anon_sym_DOT, 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, @@ -514953,57 +512246,56 @@ 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(4377), 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, - [33085] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5228), 1, - sym_class_body, + [33799] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 24, + ACTIONS(4748), 25, + anon_sym_DOT, 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, @@ -515022,11 +512314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 30, + ACTIONS(4751), 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, @@ -515053,18 +512346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33154] = 3, + [33864] = 5, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5088), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4585), 25, - anon_sym_COLON, + ACTIONS(4228), 24, + anon_sym_DOT, 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, @@ -515083,12 +512379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4587), 31, + ACTIONS(4230), 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, @@ -515115,95 +512410,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33219] = 5, - ACTIONS(5770), 1, + [33933] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(5225), 1, - sym_enum_class_body, + STATE(5369), 1, + sym__block, + STATE(5371), 1, + sym_function_body, 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, + ACTIONS(4196), 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(4194), 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(4361), 30, + [34006] = 5, + ACTIONS(8379), 1, + anon_sym_COMMA, + STATE(4999), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4686), 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, - 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, - [33288] = 9, - ACTIONS(5582), 1, + ACTIONS(4684), 31, 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, + 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, + [34075] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 21, + ACTIONS(4680), 25, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -515211,47 +512563,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(4297), 29, + ACTIONS(4682), 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, - [33365] = 3, + [34140] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 24, + ACTIONS(4696), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -515276,7 +512631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4559), 32, + ACTIONS(4694), 32, anon_sym_COLON, anon_sym_where, anon_sym_object, @@ -515309,21 +512664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [33430] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5225), 1, - sym_class_body, + [34205] = 4, + ACTIONS(8381), 1, + anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 24, + ACTIONS(4762), 25, + anon_sym_AT, + anon_sym_DOT, 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, @@ -515342,11 +512696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 30, + ACTIONS(4764), 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, @@ -515373,21 +512727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33499] = 5, - ACTIONS(5770), 1, - anon_sym_LBRACE, - STATE(5210), 1, - sym_enum_class_body, + [34272] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 24, + ACTIONS(4647), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -515406,11 +512757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 30, + ACTIONS(4649), 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, @@ -515437,87 +512789,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33568] = 7, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [34337] = 5, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(5299), 1, - sym_type_constraints, - STATE(5388), 1, + STATE(5263), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 22, + ACTIONS(4317), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + 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, + ACTIONS(4319), 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(4355), 30, - anon_sym_object, - anon_sym_fun, + [34406] = 5, + ACTIONS(8383), 1, + anon_sym_COMMA, + STATE(5023), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4690), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [33641] = 5, - ACTIONS(8386), 1, - anon_sym_COMMA, - STATE(5001), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(4692), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [34475] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5230), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4430), 24, + ACTIONS(4621), 24, + anon_sym_DOT, 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, @@ -515536,14 +512950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4432), 30, + ACTIONS(4623), 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, @@ -515567,23 +512981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [34544] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 22, + ACTIONS(4663), 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, @@ -515602,7 +513010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4216), 30, + ACTIONS(4661), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515633,21 +513043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [33783] = 5, - ACTIONS(5770), 1, - anon_sym_LBRACE, - STATE(5199), 1, - sym_enum_class_body, + [34609] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 24, + ACTIONS(4577), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -515666,11 +513073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 30, + 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, @@ -515697,16 +513105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33852] = 3, + [34674] = 5, + ACTIONS(8385), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4545), 24, + ACTIONS(4667), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -515726,8 +513137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4543), 32, - anon_sym_COLON, + ACTIONS(4665), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -515759,18 +513169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [33917] = 3, + [34743] = 8, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8388), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4571), 25, + ACTIONS(4255), 22, + anon_sym_DOT, 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, @@ -515789,15 +513206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4573), 31, + ACTIONS(4257), 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, @@ -515821,147 +513236,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33982] = 3, + [34818] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5272), 1, + sym_type_constraints, + STATE(5339), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4678), 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_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(4681), 31, + ACTIONS(4381), 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, - [34047] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5199), 1, - sym_class_body, - 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, + ACTIONS(4379), 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(4654), 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, - [34116] = 5, - ACTIONS(5770), 1, + [34891] = 5, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(5192), 1, - sym_enum_class_body, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 24, + ACTIONS(4724), 24, + anon_sym_DOT, 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, @@ -515980,7 +513335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 30, + ACTIONS(4726), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516011,21 +513366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34185] = 5, - ACTIONS(5770), 1, - anon_sym_LBRACE, - STATE(5181), 1, - sym_enum_class_body, + [34960] = 5, + ACTIONS(8383), 1, + anon_sym_COMMA, + STATE(5012), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4567), 24, + ACTIONS(4684), 24, + anon_sym_DOT, 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, @@ -516044,14 +513399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4569), 30, + ACTIONS(4686), 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, @@ -516075,93 +513430,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34254] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, + [35029] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8181), 1, anon_sym_EQ, - STATE(4699), 1, + STATE(4876), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(5173), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4303), 23, 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(4301), 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, - [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(4736), 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, @@ -516176,14 +513466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 30, - sym__automatic_semicolon, + ACTIONS(4305), 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, @@ -516207,23 +513496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [35102] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4441), 22, + ACTIONS(4627), 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, @@ -516242,7 +513525,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4439), 30, + ACTIONS(4625), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516273,18 +513558,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34473] = 3, + [35167] = 5, + ACTIONS(8390), 1, + anon_sym_COMMA, + STATE(5023), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 25, - anon_sym_COLON, + ACTIONS(4665), 24, + anon_sym_DOT, 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, @@ -516303,7 +513591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4553), 31, + ACTIONS(4667), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516311,7 +513599,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, @@ -516335,20 +513622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34538] = 5, - ACTIONS(8391), 1, - anon_sym_COMMA, - STATE(5014), 1, - aux_sym__delegation_specifiers_repeat1, + [35236] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5302), 1, + sym_type_constraints, + STATE(5378), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 23, + ACTIONS(4377), 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, @@ -516367,8 +513657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4633), 31, - anon_sym_where, + ACTIONS(4375), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516399,19 +513688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34607] = 7, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + [35309] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5346), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5305), 1, + sym_type_constraints, + STATE(5326), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 22, + ACTIONS(4493), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -516434,7 +513723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4147), 30, + ACTIONS(4491), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516465,21 +513754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34680] = 5, - ACTIONS(8394), 1, + [35382] = 5, + ACTIONS(8393), 1, anon_sym_COMMA, - STATE(5052), 1, + STATE(5026), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4339), 24, + ACTIONS(4453), 24, + anon_sym_DOT, 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, @@ -516498,7 +513787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4341), 30, + ACTIONS(4455), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516529,81 +513818,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34749] = 3, + [35451] = 5, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5202), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4748), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4407), 24, + anon_sym_DOT, + anon_sym_as, 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(4746), 32, - anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, 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_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, - [34814] = 7, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + ACTIONS(4409), 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, + [35520] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5370), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + STATE(5314), 1, + sym_type_constraints, + STATE(5386), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4230), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -516626,7 +513917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4299), 30, + ACTIONS(4228), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516657,19 +513948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34887] = 7, - ACTIONS(5758), 1, - anon_sym_LBRACE, - ACTIONS(5764), 1, + [35593] = 7, + ACTIONS(5762), 1, anon_sym_where, - STATE(5287), 1, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5311), 1, sym_type_constraints, - STATE(5381), 1, + STATE(5334), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4483), 22, + ACTIONS(4413), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -516692,7 +513983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4481), 30, + ACTIONS(4411), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516723,25 +514014,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34960] = 5, - ACTIONS(5788), 1, + [35666] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5262), 1, - sym_class_body, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, + STATE(5123), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 24, + ACTIONS(4251), 21, + anon_sym_DOT, 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, @@ -516749,123 +514046,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(4549), 30, - sym__automatic_semicolon, + ACTIONS(4253), 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, - [35029] = 7, - ACTIONS(5758), 1, + [35743] = 5, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(5764), 1, - anon_sym_where, - STATE(5288), 1, - sym_type_constraints, - STATE(5399), 1, + STATE(5242), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4635), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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, - [35102] = 7, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + ACTIONS(4637), 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, + [35812] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(5289), 1, - sym_type_constraints, - STATE(5410), 1, - sym_class_body, + STATE(5369), 1, + sym__block, + STATE(5383), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 22, + ACTIONS(4387), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -516888,7 +514181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4359), 30, + ACTIONS(4385), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516919,28 +514212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35175] = 7, - ACTIONS(8104), 1, + [35885] = 5, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4838), 1, - sym_function_body, + STATE(5109), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 23, + ACTIONS(4411), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -516955,13 +514245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 29, + ACTIONS(4413), 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, @@ -516985,25 +514276,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35248] = 5, - ACTIONS(5770), 1, + [35954] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5246), 1, - sym_enum_class_body, + ACTIONS(8320), 1, + anon_sym_EQ, + ACTIONS(8396), 1, + anon_sym_COLON, + STATE(4789), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 24, + ACTIONS(4216), 22, + anon_sym_DOT, 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, @@ -517011,59 +514307,54 @@ 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(3290), 30, - sym__automatic_semicolon, + ACTIONS(4218), 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, - [35317] = 5, - ACTIONS(8389), 1, - anon_sym_COMMA, - STATE(5011), 1, - aux_sym__delegation_specifiers_repeat1, + [36029] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4684), 24, + ACTIONS(4728), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -517082,7 +514373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4686), 30, + ACTIONS(4730), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517090,6 +514381,7 @@ 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, @@ -517113,23 +514405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [36094] = 5, + ACTIONS(8373), 1, + anon_sym_COMMA, + STATE(4984), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 22, + ACTIONS(4505), 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, @@ -517148,7 +514438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4216), 30, + ACTIONS(4503), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -517179,92 +514469,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35459] = 7, - ACTIONS(8104), 1, + [36163] = 7, + ACTIONS(5762), 1, + anon_sym_where, + ACTIONS(5768), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(5275), 1, + sym_type_constraints, + STATE(5331), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4243), 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(4241), 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(4301), 29, - sym_safe_nav, + [36236] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5267), 1, + sym_type_constraints, + STATE(5334), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4413), 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, - [35532] = 7, - ACTIONS(8104), 1, + ACTIONS(4411), 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, + [36309] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(8320), 1, anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4824), 1, + STATE(4814), 1, sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5197), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 23, + ACTIONS(4129), 21, + anon_sym_DOT, 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, @@ -517274,58 +514633,54 @@ 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(4297), 29, + ACTIONS(4131), 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, - [35605] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5106), 1, - sym_class_body, + [36386] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4625), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -517344,11 +514699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 30, + ACTIONS(4627), 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, @@ -517375,21 +514731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35674] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5102), 1, - sym_class_body, + [36451] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4267), 25, + anon_sym_DOT, 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, @@ -517408,11 +514761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 30, + ACTIONS(4269), 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, @@ -517439,28 +514793,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35743] = 7, - ACTIONS(8104), 1, + [36516] = 5, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(5159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 23, + ACTIONS(4241), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -517475,13 +514826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(4243), 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, @@ -517505,21 +514857,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35816] = 4, - ACTIONS(7123), 1, - anon_sym_by, + [36585] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_where, + STATE(5281), 1, + sym_type_constraints, + STATE(5418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(4319), 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, @@ -517536,8 +514892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4505), 31, - anon_sym_where, + ACTIONS(4317), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -517568,155 +514923,82 @@ static const uint16_t ts_small_parse_table[] = { 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, + [36658] = 5, + ACTIONS(8398), 1, + anon_sym_COMMA, + STATE(5044), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 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(4162), 29, - sym_safe_nav, + ACTIONS(4455), 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_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, - [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(4147), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4453), 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(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_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, - [36033] = 5, - ACTIONS(8396), 1, - anon_sym_COMMA, - STATE(5035), 1, - aux_sym__delegation_specifiers_repeat1, + [36727] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4633), 24, + ACTIONS(4519), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -517735,7 +515017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 30, + ACTIONS(4521), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517743,6 +515025,7 @@ 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, @@ -517766,94 +515049,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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(4147), 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(4149), 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, - [36175] = 7, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4871), 1, - sym_function_body, + [36792] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 23, + ACTIONS(4525), 25, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -517868,13 +515079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 29, + ACTIONS(4527), 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, @@ -517898,25 +515111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36248] = 5, - ACTIONS(5788), 1, + [36857] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5175), 1, - sym_class_body, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 24, + ACTIONS(4194), 23, + anon_sym_DOT, 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, @@ -517931,14 +515147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 30, - sym__automatic_semicolon, + ACTIONS(4196), 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, @@ -517962,22 +515177,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36317] = 3, + [36930] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5135), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4563), 25, - anon_sym_COLON, + ACTIONS(4303), 21, + anon_sym_DOT, 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, @@ -517985,59 +515209,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(4565), 31, - sym__automatic_semicolon, + ACTIONS(4305), 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, - [36382] = 5, - ACTIONS(8382), 1, - anon_sym_COMMA, - STATE(4986), 1, - aux_sym__delegation_specifiers_repeat1, + [37007] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5369), 1, + sym__block, + STATE(5412), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4686), 23, + ACTIONS(4253), 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, @@ -518056,8 +515280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4684), 31, - anon_sym_where, + ACTIONS(4251), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518088,19 +515311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36451] = 4, - ACTIONS(8355), 1, - anon_sym_by, + [37080] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 24, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -518119,12 +515344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 31, + ACTIONS(3296), 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, @@ -518151,22 +515375,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36518] = 3, + [37149] = 8, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + ACTIONS(8401), 1, + anon_sym_COLON, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4728), 25, + ACTIONS(4255), 22, + anon_sym_DOT, 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_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(4257), 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, + [37224] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 23, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, @@ -518181,15 +515478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4730), 31, - sym__automatic_semicolon, + ACTIONS(4131), 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, @@ -518213,18 +515508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36583] = 3, + [37297] = 4, + ACTIONS(8403), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 25, + ACTIONS(4581), 24, + anon_sym_DOT, 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, @@ -518243,7 +515539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4765), 31, + ACTIONS(4583), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518275,19 +515571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36648] = 7, - ACTIONS(5764), 1, - anon_sym_where, - ACTIONS(5780), 1, + [37364] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(5312), 1, - sym_type_constraints, - STATE(5361), 1, - sym_class_body, + STATE(5336), 1, + sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 22, + ACTIONS(4180), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518310,7 +515606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 30, + ACTIONS(4178), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518341,23 +515637,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36721] = 4, - STATE(5035), 1, - aux_sym__delegation_specifiers_repeat1, + [37437] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 24, + ACTIONS(4178), 23, + anon_sym_DOT, 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, @@ -518372,15 +515673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 31, - sym__automatic_semicolon, + ACTIONS(4180), 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, @@ -518404,89 +515703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36788] = 8, - ACTIONS(8104), 1, + [37510] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8329), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(8399), 1, - anon_sym_COLON, - STATE(4800), 1, - sym__block, - STATE(4802), 1, + STATE(4784), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4165), 23, 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(4231), 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, - [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(4497), 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, @@ -518506,7 +515739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 29, + ACTIONS(4167), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518536,19 +515769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36934] = 7, - ACTIONS(5758), 1, - anon_sym_LBRACE, - ACTIONS(5764), 1, + [37583] = 7, + ACTIONS(5762), 1, anon_sym_where, - STATE(5309), 1, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5284), 1, sym_type_constraints, - STATE(5363), 1, + STATE(5421), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 22, + ACTIONS(4509), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518571,7 +515804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4463), 30, + ACTIONS(4507), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -518602,21 +515835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37007] = 5, - ACTIONS(5770), 1, + [37656] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5106), 1, - sym_enum_class_body, + ACTIONS(8262), 1, + anon_sym_EQ, + ACTIONS(8405), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5198), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4216), 22, + anon_sym_DOT, 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, @@ -518635,14 +515872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 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, @@ -518666,18 +515902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37076] = 3, + [37731] = 5, + ACTIONS(5828), 1, + anon_sym_LBRACE, + STATE(5109), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 25, + ACTIONS(4411), 24, + anon_sym_DOT, 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, @@ -518696,12 +515935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4672), 31, + ACTIONS(4413), 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, @@ -518728,18 +515966,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37141] = 3, + [37800] = 5, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5138), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4750), 25, - anon_sym_COLON, + ACTIONS(4379), 24, + anon_sym_DOT, 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, @@ -518758,12 +515999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4752), 31, + ACTIONS(4381), 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, @@ -518790,21 +516030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37206] = 5, - ACTIONS(8394), 1, - anon_sym_COMMA, - STATE(5001), 1, - aux_sym_type_constraints_repeat1, + [37869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4424), 24, + ACTIONS(4714), 25, + anon_sym_DOT, 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, @@ -518823,7 +516060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4426), 30, + ACTIONS(4716), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518831,6 +516068,7 @@ 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, @@ -518854,22 +516092,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37275] = 6, - ACTIONS(5598), 1, + [37934] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8403), 1, - anon_sym_COLON, - STATE(4749), 1, - sym_class_body, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 24, + ACTIONS(4385), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -518889,7 +516128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 29, + ACTIONS(4387), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -518919,84 +516158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [38007] = 4, + ACTIONS(8333), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 25, - anon_sym_COLON, + ACTIONS(4462), 24, + anon_sym_DOT, 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, @@ -519015,7 +516189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 31, + ACTIONS(4464), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519047,21 +516221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37484] = 5, - ACTIONS(5770), 1, - anon_sym_LBRACE, - STATE(5118), 1, - sym_enum_class_body, + [38074] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(4643), 25, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -519080,11 +516251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 30, + ACTIONS(4645), 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, @@ -519111,21 +516283,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37553] = 5, - ACTIONS(5788), 1, + [38139] = 5, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(5171), 1, + STATE(5111), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 24, + ACTIONS(4491), 24, + anon_sym_DOT, 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, @@ -519144,7 +516316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4357), 30, + ACTIONS(4493), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519175,97 +516347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37622] = 7, - ACTIONS(5758), 1, - anon_sym_LBRACE, - ACTIONS(5764), 1, - anon_sym_where, - STATE(5266), 1, - sym_type_constraints, - 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, - [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, + [38208] = 5, + ACTIONS(8369), 1, + anon_sym_COMMA, + STATE(5026), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 21, + ACTIONS(4439), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -519273,125 +516373,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(4162), 29, + ACTIONS(4441), 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_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, - [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, + [38277] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 22, + ACTIONS(4527), 24, 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, - [37845] = 7, - ACTIONS(5758), 1, + anon_sym_EQ, 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__string_start, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -519410,7 +516440,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4321), 30, + ACTIONS(4525), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -519441,89 +516473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37918] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5138), 1, - sym_class_body, + [38342] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4555), 24, + ACTIONS(4661), 25, + anon_sym_COLON, + anon_sym_DOT, 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(4557), 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, - [37987] = 8, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - 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(4275), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -519542,79 +516503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 29, + ACTIONS(4663), 31, 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, - [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(4443), 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(4445), 29, - 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, @@ -519638,19 +516535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38135] = 7, - ACTIONS(8187), 1, + [38407] = 7, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(8189), 1, + ACTIONS(8204), 1, anon_sym_LBRACE, - STATE(5404), 1, + STATE(5357), 1, sym_function_body, - STATE(5420), 1, + STATE(5369), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 22, + ACTIONS(4167), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -519673,7 +516570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4160), 30, + ACTIONS(4165), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -519704,88 +516601,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [38208] = 3, + [38480] = 7, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5369), 1, + sym__block, + STATE(5419), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4559), 25, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(4305), 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(4303), 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(4561), 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, - [38273] = 7, - ACTIONS(8104), 1, + [38553] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, - anon_sym_EQ, - STATE(4763), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(6150), 1, + anon_sym_COLON, + STATE(4686), 1, + sym_type_constraints, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 23, + ACTIONS(3276), 21, + anon_sym_DOT, 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, @@ -519795,55 +516697,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(4309), 29, + ACTIONS(3280), 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, - [38346] = 3, + [38627] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4746), 25, - anon_sym_COLON, + ACTIONS(4890), 24, + anon_sym_DOT, 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, @@ -519862,7 +516762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4748), 31, + ACTIONS(4892), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519894,26 +516794,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38411] = 5, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5118), 1, - sym_class_body, + [38691] = 5, + ACTIONS(8407), 1, + anon_sym_SEMI, + ACTIONS(8409), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(4974), 23, + anon_sym_DOT, 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, @@ -519927,15 +516826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 30, + ACTIONS(4976), 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, @@ -519958,28 +516857,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [38759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 23, + ACTIONS(4898), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -519994,13 +516886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 29, + ACTIONS(4900), 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, @@ -520024,23 +516918,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38553] = 7, - ACTIONS(8223), 1, + [38823] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5178), 1, - sym_function_body, + 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(4894), 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, + [38887] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 22, + ACTIONS(4874), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -520059,13 +517008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 29, + ACTIONS(4876), 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, @@ -520089,17 +517040,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38625] = 3, + [38951] = 5, + ACTIONS(4936), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4938), 24, + ACTIONS(4938), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4393), 23, + anon_sym_DOT, 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, @@ -520118,7 +517076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4940), 31, + ACTIONS(4395), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520134,11 +517092,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, @@ -520150,17 +517103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38689] = 3, + [39019] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 24, + ACTIONS(3140), 24, + anon_sym_DOT, 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, @@ -520179,7 +517132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 31, + ACTIONS(3142), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520211,19 +517164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38753] = 4, - ACTIONS(8407), 1, - anon_sym_LPAREN, + [39083] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 24, + ACTIONS(5055), 24, + anon_sym_DOT, 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, @@ -520242,13 +517193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4265), 30, + ACTIONS(5057), 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, @@ -520273,23 +517225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [39147] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 22, + ACTIONS(4882), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -520308,13 +517254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 29, + ACTIONS(4884), 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, @@ -520338,17 +517286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38891] = 3, + [39211] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 24, + ACTIONS(4886), 24, + anon_sym_DOT, 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, @@ -520367,7 +517315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 31, + ACTIONS(4888), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520399,17 +517347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38955] = 3, + [39275] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4798), 24, + ACTIONS(5129), 24, + anon_sym_DOT, 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, @@ -520428,7 +517376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4800), 31, + ACTIONS(5131), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520460,22 +517408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39019] = 6, - ACTIONS(5788), 1, + [39339] = 6, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8409), 1, + ACTIONS(8411), 1, anon_sym_COLON, - STATE(5172), 1, + STATE(5140), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 23, + ACTIONS(4421), 23, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -520494,7 +517442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 29, + ACTIONS(4423), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520524,17 +517472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39089] = 3, + [39409] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 24, + ACTIONS(4902), 24, + anon_sym_DOT, 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, @@ -520553,7 +517501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 31, + ACTIONS(4904), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520585,28 +517533,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [39473] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 22, + ACTIONS(4870), 24, + anon_sym_DOT, 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, @@ -520614,58 +517555,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(4139), 29, + ACTIONS(4872), 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, - [39225] = 3, + [39537] = 4, + ACTIONS(8409), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4846), 24, + ACTIONS(4974), 23, + anon_sym_DOT, 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, @@ -520679,7 +517624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4848), 31, + ACTIONS(4976), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520711,17 +517656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39289] = 3, + [39603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4962), 24, + ACTIONS(5067), 24, + anon_sym_DOT, 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, @@ -520740,7 +517685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4964), 31, + ACTIONS(5069), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520772,78 +517717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [39667] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4477), 24, + ACTIONS(4407), 24, + anon_sym_DOT, 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, @@ -520862,7 +517746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 31, + ACTIONS(4409), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520894,204 +517778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39481] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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_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, - [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_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(5179), 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, - [39609] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5185), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [39731] = 7, + ACTIONS(8112), 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(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(8320), 1, + anon_sym_EQ, + STATE(4707), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4910), 24, + ACTIONS(4397), 22, + anon_sym_DOT, 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, @@ -521099,67 +517807,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(4912), 31, - sym__automatic_semicolon, + ACTIONS(4399), 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, - [39737] = 7, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8329), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + [39803] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 22, + ACTIONS(5105), 24, + anon_sym_DOT, 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, @@ -521167,53 +517865,56 @@ 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(4149), 29, + ACTIONS(5107), 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, - [39809] = 3, + [39867] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4794), 24, + ACTIONS(4106), 24, + anon_sym_DOT, 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, @@ -521232,7 +517933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4796), 31, + ACTIONS(4108), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521264,17 +517965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39873] = 3, + [39931] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 24, + ACTIONS(5097), 24, + anon_sym_DOT, 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, @@ -521293,7 +517994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5097), 31, + ACTIONS(5099), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521325,11 +518026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39937] = 3, + [39995] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 23, + ACTIONS(4730), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -521353,7 +518054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4758), 32, + ACTIONS(4728), 32, anon_sym_COLON, anon_sym_where, anon_sym_object, @@ -521386,78 +518087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40001] = 3, + [40059] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(5081), 24, 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(5105), 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, - [40065] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5089), 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, @@ -521476,7 +518116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 31, + ACTIONS(5083), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521508,82 +518148,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [40123] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4888), 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(4886), 31, + anon_sym_where, + 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(4449), 29, + [40187] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4784), 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_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + 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, - [40201] = 3, + ACTIONS(4782), 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, + [40251] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4790), 24, + ACTIONS(3276), 24, + anon_sym_DOT, 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, @@ -521602,7 +518299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4792), 31, + ACTIONS(3280), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521634,17 +518331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40265] = 3, + [40315] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4660), 24, + ACTIONS(123), 24, + anon_sym_DOT, 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, @@ -521663,7 +518360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4662), 31, + ACTIONS(121), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521695,28 +518392,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [40379] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 22, + ACTIONS(5133), 24, + anon_sym_DOT, 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, @@ -521724,114 +518414,117 @@ 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(4309), 29, + ACTIONS(5135), 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, - [40401] = 3, + [40443] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4094), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4860), 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(4858), 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(4096), 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, - [40465] = 3, + [40507] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5107), 24, + ACTIONS(4194), 24, + anon_sym_DOT, 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, @@ -521850,7 +518543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5109), 31, + ACTIONS(4196), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521882,17 +518575,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40529] = 3, + [40571] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5112), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 24, + ACTIONS(4194), 22, + anon_sym_DOT, 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, @@ -521911,15 +518610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5201), 31, + ACTIONS(4196), 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, @@ -521943,17 +518640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40593] = 3, + [40643] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4355), 24, + ACTIONS(1814), 24, + anon_sym_DOT, 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, @@ -521972,7 +518669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4357), 31, + ACTIONS(1816), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522004,17 +518701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40657] = 3, + [40707] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4970), 24, + ACTIONS(4529), 24, + anon_sym_DOT, 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, @@ -522033,7 +518730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4972), 31, + ACTIONS(4531), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522065,21 +518762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40721] = 3, + [40771] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4702), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 24, + ACTIONS(4389), 22, + anon_sym_DOT, 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, @@ -522087,63 +518791,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(4890), 31, - sym__automatic_semicolon, + ACTIONS(4391), 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, - [40785] = 5, - ACTIONS(4812), 1, - anon_sym_EQ, + [40843] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(5155), 24, + anon_sym_DOT, 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, @@ -522162,7 +518856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4479), 26, + ACTIONS(5157), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522178,6 +518872,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, @@ -522189,17 +518888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40853] = 3, + [40907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4463), 24, + ACTIONS(4906), 24, + anon_sym_DOT, 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, @@ -522218,7 +518917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4465), 31, + ACTIONS(4908), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522250,19 +518949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40917] = 4, - ACTIONS(8411), 1, - anon_sym_LPAREN, + [40971] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 24, + ACTIONS(1734), 24, + anon_sym_DOT, 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, @@ -522281,13 +518978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 30, + ACTIONS(1736), 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, @@ -522312,17 +519010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40983] = 3, + [41035] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1796), 24, + ACTIONS(4375), 24, + anon_sym_DOT, 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, @@ -522341,7 +519039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1798), 31, + ACTIONS(4377), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522373,19 +519071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41047] = 4, - ACTIONS(8413), 1, - anon_sym_LPAREN, + [41099] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 24, + ACTIONS(4922), 24, + anon_sym_DOT, 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, @@ -522404,13 +519100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 30, + ACTIONS(4924), 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, @@ -522435,19 +519132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41113] = 4, - ACTIONS(8415), 1, - anon_sym_LPAREN, + [41163] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 24, + ACTIONS(4653), 24, + anon_sym_DOT, 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, @@ -522466,13 +519161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4894), 30, + ACTIONS(4655), 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, @@ -522497,78 +519193,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41179] = 3, + [41227] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4565), 23, + ACTIONS(4303), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + 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, + ACTIONS(4305), 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(4563), 32, - anon_sym_COLON, + [41291] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4744), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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_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, - [41243] = 3, + ACTIONS(4746), 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, + [41355] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3113), 24, + ACTIONS(4303), 22, + anon_sym_DOT, 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, @@ -522587,15 +519350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3115), 31, + ACTIONS(4305), 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, @@ -522619,17 +519380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41307] = 3, + [41427] = 4, + ACTIONS(8413), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4786), 24, + ACTIONS(4994), 24, + anon_sym_DOT, 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, @@ -522648,7 +519411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4788), 31, + ACTIONS(4996), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522663,7 +519426,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, @@ -522680,17 +519442,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41371] = 3, + [41493] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 24, + ACTIONS(4796), 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(4794), 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, + [41557] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5163), 24, + anon_sym_DOT, 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, @@ -522709,7 +519532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4920), 31, + ACTIONS(5165), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522741,19 +519564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41435] = 4, - ACTIONS(8417), 1, - anon_sym_COLON_COLON, + [41621] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5024), 24, + ACTIONS(5167), 24, + anon_sym_DOT, 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, @@ -522772,7 +519593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 30, + ACTIONS(5169), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522787,6 +519608,7 @@ 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, @@ -522803,17 +519625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41501] = 3, + [41685] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5163), 24, + ACTIONS(4129), 24, + anon_sym_DOT, 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, @@ -522832,7 +519654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5165), 31, + ACTIONS(4131), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522864,28 +519686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [41749] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 22, + ACTIONS(4926), 24, + anon_sym_DOT, 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, @@ -522893,53 +519708,56 @@ 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(4449), 29, + ACTIONS(4928), 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, - [41637] = 3, + [41813] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 24, + ACTIONS(4228), 24, + anon_sym_DOT, 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, @@ -522958,7 +519776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 31, + ACTIONS(4230), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522990,84 +519808,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41701] = 3, + [41877] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 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(5187), 31, + ACTIONS(4930), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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_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, - [41765] = 4, - ACTIONS(6690), 1, + 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_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, + [41941] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 24, + ACTIONS(4385), 22, + anon_sym_DOT, 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, @@ -523075,61 +519898,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(4284), 30, - sym__automatic_semicolon, + ACTIONS(4387), 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, - [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, + [42013] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 22, + ACTIONS(4866), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -523148,13 +519963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 29, + ACTIONS(4868), 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, @@ -523178,17 +519995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41903] = 3, + [42077] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5175), 24, + ACTIONS(3338), 24, + anon_sym_DOT, 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, @@ -523207,7 +520024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5177), 31, + ACTIONS(3340), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523239,17 +520056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41967] = 3, + [42141] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 24, + ACTIONS(4020), 24, + anon_sym_DOT, 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, @@ -523268,7 +520085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 31, + ACTIONS(4022), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523300,17 +520117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42031] = 3, + [42205] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4880), 24, + ACTIONS(3133), 24, + anon_sym_DOT, 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, @@ -523329,7 +520146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4882), 31, + ACTIONS(3135), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523361,17 +520178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42095] = 3, + [42269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4782), 24, + ACTIONS(5211), 24, + anon_sym_DOT, 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, @@ -523390,7 +520207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4784), 31, + ACTIONS(5213), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523422,19 +520239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42159] = 4, - ACTIONS(6684), 1, - anon_sym_LPAREN, + [42333] = 5, + ACTIONS(4902), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4259), 24, + ACTIONS(4904), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4403), 23, + anon_sym_DOT, 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, @@ -523453,13 +520275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 30, + ACTIONS(4405), 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_SEMI, sym_label, @@ -523468,11 +520291,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, @@ -523484,17 +520302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42225] = 3, + [42401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 24, + ACTIONS(4462), 24, + anon_sym_DOT, 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, @@ -523513,7 +520331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5189), 31, + ACTIONS(4464), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523545,17 +520363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42289] = 3, + [42465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 24, + ACTIONS(5207), 24, + anon_sym_DOT, 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, @@ -523574,7 +520392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5045), 31, + ACTIONS(5209), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523606,17 +520424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42353] = 3, + [42529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4946), 24, + ACTIONS(5215), 24, + anon_sym_DOT, 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, @@ -523635,7 +520453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4948), 31, + ACTIONS(5217), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523667,17 +520485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42417] = 3, + [42593] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 24, + ACTIONS(5219), 24, + anon_sym_DOT, 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, @@ -523696,7 +520514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 31, + ACTIONS(5221), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523728,21 +520546,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42481] = 3, + [42657] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8416), 1, + anon_sym_COLON, + STATE(4637), 1, + sym_type_constraints, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 24, + ACTIONS(4317), 21, + anon_sym_DOT, 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, @@ -523750,69 +520576,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(3274), 31, - sym__automatic_semicolon, + ACTIONS(4319), 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, - [42545] = 6, - ACTIONS(5055), 1, + [42731] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, anon_sym_EQ, - ACTIONS(8417), 1, - anon_sym_COLON_COLON, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4251), 22, + anon_sym_DOT, 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, @@ -523820,53 +520641,54 @@ 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(5026), 25, - sym__automatic_semicolon, + ACTIONS(4253), 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_BANG_BANG, sym__backtick_identifier, - [42615] = 3, + [42803] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 25, + ACTIONS(4517), 23, 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, @@ -523883,7 +520705,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4430), 30, + ACTIONS(4515), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -523914,17 +520738,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [42679] = 3, + [42867] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(6180), 1, + anon_sym_COLON, + STATE(4645), 1, + sym_type_constraints, + STATE(4798), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 24, + ACTIONS(3292), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(3296), 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, + [42941] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4491), 24, + anon_sym_DOT, 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, @@ -523943,7 +520833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 31, + ACTIONS(4493), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523975,17 +520865,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42743] = 3, + [43005] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4633), 24, + ACTIONS(4129), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4131), 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, + [43077] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5077), 24, + anon_sym_DOT, 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, @@ -524004,7 +520959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 31, + ACTIONS(5079), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524036,17 +520991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42807] = 3, + [43141] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 24, + ACTIONS(4894), 24, + anon_sym_DOT, 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, @@ -524065,7 +521020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5185), 31, + ACTIONS(4896), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524097,11 +521052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42871] = 3, + [43205] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(4667), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -524126,7 +521081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4505), 31, + ACTIONS(4665), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -524158,17 +521113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [42935] = 3, + [43269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5219), 24, + ACTIONS(4806), 24, + anon_sym_DOT, 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, @@ -524187,7 +521142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5221), 31, + ACTIONS(4808), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524219,17 +521174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42999] = 3, + [43333] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4870), 24, + ACTIONS(4393), 24, + anon_sym_DOT, 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, @@ -524248,7 +521203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4872), 31, + ACTIONS(4395), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524280,17 +521235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43063] = 3, + [43397] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 24, + ACTIONS(1808), 24, + anon_sym_DOT, 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, @@ -524309,7 +521264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 31, + ACTIONS(1810), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524341,21 +521296,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43127] = 3, + [43461] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 24, + ACTIONS(4303), 22, + anon_sym_DOT, 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, @@ -524363,56 +521325,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(4149), 31, - sym__automatic_semicolon, + ACTIONS(4305), 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, - [43191] = 3, + [43533] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5073), 24, + ACTIONS(4802), 24, + anon_sym_DOT, 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, @@ -524431,7 +521390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5075), 31, + ACTIONS(4804), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524463,17 +521422,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43255] = 3, + [43597] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4464), 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(4462), 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, + [43661] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 24, + ACTIONS(4810), 24, + anon_sym_DOT, 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, @@ -524492,7 +521512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5215), 31, + ACTIONS(4812), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524524,17 +521544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43319] = 3, + [43725] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3344), 24, + ACTIONS(3978), 24, + anon_sym_DOT, 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, @@ -524553,7 +521573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3346), 31, + ACTIONS(3980), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524585,17 +521605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43383] = 3, + [43789] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 24, + ACTIONS(4940), 24, + anon_sym_DOT, 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, @@ -524614,7 +521634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 31, + ACTIONS(4942), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524646,17 +521666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43447] = 3, + [43853] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5205), 24, + ACTIONS(4944), 24, + anon_sym_DOT, 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, @@ -524675,7 +521695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5207), 31, + ACTIONS(4946), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524707,26 +521727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43511] = 6, - ACTIONS(4004), 1, - anon_sym_EQ, - ACTIONS(7295), 1, - anon_sym_LPAREN, + [43917] = 3, 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(4259), 23, + ACTIONS(5185), 24, + anon_sym_DOT, 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, @@ -524745,13 +521756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 25, + ACTIONS(5187), 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, @@ -524760,6 +521772,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, @@ -524771,21 +521788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43581] = 6, - ACTIONS(5780), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_COLON, - STATE(5336), 1, - sym_class_body, + [43981] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4499), 22, + ACTIONS(4649), 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, @@ -524804,7 +521816,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4497), 30, + ACTIONS(4647), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -524835,17 +521849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [43651] = 3, + [44045] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5167), 24, + ACTIONS(4948), 24, + anon_sym_DOT, 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, @@ -524864,7 +521878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5169), 31, + ACTIONS(4950), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524896,21 +521910,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43715] = 3, + [44109] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4866), 24, + ACTIONS(4129), 22, + anon_sym_DOT, 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, @@ -524918,120 +521939,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(4868), 31, - sym__automatic_semicolon, + ACTIONS(4131), 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, - [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, + [44181] = 4, + ACTIONS(8418), 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(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(1802), 24, + ACTIONS(5047), 24, + anon_sym_DOT, 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, @@ -525050,14 +522006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1804), 31, + ACTIONS(5049), 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, @@ -525082,17 +522037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43913] = 3, + [44247] = 4, + ACTIONS(8420), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 24, + ACTIONS(5071), 24, + anon_sym_DOT, 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, @@ -525111,14 +522068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 31, + ACTIONS(5073), 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, @@ -525143,24 +522099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43977] = 5, - ACTIONS(5020), 1, - anon_sym_EQ, + [44313] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4411), 24, + anon_sym_DOT, 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, @@ -525179,7 +522128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4453), 26, + ACTIONS(4413), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525195,6 +522144,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, @@ -525206,17 +522160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44045] = 3, + [44377] = 4, + ACTIONS(8422), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 24, + ACTIONS(4297), 24, + anon_sym_DOT, 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, @@ -525235,14 +522191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 31, + ACTIONS(4295), 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, @@ -525267,17 +522222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44109] = 3, + [44443] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3992), 24, + ACTIONS(4573), 24, + anon_sym_DOT, 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, @@ -525296,7 +522251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3994), 31, + ACTIONS(4575), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525328,21 +522283,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44173] = 3, + [44507] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5020), 24, + ACTIONS(4165), 22, + anon_sym_DOT, 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, @@ -525350,56 +522312,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(5022), 31, - sym__automatic_semicolon, + ACTIONS(4167), 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, - [44237] = 3, + [44579] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 24, + ACTIONS(4798), 24, + anon_sym_DOT, 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, @@ -525418,7 +522377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4856), 31, + ACTIONS(4800), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525450,18 +522409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44301] = 4, - ACTIONS(8424), 1, - anon_sym_LT, + [44643] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 23, + ACTIONS(4918), 24, + anon_sym_DOT, 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, @@ -525480,7 +522438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 31, + ACTIONS(4920), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525512,17 +522470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44367] = 3, + [44707] = 4, + ACTIONS(8424), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1584), 24, + ACTIONS(4283), 24, + anon_sym_DOT, 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, @@ -525541,14 +522501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1582), 31, + ACTIONS(4281), 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, @@ -525573,17 +522532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44431] = 3, + [44773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 24, + ACTIONS(5101), 24, + anon_sym_DOT, 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, @@ -525602,7 +522561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4924), 31, + ACTIONS(5103), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525634,78 +522593,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44495] = 3, + [44837] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5191), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4645), 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(4643), 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(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_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, - [44559] = 3, + [44901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 24, + ACTIONS(4914), 24, + anon_sym_DOT, 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, @@ -525724,7 +522683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 31, + ACTIONS(4916), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525756,23 +522715,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44623] = 7, - ACTIONS(8223), 1, + [44965] = 6, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5240), 1, - sym_function_body, + ACTIONS(8426), 1, + anon_sym_COLON, + STATE(5260), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(4433), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -525791,7 +522749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 29, + ACTIONS(4435), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525821,17 +522779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44695] = 3, + [45035] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5125), 24, + ACTIONS(5089), 24, + anon_sym_DOT, 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, @@ -525850,7 +522808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5127), 31, + ACTIONS(5091), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525882,17 +522840,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44759] = 3, + [45099] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(7273), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 24, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4289), 23, + anon_sym_DOT, 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, @@ -525911,14 +522878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5049), 31, + ACTIONS(4292), 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, @@ -525927,11 +522893,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, @@ -525943,17 +522904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44823] = 3, + [45169] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 24, + ACTIONS(4952), 24, + anon_sym_DOT, 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, @@ -525972,7 +522933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5033), 31, + ACTIONS(4954), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526004,17 +522965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44887] = 3, + [45233] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(7213), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4028), 24, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4275), 23, + anon_sym_DOT, 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, @@ -526033,14 +523003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4030), 31, + ACTIONS(4278), 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, @@ -526049,11 +523018,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, @@ -526065,26 +523029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44951] = 6, - ACTIONS(4004), 1, - anon_sym_EQ, - ACTIONS(7291), 1, - anon_sym_LPAREN, + [45303] = 3, 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, + ACTIONS(4910), 24, + anon_sym_DOT, 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, @@ -526103,13 +523058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4284), 25, + ACTIONS(4912), 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, @@ -526118,6 +523074,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, @@ -526129,17 +523090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45021] = 3, + [45367] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 24, + ACTIONS(4397), 22, + anon_sym_DOT, 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, @@ -526158,15 +523125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 31, + ACTIONS(4399), 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, @@ -526190,17 +523155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45085] = 3, + [45439] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4397), 24, + anon_sym_DOT, 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, @@ -526219,7 +523184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 31, + ACTIONS(4399), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526251,21 +523216,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45149] = 3, + [45503] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(6162), 1, + anon_sym_COLON, + STATE(4665), 1, + sym_type_constraints, + STATE(4798), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4850), 24, + ACTIONS(3292), 21, + anon_sym_DOT, 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, @@ -526273,67 +523246,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(4852), 31, - sym__automatic_semicolon, + ACTIONS(3296), 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, - [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, + [45577] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 22, + ACTIONS(4958), 24, + anon_sym_DOT, 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, @@ -526341,53 +523304,56 @@ 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(4441), 29, + ACTIONS(4960), 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, - [45285] = 3, + [45641] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4974), 24, + ACTIONS(4962), 24, + anon_sym_DOT, 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, @@ -526406,7 +523372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4976), 31, + ACTIONS(4964), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526438,17 +523404,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45349] = 3, + [45705] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4255), 22, + anon_sym_DOT, 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, @@ -526467,15 +523439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 31, + ACTIONS(4257), 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, @@ -526499,17 +523469,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45413] = 3, + [45777] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4778), 24, + ACTIONS(4814), 24, + anon_sym_DOT, 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, @@ -526528,7 +523498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4780), 31, + ACTIONS(4816), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526560,17 +523530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45477] = 3, + [45841] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 24, + ACTIONS(4966), 24, + anon_sym_DOT, 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, @@ -526589,7 +523559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5041), 31, + ACTIONS(4968), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526621,17 +523591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45541] = 3, + [45905] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 24, + ACTIONS(4453), 24, + anon_sym_DOT, 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, @@ -526650,7 +523620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 31, + ACTIONS(4455), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526682,23 +523652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [45969] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 22, + ACTIONS(4317), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -526717,13 +523681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 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_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -526747,17 +523713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45677] = 3, + [46033] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4000), 24, + ACTIONS(4768), 24, + anon_sym_DOT, 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, @@ -526776,7 +523742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4002), 31, + ACTIONS(4770), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526808,17 +523774,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45741] = 3, + [46097] = 6, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(8428), 1, + anon_sym_COLON, + STATE(5316), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5085), 24, + ACTIONS(4435), 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(4433), 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, + [46167] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4970), 24, + anon_sym_DOT, 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, @@ -526837,7 +523867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5087), 31, + ACTIONS(4972), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526869,17 +523899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45805] = 3, + [46231] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3160), 24, + ACTIONS(5171), 24, + anon_sym_DOT, 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, @@ -526898,7 +523928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3162), 31, + ACTIONS(5173), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526930,17 +523960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45869] = 3, + [46295] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3420), 24, + ACTIONS(4782), 24, + anon_sym_DOT, 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, @@ -526959,7 +523989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3422), 31, + ACTIONS(4784), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526991,17 +524021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45933] = 3, + [46359] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4958), 24, + ACTIONS(4790), 24, + anon_sym_DOT, 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, @@ -527020,7 +524050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4960), 31, + ACTIONS(4792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527052,78 +524082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45997] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4635), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [46423] = 4, + ACTIONS(6623), 1, 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(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, - [46061] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 24, + ACTIONS(4289), 24, + anon_sym_DOT, 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, @@ -527142,14 +524113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 31, + ACTIONS(4292), 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, @@ -527174,17 +524144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46125] = 3, + [46489] = 4, + ACTIONS(6619), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4926), 24, + ACTIONS(4275), 24, + anon_sym_DOT, 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, @@ -527203,14 +524175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4928), 31, + ACTIONS(4278), 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, @@ -527235,28 +524206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46189] = 7, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8329), 1, - anon_sym_EQ, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + [46555] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 22, + ACTIONS(4818), 24, + anon_sym_DOT, 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, @@ -527264,53 +524228,56 @@ 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(4820), 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, - [46261] = 3, + [46619] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4930), 24, + ACTIONS(5043), 24, + anon_sym_DOT, 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, @@ -527329,7 +524296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4932), 31, + ACTIONS(5045), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527361,28 +524328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [46683] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 22, + ACTIONS(4786), 24, + anon_sym_DOT, 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, @@ -527390,53 +524350,56 @@ 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(4301), 29, + ACTIONS(4788), 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, - [46397] = 3, + [46747] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 24, + ACTIONS(4878), 24, + anon_sym_DOT, 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, @@ -527455,7 +524418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5037), 31, + ACTIONS(4880), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527487,21 +524450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46461] = 3, + [46811] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4858), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4567), 24, + ACTIONS(4194), 22, + anon_sym_DOT, 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, @@ -527509,56 +524479,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(4569), 31, - sym__automatic_semicolon, + ACTIONS(4196), 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, - [46525] = 3, + [46883] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5153), 24, + ACTIONS(4389), 24, + anon_sym_DOT, 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, @@ -527577,7 +524544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5155), 31, + ACTIONS(4391), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527609,17 +524576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46589] = 3, + [46947] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4778), 24, + anon_sym_DOT, 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, @@ -527638,7 +524605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 31, + ACTIONS(4780), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527670,84 +524637,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46653] = 3, + [47011] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(4585), 32, - anon_sym_COLON, + ACTIONS(4988), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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_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, - [46717] = 7, - ACTIONS(8223), 1, + ACTIONS(4990), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8261), 1, + 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, + [47075] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5091), 1, + STATE(5094), 1, sym__block, + STATE(5176), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 22, + ACTIONS(4389), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -527766,7 +524733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 29, + ACTIONS(4391), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527796,17 +524763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46789] = 3, + [47147] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4430), 24, + ACTIONS(4507), 24, + anon_sym_DOT, 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, @@ -527825,7 +524792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4432), 31, + ACTIONS(4509), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527857,17 +524824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46853] = 3, + [47211] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1814), 24, + ACTIONS(5199), 24, + anon_sym_DOT, 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, @@ -527886,7 +524853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1816), 31, + ACTIONS(5201), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527918,17 +524885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46917] = 3, + [47275] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4966), 24, + ACTIONS(4858), 24, + anon_sym_DOT, 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, @@ -527947,7 +524914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4968), 31, + ACTIONS(4860), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527979,20 +524946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46981] = 3, + [47339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 25, + ACTIONS(4659), 23, 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, @@ -528009,7 +524974,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4660), 30, + ACTIONS(4657), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528040,17 +525007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47045] = 3, + [47403] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 24, + ACTIONS(3268), 24, + anon_sym_DOT, 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, @@ -528069,7 +525036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 31, + ACTIONS(3272), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528101,17 +525068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47109] = 3, + [47467] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5099), 24, + ACTIONS(3292), 24, + anon_sym_DOT, 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, @@ -528130,7 +525097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5101), 31, + ACTIONS(3296), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528162,27 +525129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47173] = 7, - ACTIONS(8223), 1, + [47531] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(5076), 1, - sym_function_body, - STATE(5091), 1, - sym__block, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(4681), 1, + sym_type_constraints, + STATE(4732), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 22, + ACTIONS(4241), 21, + anon_sym_DOT, 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, @@ -528190,58 +525159,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(4309), 29, - sym__automatic_semicolon, + ACTIONS(4243), 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, - [47245] = 3, + [47605] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 24, + ACTIONS(4178), 22, + anon_sym_DOT, 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, @@ -528249,56 +525224,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(5197), 31, - sym__automatic_semicolon, + ACTIONS(4180), 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, - [47309] = 3, + [47677] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5135), 24, + ACTIONS(5159), 24, + anon_sym_DOT, 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, @@ -528317,7 +525289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5137), 31, + ACTIONS(5161), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528349,94 +525321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [47741] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 22, + ACTIONS(4774), 24, + anon_sym_DOT, 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_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(4445), 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, - [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(3270), 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, @@ -528444,53 +525343,56 @@ 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(3274), 29, + ACTIONS(4776), 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, - [47519] = 3, + [47805] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 24, + ACTIONS(5039), 24, + anon_sym_DOT, 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, @@ -528509,7 +525411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5133), 31, + ACTIONS(5041), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528541,78 +525443,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47583] = 3, + [47869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4451), 24, - anon_sym_as, + ACTIONS(4746), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + 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(4744), 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(4453), 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, - [47647] = 3, + [47933] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4481), 24, + ACTIONS(5035), 24, + anon_sym_DOT, 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, @@ -528631,7 +525533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4483), 31, + ACTIONS(5037), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528663,23 +525565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47711] = 4, - ACTIONS(8426), 1, - anon_sym_else, + [47997] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 23, + ACTIONS(4936), 24, + anon_sym_DOT, 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, @@ -528693,7 +525594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 31, + ACTIONS(4938), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528725,83 +525626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [48061] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1822), 24, 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(3282), 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, - [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_STAR, @@ -528820,7 +525655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5141), 31, + ACTIONS(1824), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528852,17 +525687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47915] = 3, + [48125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4898), 24, + ACTIONS(5085), 24, + anon_sym_DOT, 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, @@ -528881,7 +525716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4900), 31, + ACTIONS(5087), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528913,17 +525748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47979] = 3, + [48189] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 24, + ACTIONS(5147), 24, + anon_sym_DOT, 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, @@ -528942,7 +525777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 31, + ACTIONS(5149), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528974,80 +525809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48043] = 5, - ACTIONS(8426), 1, - anon_sym_else, - ACTIONS(8428), 1, - anon_sym_SEMI, + [48253] = 3, 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, + ACTIONS(5143), 24, 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(4820), 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, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [48111] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, @@ -529066,7 +525838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4916), 31, + ACTIONS(5145), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529098,17 +525870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48175] = 3, + [48317] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4804), 24, + ACTIONS(1790), 24, + anon_sym_DOT, 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, @@ -529127,7 +525899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4806), 31, + ACTIONS(1792), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529159,23 +525931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48239] = 7, - ACTIONS(8223), 1, + [48381] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8262), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5194), 1, + STATE(5241), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 22, + ACTIONS(4251), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -529194,7 +525966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 29, + ACTIONS(4253), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529224,17 +525996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48311] = 3, + [48453] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 24, + ACTIONS(4178), 24, + anon_sym_DOT, 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, @@ -529253,7 +526025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 31, + ACTIONS(4180), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529285,17 +526057,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48375] = 3, + [48517] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 24, + ACTIONS(4178), 22, + anon_sym_DOT, 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, @@ -529314,15 +526092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 31, + ACTIONS(4180), 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, @@ -529346,21 +526122,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48439] = 3, + [48589] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8432), 1, + anon_sym_COLON, + STATE(4635), 1, + sym_type_constraints, + STATE(4732), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4812), 24, + ACTIONS(4241), 21, + anon_sym_DOT, 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, @@ -529368,64 +526152,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(4814), 31, - sym__automatic_semicolon, + ACTIONS(4243), 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, - [48503] = 8, - ACTIONS(5582), 1, + [48663] = 8, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8430), 1, + ACTIONS(8434), 1, anon_sym_COLON, STATE(4682), 1, sym_type_constraints, - STATE(4809), 1, - sym_class_body, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 21, + ACTIONS(4228), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -529443,7 +526224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 29, + ACTIONS(4230), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -529473,78 +526254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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_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(5147), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [48737] = 7, + ACTIONS(8189), 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, - [48641] = 3, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5222), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 24, + ACTIONS(4165), 22, + anon_sym_DOT, 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, @@ -529563,15 +526289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 31, + ACTIONS(4167), 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, @@ -529595,17 +526319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48705] = 3, + [48809] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 24, + ACTIONS(5001), 24, + anon_sym_DOT, 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, @@ -529624,7 +526348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4904), 31, + ACTIONS(5003), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529656,17 +526380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48769] = 3, + [48873] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 24, + ACTIONS(4251), 24, + anon_sym_DOT, 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, @@ -529685,7 +526409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4944), 31, + ACTIONS(4253), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529717,17 +526441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48833] = 3, + [48937] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 24, + ACTIONS(4635), 24, + anon_sym_DOT, 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, @@ -529746,7 +526470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4908), 31, + ACTIONS(4637), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529778,83 +526502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [49001] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5137), 24, 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(3282), 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, - [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_STAR, @@ -529873,7 +526531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5173), 31, + ACTIONS(5139), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529905,17 +526563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49035] = 3, + [49065] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4467), 24, + ACTIONS(5005), 24, + anon_sym_DOT, 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, @@ -529934,7 +526592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4469), 31, + ACTIONS(5007), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -529966,86 +526624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49099] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - 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(4750), 32, - anon_sym_COLON, + [49129] = 8, + ACTIONS(5500), 1, 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, - [49163] = 8, - ACTIONS(5578), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8432), 1, + ACTIONS(6168), 1, anon_sym_COLON, - STATE(4634), 1, + STATE(4688), 1, sym_type_constraints, - STATE(4846), 1, + STATE(4714), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 21, + ACTIONS(3268), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -530063,7 +526660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 29, + ACTIONS(3272), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -530093,29 +526690,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [49203] = 6, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(8413), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 21, + ACTIONS(5011), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4994), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -530123,114 +526721,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(3290), 29, + ACTIONS(4996), 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, - [49311] = 3, + [49273] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 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(4754), 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, - [49375] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(123), 24, + ACTIONS(3998), 24, + anon_sym_DOT, 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, @@ -530249,7 +526783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(121), 31, + ACTIONS(4000), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530281,28 +526815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49439] = 7, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8329), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4824), 1, - sym_function_body, + [49337] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 22, + ACTIONS(4165), 24, + anon_sym_DOT, 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, @@ -530310,53 +526837,56 @@ 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(4297), 29, + ACTIONS(4167), 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, - [49511] = 3, + [49401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4774), 24, + ACTIONS(5017), 24, + anon_sym_DOT, 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, @@ -530375,7 +526905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4776), 31, + ACTIONS(5019), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530407,29 +526937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [49465] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 21, + ACTIONS(4665), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -530437,53 +526959,56 @@ 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(4218), 29, + ACTIONS(4667), 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, - [49649] = 3, + [49529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 24, + ACTIONS(1802), 24, + anon_sym_DOT, 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, @@ -530502,7 +527027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 31, + ACTIONS(1804), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530534,17 +527059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49713] = 3, + [49593] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4884), 24, + ACTIONS(5109), 24, + anon_sym_DOT, 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, @@ -530563,7 +527088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4886), 31, + ACTIONS(5111), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530595,84 +527120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49777] = 3, + [49657] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4579), 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(4577), 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, - [49841] = 7, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8261), 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(4183), 22, + ACTIONS(3422), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -530691,13 +527149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 29, + ACTIONS(3424), 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, @@ -530721,17 +527181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49913] = 3, + [49721] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1732), 24, + ACTIONS(4385), 24, + anon_sym_DOT, 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, @@ -530750,7 +527210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1734), 31, + ACTIONS(4387), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530782,17 +527242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49977] = 3, + [49785] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4954), 24, + ACTIONS(5023), 24, + anon_sym_DOT, 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, @@ -530811,7 +527271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4956), 31, + ACTIONS(5025), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -530843,78 +527303,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50041] = 3, + [49849] = 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, + ACTIONS(4579), 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(4577), 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(4323), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [49913] = 7, + ACTIONS(8189), 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, - [50105] = 3, + ACTIONS(8262), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5252), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4950), 24, + ACTIONS(4385), 22, + anon_sym_DOT, 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, @@ -530933,15 +527399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4952), 31, + ACTIONS(4387), 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, @@ -530965,17 +527429,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50169] = 3, + [49985] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5077), 24, + ACTIONS(4521), 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(4519), 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, + [50049] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5013), 24, + anon_sym_DOT, 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, @@ -530994,7 +527519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5079), 31, + ACTIONS(5015), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531026,17 +527551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50233] = 3, + [50113] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4359), 24, + ACTIONS(4822), 24, + anon_sym_DOT, 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, @@ -531055,7 +527580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4361), 31, + ACTIONS(4824), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531087,28 +527612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50297] = 7, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8329), 1, - anon_sym_EQ, - STATE(4730), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + [50177] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 22, + ACTIONS(4403), 24, + anon_sym_DOT, 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, @@ -531116,53 +527634,56 @@ 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(4162), 29, + ACTIONS(4405), 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, - [50369] = 3, + [50241] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4934), 24, + ACTIONS(4241), 24, + anon_sym_DOT, 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, @@ -531181,7 +527702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4936), 31, + ACTIONS(4243), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531213,17 +527734,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50433] = 3, + [50305] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4842), 24, + ACTIONS(4455), 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(4453), 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, + [50369] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4794), 24, + anon_sym_DOT, 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, @@ -531242,7 +527824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4844), 31, + ACTIONS(4796), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531274,17 +527856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50497] = 3, + [50433] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 24, + ACTIONS(4984), 24, + anon_sym_DOT, 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, @@ -531303,7 +527885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 31, + ACTIONS(4986), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531335,17 +527917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50561] = 3, + [50497] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 24, + ACTIONS(5151), 24, + anon_sym_DOT, 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, @@ -531364,7 +527946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4724), 31, + ACTIONS(5153), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531396,78 +527978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50625] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4553), 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(4551), 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, - [50689] = 3, + [50561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4834), 24, + ACTIONS(1616), 24, + anon_sym_DOT, 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, @@ -531486,7 +528007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4836), 31, + ACTIONS(1614), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531518,21 +528039,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50753] = 3, + [50625] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 24, + ACTIONS(4255), 22, + anon_sym_DOT, 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, @@ -531540,117 +528068,115 @@ 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(5161), 31, - sym__automatic_semicolon, + ACTIONS(4257), 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, - [50817] = 3, + [50697] = 4, + ACTIONS(8436), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(5005), 23, + anon_sym_DOT, + 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(4722), 30, - anon_sym_object, - anon_sym_fun, + anon_sym_GT, + anon_sym_where, 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, - [50881] = 3, + ACTIONS(5007), 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, + [50763] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 24, + ACTIONS(5029), 24, + anon_sym_DOT, 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, @@ -531669,7 +528195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5181), 31, + ACTIONS(5031), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531701,17 +528227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50945] = 3, + [50827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4838), 24, + ACTIONS(4862), 24, + anon_sym_DOT, 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, @@ -531730,7 +528256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4840), 31, + ACTIONS(4864), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531762,17 +528288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51009] = 3, + [50891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5117), 24, + ACTIONS(5125), 24, + anon_sym_DOT, 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, @@ -531791,7 +528317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5119), 31, + ACTIONS(5127), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531823,17 +528349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51073] = 3, + [50955] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5121), 24, + ACTIONS(5117), 24, + anon_sym_DOT, 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, @@ -531852,7 +528378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5123), 31, + ACTIONS(5119), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -531884,83 +528410,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51137] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, + [51019] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8436), 1, + ACTIONS(8438), 1, anon_sym_COLON, - STATE(4676), 1, - sym_type_constraints, - STATE(4891), 1, + STATE(5362), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4423), 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(4421), 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(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, - 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, - [51211] = 3, + [51089] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 24, + ACTIONS(5121), 24, + anon_sym_DOT, 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, @@ -531979,7 +528503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 31, + ACTIONS(5123), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -532011,22 +528535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51275] = 6, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(8438), 1, - anon_sym_COLON, - STATE(5093), 1, - sym_class_body, + [51153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 23, + ACTIONS(4379), 24, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -532045,13 +528564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 29, + ACTIONS(4381), 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, @@ -532075,21 +528596,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [51217] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 22, + ACTIONS(4575), 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,7 +528626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4652), 30, + ACTIONS(4573), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532137,33 +528657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51412] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_COLON, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5532), 1, - sym_type_constraints, + [51281] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 21, + ACTIONS(4216), 24, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -532171,48 +528679,116 @@ 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(4149), 26, + ACTIONS(4218), 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, - [51489] = 5, - ACTIONS(5780), 1, + [51345] = 5, + ACTIONS(8444), 1, + sym__automatic_semicolon, + STATE(5433), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8442), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5391), 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(8440), 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, + [51412] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5378), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 22, + ACTIONS(4377), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532235,7 +528811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3278), 30, + ACTIONS(4375), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532266,15 +528842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51556] = 5, - ACTIONS(5758), 1, + [51479] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5391), 1, - sym_enum_class_body, + STATE(5331), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 22, + ACTIONS(4243), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532297,7 +528873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3278), 30, + ACTIONS(4241), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532328,15 +528904,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51623] = 5, - ACTIONS(5780), 1, + [51546] = 5, + ACTIONS(8446), 1, + anon_sym_by, + STATE(4744), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4462), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4464), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(5378), 1, + 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, + [51613] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5323), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 22, + ACTIONS(4726), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532359,7 +528997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4327), 30, + ACTIONS(4724), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532390,15 +529028,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51690] = 5, - ACTIONS(5758), 1, + [51680] = 6, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(8448), 1, + anon_sym_COLON, + STATE(4806), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4423), 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, + [51749] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5358), 1, - sym_enum_class_body, + STATE(5326), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 22, + ACTIONS(4493), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532421,7 +529122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4216), 30, + ACTIONS(4491), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532452,19 +529153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51757] = 5, - ACTIONS(8448), 1, - sym__automatic_semicolon, - STATE(5469), 1, - sym__semi, + [51816] = 5, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5389), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8446), 22, + ACTIONS(3272), 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, @@ -532483,7 +529184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8444), 30, + ACTIONS(3268), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532514,84 +529215,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [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, - 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, - 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, + [51883] = 6, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8452), 1, + ACTIONS(8450), 1, anon_sym_COLON, - STATE(4774), 1, + STATE(4832), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 22, + ACTIONS(4433), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -532609,7 +529248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 29, + ACTIONS(4435), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -532639,19 +529278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51960] = 5, - ACTIONS(8458), 1, - sym__automatic_semicolon, - STATE(5466), 1, - sym__semi, + [51952] = 5, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5334), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8456), 22, + ACTIONS(4413), 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, @@ -532670,7 +529309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8454), 30, + ACTIONS(4411), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532701,269 +529340,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52027] = 4, - ACTIONS(6767), 1, - anon_sym_LPAREN, + [52019] = 5, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5331), 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(4284), 29, - sym_safe_nav, + ACTIONS(4243), 22, + sym__automatic_semicolon, + sym__string_start, 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_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, - [52092] = 4, - ACTIONS(8460), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4892), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4241), 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(4894), 29, - sym_safe_nav, + [52086] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5382), 1, + sym_class_body, + 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_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_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, - [52157] = 4, - ACTIONS(8462), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4874), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3276), 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(4876), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [52153] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, 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, - [52222] = 4, - ACTIONS(8464), 1, - anon_sym_else, + ACTIONS(8452), 1, + anon_sym_COLON, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5527), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 23, + ACTIONS(4129), 21, + anon_sym_DOT, 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(4820), 30, + ACTIONS(4131), 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, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [52287] = 5, - ACTIONS(8464), 1, - anon_sym_else, - ACTIONS(8466), 1, - anon_sym_SEMI, + [52230] = 5, + ACTIONS(8456), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 23, + ACTIONS(4292), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4030), 23, + anon_sym_COLON, + anon_sym_DOT, 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, @@ -532977,14 +529564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 29, + ACTIONS(4035), 28, 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_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -533007,18 +529593,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52354] = 4, - ACTIONS(8468), 1, + [52297] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(7358), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 24, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4289), 23, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -533038,7 +529631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 29, + ACTIONS(4292), 24, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -533052,11 +529645,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, @@ -533068,149 +529656,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52419] = 4, - ACTIONS(8470), 1, - anon_sym_LPAREN, + [52366] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5339), 1, + sym_class_body, 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_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(4265), 29, - sym_safe_nav, + ACTIONS(4381), 22, + sym__automatic_semicolon, + sym__string_start, 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_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, - [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, + ACTIONS(4379), 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(4284), 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, - 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, - [52553] = 6, - ACTIONS(4004), 1, + [52433] = 6, + ACTIONS(4030), 1, anon_sym_EQ, - ACTIONS(7349), 1, + ACTIONS(7354), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 5, + ACTIONS(4035), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - ACTIONS(4259), 23, + ACTIONS(4275), 23, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -533230,7 +529756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 24, + ACTIONS(4278), 24, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -533255,143 +529781,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52622] = 4, - ACTIONS(6763), 1, - anon_sym_LPAREN, + [52502] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5395), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4259), 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(4262), 29, - sym_safe_nav, + ACTIONS(3296), 22, + sym__automatic_semicolon, + sym__string_start, 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_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, - [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(4183), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(3292), 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, - 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, - [52764] = 5, - ACTIONS(5758), 1, + [52569] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5369), 1, + STATE(5399), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4569), 22, + ACTIONS(4637), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533414,7 +529874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4567), 30, + ACTIONS(4635), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533445,15 +529905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52831] = 5, - ACTIONS(5758), 1, + [52636] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5381), 1, - sym_enum_class_body, + STATE(5367), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4483), 22, + ACTIONS(4623), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533476,7 +529936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4481), 30, + ACTIONS(4621), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533507,19 +529967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52898] = 5, - ACTIONS(5780), 1, - anon_sym_LBRACE, - STATE(5397), 1, - sym_class_body, + [52703] = 5, + ACTIONS(8463), 1, + sym__automatic_semicolon, + STATE(5429), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 22, - sym__automatic_semicolon, + ACTIONS(8461), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -533538,7 +529998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4652), 30, + ACTIONS(8459), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533569,50 +530029,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52965] = 6, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8474), 1, - anon_sym_COLON, - STATE(4749), 1, - sym_class_body, + [52770] = 4, + ACTIONS(8465), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 22, + ACTIONS(4974), 23, + anon_sym_DOT, 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(4351), 29, + ACTIONS(4976), 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, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [52835] = 5, + ACTIONS(8467), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4278), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4030), 23, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + 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(4035), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, @@ -533620,27 +530136,31 @@ 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, - [53034] = 5, - ACTIONS(5780), 1, + [52902] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5419), 1, + STATE(5334), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4557), 22, + ACTIONS(4413), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533663,7 +530183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4555), 30, + ACTIONS(4411), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533694,31 +530214,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53101] = 10, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - ACTIONS(8476), 1, - anon_sym_COLON, - STATE(4711), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5527), 1, - sym_type_constraints, + [52969] = 5, + ACTIONS(8465), 1, + anon_sym_else, + ACTIONS(8470), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 21, + ACTIONS(4974), 23, + anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + 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(4976), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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_BANG_BANG, + sym__backtick_identifier, + [53036] = 4, + ACTIONS(6704), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4289), 24, anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -533728,234 +530300,312 @@ 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(4175), 26, + ACTIONS(4292), 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, - 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, - [53178] = 5, - ACTIONS(5758), 1, + [53101] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5399), 1, - sym_enum_class_body, + ACTIONS(8454), 1, + anon_sym_EQ, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5524), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4178), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4180), 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_return_AT, - anon_sym_continue_AT, - 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(4467), 30, - anon_sym_object, - anon_sym_fun, + [53178] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + ACTIONS(8474), 1, + anon_sym_COLON, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5488), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4165), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [53245] = 5, - ACTIONS(5780), 1, - anon_sym_LBRACE, - STATE(5410), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4361), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4167), 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_return_AT, - anon_sym_continue_AT, - 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(4359), 30, - anon_sym_object, - anon_sym_fun, + [53255] = 4, + ACTIONS(6708), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4275), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, - [53312] = 5, - ACTIONS(5780), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4218), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4278), 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(4216), 30, - anon_sym_object, - anon_sym_fun, + [53320] = 8, + ACTIONS(5009), 1, + anon_sym_EQ, + ACTIONS(8413), 1, + anon_sym_COLON_COLON, + ACTIONS(8476), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5011), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4994), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [53379] = 5, - ACTIONS(5758), 1, + ACTIONS(4996), 23, + sym__automatic_semicolon, + sym_safe_nav, + 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [53393] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5353), 1, + STATE(5421), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 22, + ACTIONS(4509), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533978,7 +530628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3286), 30, + ACTIONS(4507), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534009,15 +530659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53446] = 5, - ACTIONS(5780), 1, + [53460] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5356), 1, + STATE(5407), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4549), 22, + ACTIONS(4531), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534040,7 +530690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4547), 30, + ACTIONS(4529), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534071,15 +530721,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53513] = 5, - ACTIONS(5780), 1, + [53527] = 10, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(5388), 1, - sym_class_body, + ACTIONS(8454), 1, + anon_sym_EQ, + ACTIONS(8478), 1, + anon_sym_COLON, + STATE(4842), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5491), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 22, + ACTIONS(4153), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4155), 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, + [53604] = 5, + ACTIONS(5768), 1, + anon_sym_LBRACE, + STATE(5386), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534102,7 +530819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4355), 30, + ACTIONS(4228), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534133,15 +530850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53580] = 5, - ACTIONS(5780), 1, + [53671] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5361), 1, - sym_class_body, + STATE(5395), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 22, + ACTIONS(3296), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534164,7 +530881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 30, + ACTIONS(3292), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534195,15 +530912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53647] = 5, - ACTIONS(5758), 1, + [53738] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5363), 1, - sym_enum_class_body, + STATE(5418), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 22, + ACTIONS(4319), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534226,7 +530943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4463), 30, + ACTIONS(4317), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534257,15 +530974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53714] = 5, - ACTIONS(5780), 1, + [53805] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5316), 1, - sym_class_body, + STATE(5407), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 22, + ACTIONS(4531), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534288,7 +531005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3270), 30, + ACTIONS(4529), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534319,29 +531036,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53781] = 10, - ACTIONS(5776), 1, + [53872] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8478), 1, - anon_sym_COLON, ACTIONS(8480), 1, + anon_sym_COLON, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5220), 1, + STATE(5112), 1, sym_function_body, - STATE(5461), 1, + STATE(5450), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, + ACTIONS(4194), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -534358,7 +531075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 27, + ACTIONS(4196), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534386,32 +531103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53858] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - ACTIONS(8482), 1, - anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5240), 1, - sym_function_body, - STATE(5464), 1, - sym_type_constraints, + [53949] = 4, + ACTIONS(8484), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 20, + ACTIONS(4283), 24, + anon_sym_DOT, 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, @@ -534419,67 +531127,131 @@ 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(4162), 27, - sym__automatic_semicolon, + ACTIONS(4281), 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, - 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, - [53935] = 10, - ACTIONS(5582), 1, + [54014] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5374), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4655), 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(4653), 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, + [54081] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8482), 1, anon_sym_EQ, - ACTIONS(8484), 1, + ACTIONS(8486), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(5094), 1, sym__block, - STATE(4871), 1, + STATE(5235), 1, sym_function_body, - STATE(5482), 1, + STATE(5457), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 21, + ACTIONS(4153), 20, + anon_sym_DOT, 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, @@ -534493,13 +531265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 26, + ACTIONS(4155), 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, @@ -534520,26 +531293,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54012] = 5, - ACTIONS(8486), 1, + [54158] = 4, + ACTIONS(8488), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4004), 23, - anon_sym_COLON, + ACTIONS(4297), 24, + anon_sym_DOT, 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, @@ -534553,13 +531324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4009), 28, + ACTIONS(4295), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -534582,32 +531354,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54079] = 10, - ACTIONS(5776), 1, + [54223] = 10, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8454), 1, anon_sym_EQ, - ACTIONS(8489), 1, + ACTIONS(8490), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5178), 1, + STATE(4858), 1, sym_function_body, - STATE(5470), 1, + STATE(4879), 1, + sym__block, + STATE(5532), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 20, + ACTIONS(4194), 21, + anon_sym_DOT, 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, @@ -534621,14 +531394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 27, - sym__automatic_semicolon, + ACTIONS(4196), 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, @@ -534649,26 +531421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54156] = 5, - ACTIONS(8491), 1, + [54300] = 4, + ACTIONS(8492), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4004), 23, - anon_sym_COLON, + ACTIONS(5071), 24, + anon_sym_DOT, 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, @@ -534682,13 +531452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4009), 28, + ACTIONS(5073), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -534711,34 +531482,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54223] = 8, - ACTIONS(5055), 1, - anon_sym_EQ, - ACTIONS(8417), 1, - anon_sym_COLON_COLON, + [54365] = 4, ACTIONS(8494), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(5047), 24, + anon_sym_DOT, 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, @@ -534752,19 +531513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 23, - sym__automatic_semicolon, + ACTIONS(5049), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -534776,15 +531543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54296] = 5, - ACTIONS(5758), 1, + [54430] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5410), 1, + STATE(5378), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 22, + ACTIONS(4377), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534807,7 +531574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4359), 30, + ACTIONS(4375), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534838,29 +531605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54363] = 10, - ACTIONS(5776), 1, + [54497] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8482), 1, anon_sym_EQ, ACTIONS(8496), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5141), 1, + STATE(5222), 1, sym_function_body, - STATE(5478), 1, + STATE(5458), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 20, + ACTIONS(4165), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -534877,7 +531644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 27, + ACTIONS(4167), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -534905,33 +531672,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54440] = 10, - ACTIONS(5582), 1, + [54574] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8482), 1, anon_sym_EQ, ACTIONS(8498), 1, anon_sym_COLON, - STATE(4730), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, - STATE(5533), 1, + STATE(5101), 1, + sym_function_body, + STATE(5477), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 21, + ACTIONS(4129), 20, + anon_sym_DOT, 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, @@ -534945,13 +531711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 26, + ACTIONS(4131), 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, @@ -534972,15 +531739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54517] = 5, - ACTIONS(5780), 1, + [54651] = 5, + ACTIONS(5768), 1, anon_sym_LBRACE, - STATE(5413), 1, - sym_class_body, + STATE(5390), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 22, + ACTIONS(4409), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535003,7 +531770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4644), 30, + ACTIONS(4407), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535034,29 +531801,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54584] = 10, - ACTIONS(5776), 1, + [54718] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8482), 1, anon_sym_EQ, ACTIONS(8500), 1, anon_sym_COLON, - STATE(5079), 1, - sym_function_body, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5426), 1, + STATE(5119), 1, + sym_function_body, + STATE(5470), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 20, + ACTIONS(4178), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -535073,7 +531840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4175), 27, + ACTIONS(4180), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -535101,81 +531868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54661] = 5, - ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(5415), 1, - sym_enum_class_body, + [54795] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 22, + ACTIONS(5119), 23, 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, - [54728] = 5, - ACTIONS(5780), 1, anon_sym_LBRACE, - STATE(5363), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4465), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -535194,7 +531896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4463), 30, + ACTIONS(5117), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535225,11 +531927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54795] = 3, + [54857] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 23, + ACTIONS(5015), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535253,7 +531955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4327), 30, + ACTIONS(5013), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535284,11 +531986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54857] = 3, + [54919] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4964), 23, + ACTIONS(3272), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535312,7 +532014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4962), 30, + ACTIONS(3268), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535343,93 +532045,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54919] = 6, - ACTIONS(7009), 1, + [54981] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8502), 1, + anon_sym_COLON, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8508), 1, anon_sym_LPAREN, + ACTIONS(8510), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_where, + STATE(5497), 1, + sym_type_parameters, + STATE(8367), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8698), 1, + sym_type_constraints, + STATE(9381), 1, + sym_enum_class_body, + STATE(9836), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4287), 4, + ACTIONS(3206), 2, 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, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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, - 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(8442), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4824), 1, - sym_function_body, - STATE(5488), 1, - sym_type_constraints, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5520), 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, + [55087] = 4, + ACTIONS(8514), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 21, + ACTIONS(4297), 23, + anon_sym_DOT, 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, @@ -535437,122 +532149,67 @@ 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(4297), 26, + ACTIONS(4295), 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, - [55061] = 9, - ACTIONS(5582), 1, + [55151] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(4775), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, - STATE(5534), 1, + STATE(5112), 1, + sym_function_body, + STATE(5450), 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, + ACTIONS(4194), 20, 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, - [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(4633), 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, @@ -535566,18 +532223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 29, + ACTIONS(4196), 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_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -535596,27 +532251,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55201] = 9, - ACTIONS(5582), 1, + [55225] = 9, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(4730), 1, + STATE(4858), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(5533), 1, + STATE(5532), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 21, + ACTIONS(4194), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -535634,7 +532289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 26, + ACTIONS(4196), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -535661,11 +532316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [55275] = 3, + [55299] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 23, + ACTIONS(5169), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535689,7 +532344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3270), 30, + ACTIONS(5167), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535720,360 +532375,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55337] = 4, - ACTIONS(8450), 1, - anon_sym_by, + [55361] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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, + ACTIONS(5165), 23, + 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, - [55401] = 9, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - STATE(5532), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4147), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5163), 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(4149), 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, - [55475] = 6, - ACTIONS(4004), 1, - anon_sym_EQ, - ACTIONS(7424), 1, - anon_sym_LPAREN, + [55423] = 3, 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), 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(4284), 24, + ACTIONS(5217), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, 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_LPAREN, + anon_sym_STAR, 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, + anon_sym_return_AT, + anon_sym_continue_AT, + 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, - [55543] = 8, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - ACTIONS(8505), 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(4229), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(5215), 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__alpha_identifier, - ACTIONS(4231), 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, - [55615] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - 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(9291), 1, - sym_enum_class_body, - STATE(9757), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3248), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - 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_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [55485] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4655), 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(4653), 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(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, - [55721] = 6, - ACTIONS(4004), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [55547] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, anon_sym_EQ, - ACTIONS(7418), 1, - anon_sym_LPAREN, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, + STATE(5461), 1, + sym_type_constraints, 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(4259), 22, + ACTIONS(4251), 20, + anon_sym_DOT, 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, @@ -536082,21 +532583,22 @@ 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(4262), 24, + ACTIONS(4253), 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, @@ -536109,29 +532611,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, - [55789] = 3, + [55621] = 4, + ACTIONS(6832), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5147), 23, - sym__automatic_semicolon, + ACTIONS(4035), 21, 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, @@ -536142,7 +532645,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5145), 30, + ACTIONS(4030), 31, + anon_sym_DOT, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536150,20 +532655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, + anon_sym_for, + anon_sym_while, + anon_sym_do, 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, @@ -536173,100 +532677,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55851] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8509), 1, - anon_sym_constructor, - ACTIONS(8513), 1, - anon_sym_LPAREN, - ACTIONS(8515), 1, - anon_sym_LT, - ACTIONS(8517), 1, + [55685] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8519), 1, - anon_sym_COLON, - ACTIONS(8521), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(5492), 1, - sym_type_parameters, - STATE(8376), 1, - sym_primary_constructor, - STATE(8563), 1, - sym__class_parameters, - STATE(8674), 1, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, + STATE(5477), 1, sym_type_constraints, - STATE(9272), 1, - sym_class_body, - STATE(9757), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - 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, + ACTIONS(4129), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(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, - [55957] = 4, - ACTIONS(8523), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4131), 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, + [55759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 22, + ACTIONS(5209), 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, @@ -536283,7 +532770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4289), 30, + ACTIONS(5207), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536314,19 +532801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56021] = 4, - ACTIONS(8525), 1, - anon_sym_LPAREN, + [55821] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4265), 22, + ACTIONS(4413), 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, @@ -536343,7 +532829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4267), 30, + ACTIONS(4411), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536374,26 +532860,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56085] = 8, - ACTIONS(8223), 1, + [55883] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - ACTIONS(8527), 1, + ACTIONS(8516), 1, anon_sym_COLON, - STATE(5076), 1, - sym_function_body, - STATE(5091), 1, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, sym__block, + STATE(5112), 1, + sym_function_body, + STATE(5553), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 21, + ACTIONS(4194), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -536410,14 +532899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 27, + ACTIONS(4196), 26, 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, @@ -536438,11 +532926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56157] = 3, + [55959] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 23, + ACTIONS(5161), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536466,7 +532954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3344), 30, + ACTIONS(5159), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536497,11 +532985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56219] = 3, + [56021] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 23, + ACTIONS(4377), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536525,7 +533013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4850), 30, + ACTIONS(4375), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536556,11 +533044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56281] = 3, + [56083] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 23, + ACTIONS(5157), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536584,7 +533072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5199), 30, + ACTIONS(5155), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536615,150 +533103,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56343] = 8, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - ACTIONS(8529), 1, - anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5163), 1, - sym_function_body, + [56145] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 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(4277), 27, + ACTIONS(4131), 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, - [56415] = 5, - ACTIONS(8531), 1, - anon_sym_SEMI, - ACTIONS(8533), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4818), 22, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4129), 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(4820), 29, - sym__automatic_semicolon, - sym_safe_nav, - 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_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - 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, - [56481] = 5, - ACTIONS(8535), 1, - anon_sym_LT, - STATE(5484), 1, - sym_type_arguments, + [56207] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 20, + ACTIONS(5149), 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, @@ -536769,29 +533190,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4128), 31, - anon_sym_val, + ACTIONS(5147), 30, 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_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, @@ -536801,11 +533221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56547] = 3, + [56269] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5155), 23, + ACTIONS(5145), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536829,7 +533249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5153), 30, + ACTIONS(5143), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536860,11 +533280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56609] = 3, + [56331] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5151), 23, + ACTIONS(4493), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536888,7 +533308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5149), 30, + ACTIONS(4491), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536919,22 +533339,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56671] = 4, - ACTIONS(8533), 1, + [56393] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + ACTIONS(8520), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, + STATE(5555), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4129), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4131), 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, + [56469] = 4, + ACTIONS(8522), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 22, + ACTIONS(4283), 23, + anon_sym_DOT, 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, @@ -536948,14 +533435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 30, + ACTIONS(4281), 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, sym_label, anon_sym_DOT_DOT, @@ -536979,144 +533465,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56735] = 3, + [56533] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + ACTIONS(8524), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, + STATE(5557), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 23, + ACTIONS(4178), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4180), 26, 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_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_return_AT, - anon_sym_continue_AT, - 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(3278), 30, - anon_sym_object, - anon_sym_fun, + [56609] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5523), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4303), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [56797] = 7, - ACTIONS(8539), 1, + ACTIONS(4305), 26, + sym_safe_nav, 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_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, - anon_sym_return_AT, - anon_sym_continue_AT, - 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(8537), 28, - anon_sym_object, - anon_sym_fun, + [56683] = 10, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + ACTIONS(8526), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5222), 1, + sym_function_body, + STATE(5558), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4165), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [56867] = 3, + ACTIONS(4167), 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, + [56759] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8508), 1, + anon_sym_LPAREN, + ACTIONS(8510), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8528), 1, + anon_sym_COLON, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(5504), 1, + sym_type_parameters, + STATE(8372), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8729), 1, + sym_type_constraints, + STATE(9381), 1, + sym_class_body, + STATE(9836), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3206), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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(5520), 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, + [56865] = 6, + ACTIONS(7014), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 23, + ACTIONS(4297), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4295), 4, sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4292), 18, 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, @@ -537129,7 +533777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4160), 30, + ACTIONS(4289), 27, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537137,17 +533785,14 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -537160,11 +533805,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56929] = 3, + [56933] = 6, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(7382), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 23, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4275), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4278), 24, + 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + 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, + [57001] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1736), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537188,7 +533895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1802), 30, + ACTIONS(1734), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537219,22 +533926,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56991] = 4, - ACTIONS(8547), 1, - anon_sym_LPAREN, + [57063] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, + STATE(5525), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 23, + ACTIONS(4251), 21, + anon_sym_DOT, 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, @@ -537242,59 +533958,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(4894), 29, - sym__automatic_semicolon, + ACTIONS(4253), 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, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [57055] = 3, + [57137] = 6, + ACTIONS(7018), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 23, + ACTIONS(4283), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4281), 4, sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4278), 18, 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, @@ -537307,7 +534025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1796), 30, + ACTIONS(4275), 27, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537315,17 +534033,14 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -537338,31 +534053,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57117] = 9, - ACTIONS(5582), 1, + [57205] = 10, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8104), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4800), 1, + ACTIONS(8532), 1, + anon_sym_COLON, + STATE(5094), 1, sym__block, - STATE(5508), 1, + STATE(5235), 1, + sym_function_body, + STATE(5562), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, + ACTIONS(4153), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + 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(4155), 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, + [57281] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, + STATE(5470), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4178), 20, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -537376,13 +534156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4180), 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, @@ -537403,11 +534184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57191] = 3, + [57355] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3115), 23, + ACTIONS(3340), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537431,7 +534212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3113), 30, + ACTIONS(3338), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537462,18 +534243,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57253] = 4, - ACTIONS(8549), 1, + [57417] = 4, + ACTIONS(8534), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 23, - anon_sym_as, + ACTIONS(4281), 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(4283), 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, + [57481] = 6, + ACTIONS(4030), 1, anon_sym_EQ, + ACTIONS(7386), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4289), 22, + anon_sym_DOT, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -537492,7 +534340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 29, + ACTIONS(4292), 24, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537506,11 +534354,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, @@ -537522,11 +534365,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [57317] = 3, + [57549] = 4, + ACTIONS(8446), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4462), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4464), 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, + 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, + [57613] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 23, + ACTIONS(4180), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537550,7 +534453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4321), 30, + ACTIONS(4178), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537581,19 +534484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57379] = 4, - ACTIONS(8551), 1, - anon_sym_LPAREN, + [57675] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 22, + 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, @@ -537610,7 +534512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4874), 30, + ACTIONS(1814), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537641,71 +534543,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57443] = 4, - ACTIONS(8553), 1, - anon_sym_LPAREN, + [57737] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5527), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 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(4892), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4129), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [57507] = 3, + ACTIONS(4131), 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, + [57811] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5123), 23, + ACTIONS(1810), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537729,7 +534636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5121), 30, + ACTIONS(1808), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537760,11 +534667,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57569] = 3, + [57873] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8508), 1, + anon_sym_LPAREN, + ACTIONS(8510), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8536), 1, + anon_sym_COLON, + STATE(5484), 1, + sym_type_parameters, + STATE(8384), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8708), 1, + sym_type_constraints, + STATE(9259), 1, + sym_enum_class_body, + STATE(9836), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 23, + ACTIONS(3248), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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(5520), 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, + [57979] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5079), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537788,7 +534776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5175), 30, + ACTIONS(5077), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537819,70 +534807,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57631] = 3, + [58041] = 8, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + ACTIONS(8538), 1, + anon_sym_COLON, + STATE(5072), 1, + sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4329), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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_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, - [57693] = 3, + ACTIONS(4331), 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, + [58113] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5119), 23, + ACTIONS(4196), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537906,7 +534899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5117), 30, + ACTIONS(4194), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537937,11 +534930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57755] = 3, + [58175] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4139), 23, + ACTIONS(5135), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537965,7 +534958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4137), 30, + ACTIONS(5133), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537996,11 +534989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57817] = 3, + [58237] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 23, + ACTIONS(121), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538024,7 +535017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4644), 30, + ACTIONS(123), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538055,92 +535048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57879] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8509), 1, - anon_sym_constructor, - ACTIONS(8513), 1, - anon_sym_LPAREN, - ACTIONS(8515), 1, - anon_sym_LT, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(8555), 1, - anon_sym_COLON, - STATE(5520), 1, - sym_type_parameters, - STATE(8389), 1, - sym_primary_constructor, - STATE(8563), 1, - sym__class_parameters, - STATE(8713), 1, - sym_type_constraints, - STATE(9461), 1, - sym_class_body, - STATE(9757), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - 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, - [57985] = 3, + [58299] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 23, + ACTIONS(5139), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538164,7 +535076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4359), 30, + ACTIONS(5137), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538195,11 +535107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58047] = 3, + [58361] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5079), 23, + ACTIONS(5069), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538223,7 +535135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5077), 30, + ACTIONS(5067), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538254,11 +535166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58109] = 3, + [58423] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4976), 23, + ACTIONS(5083), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538282,7 +535194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4974), 30, + ACTIONS(5081), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538313,28 +535225,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58171] = 6, - ACTIONS(7003), 1, - anon_sym_LPAREN, + [58485] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4265), 4, + ACTIONS(3280), 23, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4262), 18, 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, @@ -538347,7 +535253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4259), 27, + ACTIONS(3276), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538355,14 +535261,17 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -538375,24 +535284,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58239] = 4, - ACTIONS(6918), 1, - anon_sym_COLON, + [58547] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 21, + ACTIONS(4305), 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, @@ -538403,29 +535312,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4004), 31, - anon_sym_val, + ACTIONS(4303), 30, 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_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, @@ -538435,11 +535343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58303] = 3, + [58609] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 23, + ACTIONS(4395), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538463,7 +535371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5039), 30, + ACTIONS(4393), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538494,11 +535402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58365] = 3, + [58671] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 23, + ACTIONS(5131), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538522,7 +535430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5085), 30, + ACTIONS(5129), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538553,11 +535461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58427] = 3, + [58733] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4441), 23, + ACTIONS(5107), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538581,7 +535489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4439), 30, + ACTIONS(5105), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538612,142 +535520,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58489] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - 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(4147), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - anon_sym_get, - anon_sym_set, - anon_sym_in, + [58795] = 4, + ACTIONS(8540), 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(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, - 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, - [58563] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8557), 1, - anon_sym_COLON, - 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(4183), 20, + ACTIONS(4974), 22, + anon_sym_DOT, 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(4185), 26, + ACTIONS(4976), 30, 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, - [58639] = 3, + [58859] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 23, + ACTIONS(5099), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538771,7 +535608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3420), 30, + ACTIONS(5097), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538802,71 +535639,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58701] = 4, - STATE(5321), 1, - aux_sym__delegation_specifiers_repeat1, + [58921] = 5, + ACTIONS(8540), 1, + anon_sym_else, + ACTIONS(8542), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 22, + ACTIONS(4974), 22, + anon_sym_DOT, 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(4738), 30, + ACTIONS(4976), 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, - [58765] = 3, + [58987] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5105), 23, + ACTIONS(4531), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -538890,7 +535728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5103), 30, + ACTIONS(4529), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -538921,92 +535759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58827] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - 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, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - 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, - [58933] = 3, + [59049] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5109), 23, + ACTIONS(1804), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539030,7 +535787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5107), 30, + ACTIONS(1802), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539061,18 +535818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58995] = 3, + [59111] = 4, + ACTIONS(8544), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 23, + ACTIONS(4295), 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, @@ -539089,7 +535847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4355), 30, + ACTIONS(4297), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539120,142 +535878,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59057] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5240), 1, - sym_function_body, - STATE(5464), 1, - sym_type_constraints, + [59175] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - sym__alpha_identifier, - ACTIONS(4162), 27, + ACTIONS(5091), 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, - [59131] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8563), 1, - anon_sym_COLON, - 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(4160), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5089), 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(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, - [59207] = 3, + [59237] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4569), 23, + ACTIONS(4319), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539279,7 +535965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4567), 30, + ACTIONS(4317), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539310,11 +535996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59269] = 3, + [59299] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4800), 23, + ACTIONS(4986), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539338,7 +536024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4798), 30, + ACTIONS(4984), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539369,76 +536055,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59331] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5220), 1, - sym_function_body, - STATE(5461), 1, - sym_type_constraints, + [59361] = 7, + ACTIONS(8548), 1, + anon_sym_AT, + ACTIONS(8553), 1, + sym_label, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + STATE(5384), 2, + sym_annotation, + aux_sym__statement_repeat1, + STATE(5541), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8551), 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(8546), 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(4185), 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, - [59405] = 3, + [59431] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 23, + ACTIONS(5103), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539462,7 +536146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4918), 30, + ACTIONS(5101), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539493,11 +536177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59467] = 3, + [59493] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4479), 23, + ACTIONS(4409), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539521,7 +536205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4477), 30, + ACTIONS(4407), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539552,11 +536236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59529] = 3, + [59555] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(3296), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539580,7 +536264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4299), 30, + ACTIONS(3292), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539611,77 +536295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59591] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8565), 1, - anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5178), 1, - sym_function_body, - STATE(5577), 1, - sym_type_constraints, + [59617] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - sym__alpha_identifier, - ACTIONS(4149), 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, - [59667] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4495), 23, + ACTIONS(5045), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539705,7 +536323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 30, + ACTIONS(5043), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539736,76 +536354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59729] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5194), 1, - sym_function_body, - STATE(5457), 1, - sym_type_constraints, + [59679] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - sym__alpha_identifier, - 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, - 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, - [59803] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4886), 23, + ACTIONS(4230), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539829,7 +536382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4884), 30, + ACTIONS(4228), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539860,11 +536413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59865] = 3, + [59741] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 23, + ACTIONS(4509), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -539888,7 +536441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4216), 30, + ACTIONS(4507), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539919,29 +536472,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59927] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, + [59803] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8482), 1, anon_sym_EQ, - ACTIONS(8567), 1, + ACTIONS(8556), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5141), 1, + STATE(5265), 1, sym_function_body, - STATE(5570), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 20, + ACTIONS(4255), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -539958,13 +536508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 26, + ACTIONS(4257), 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, @@ -539985,11 +536536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60003] = 3, + [59875] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 23, + ACTIONS(5173), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540013,7 +536564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1814), 30, + ACTIONS(5171), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540044,11 +536595,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60065] = 3, + [59937] = 8, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + ACTIONS(8558), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5198), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 23, + ACTIONS(4216), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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), 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, + [60009] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540072,7 +536687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1732), 30, + ACTIONS(1790), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540103,142 +536718,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60127] = 10, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8569), 1, - anon_sym_COLON, - STATE(5079), 1, - sym_function_body, - STATE(5091), 1, - sym__block, - STATE(5567), 1, - sym_type_constraints, + [60071] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4173), 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(4175), 26, + ACTIONS(4243), 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, - [60203] = 9, - ACTIONS(5776), 1, - anon_sym_where, - 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, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4299), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(4241), 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(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, - 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, - [60277] = 3, + [60133] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4968), 23, + ACTIONS(5187), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540262,7 +536805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4966), 30, + ACTIONS(5185), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540293,11 +536836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60339] = 3, + [60195] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5101), 23, + ACTIONS(5127), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540321,7 +536864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5099), 30, + ACTIONS(5125), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540352,11 +536895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60401] = 3, + [60257] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4483), 23, + ACTIONS(4405), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540380,7 +536923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4481), 30, + ACTIONS(4403), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540411,11 +536954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60463] = 3, + [60319] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 23, + ACTIONS(5025), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540439,7 +536982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5191), 30, + ACTIONS(5023), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540470,21 +537013,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60525] = 4, - ACTIONS(8571), 1, - anon_sym_LPAREN, + [60381] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, + STATE(5453), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 23, + ACTIONS(4303), 20, + anon_sym_DOT, 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, @@ -540493,59 +537044,56 @@ 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(4287), 29, + ACTIONS(4305), 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, - [60589] = 4, - ACTIONS(8573), 1, - anon_sym_LPAREN, + [60455] = 4, + STATE(5416), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 23, + ACTIONS(4690), 22, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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, @@ -540553,48 +537101,48 @@ 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(4265), 29, - sym__automatic_semicolon, + ACTIONS(4692), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [60653] = 3, + [60519] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 23, + ACTIONS(5041), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540618,7 +537166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3286), 30, + ACTIONS(5039), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540649,11 +537197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60715] = 3, + [60581] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 23, + ACTIONS(3142), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540677,7 +537225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4183), 30, + ACTIONS(3140), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540708,18 +537256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60777] = 3, + [60643] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4900), 23, + ACTIONS(5073), 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, @@ -540736,7 +537285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4898), 30, + ACTIONS(5071), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540767,70 +537316,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60839] = 3, + [60707] = 4, + ACTIONS(8562), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 23, + ACTIONS(5071), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + 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(5073), 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(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, + [60771] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8508), 1, + anon_sym_LPAREN, + ACTIONS(8510), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(8564), 1, + anon_sym_COLON, + STATE(5483), 1, + sym_type_parameters, + STATE(8361), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8789), 1, + sym_type_constraints, + STATE(9188), 1, + sym_class_body, + STATE(9836), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3238), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [60901] = 3, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5520), 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, + [60877] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 23, + ACTIONS(5037), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -540854,7 +537485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1808), 30, + ACTIONS(5035), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -540885,78 +537516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60963] = 4, - ACTIONS(6928), 1, + [60939] = 4, + ACTIONS(6860), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4281), 23, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4289), 23, 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(4284), 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, - [61027] = 4, - ACTIONS(6924), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, @@ -540975,7 +537546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 29, + ACTIONS(4292), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -541005,11 +537576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61091] = 3, + [61003] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 23, + ACTIONS(1824), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541033,7 +537604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4652), 30, + ACTIONS(1822), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541064,188 +537635,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61153] = 3, + [61065] = 4, + ACTIONS(6856), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4275), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, - [61215] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4453), 23, + ACTIONS(4278), 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(4451), 30, - anon_sym_object, - anon_sym_fun, + [61129] = 4, + ACTIONS(8566), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5047), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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, - [61277] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4908), 23, + ACTIONS(5049), 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(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, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [61339] = 3, + [61193] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 23, + ACTIONS(4387), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541269,7 +537783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5171), 30, + ACTIONS(4385), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541300,11 +537814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61401] = 3, + [61255] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 23, + ACTIONS(3424), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541328,7 +537842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4467), 30, + ACTIONS(3422), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541359,70 +537873,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61463] = 3, + [61317] = 9, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4752), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + STATE(5524), 1, + sym_type_constraints, 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_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(1790), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4178), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [61525] = 3, + ACTIONS(4180), 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, + [61391] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(121), 23, + ACTIONS(5221), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541446,7 +537966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(123), 30, + ACTIONS(5219), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541477,11 +537997,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61587] = 3, + [61453] = 5, + ACTIONS(8568), 1, + anon_sym_COMMA, + STATE(5416), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4665), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4667), 29, + 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_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, + [61519] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4776), 23, + ACTIONS(4167), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541505,7 +538086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4774), 30, + ACTIONS(4165), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541536,11 +538117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61649] = 3, + [61581] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5221), 23, + ACTIONS(4381), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541564,7 +538145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5219), 30, + ACTIONS(4379), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541595,11 +538176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61711] = 3, + [61643] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 23, + ACTIONS(4253), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541623,7 +538204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5095), 30, + ACTIONS(4251), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541654,11 +538235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61773] = 3, + [61705] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 23, + ACTIONS(5111), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541682,7 +538263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4147), 30, + ACTIONS(5109), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541713,11 +538294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61835] = 3, + [61767] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5207), 23, + ACTIONS(4637), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541741,7 +538322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5205), 30, + ACTIONS(4635), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541772,11 +538353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61897] = 3, + [61829] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 23, + ACTIONS(5057), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541800,7 +538381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5213), 30, + ACTIONS(5055), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541831,11 +538412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61959] = 3, + [61891] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5211), 23, + ACTIONS(5123), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -541859,7 +538440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5209), 30, + ACTIONS(5121), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541890,24 +538471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62021] = 3, + [61953] = 5, + ACTIONS(8571), 1, + anon_sym_LT, + STATE(5492), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4848), 23, - sym__automatic_semicolon, + ACTIONS(4161), 20, 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, @@ -541918,7 +538500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4846), 30, + ACTIONS(4159), 31, + anon_sym_DOT, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -541926,20 +538510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, + anon_sym_for, + anon_sym_while, + anon_sym_do, 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, @@ -541949,215 +538532,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62083] = 7, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 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(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_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), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, + [62019] = 4, + ACTIONS(8573), 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, - [62152] = 7, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(8480), 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), 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(4309), 27, + ACTIONS(5049), 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, - [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(4216), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(5047), 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(4218), 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, - [62292] = 8, - ACTIONS(5770), 1, + [62083] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(6316), 1, + ACTIONS(8454), 1, + anon_sym_EQ, + ACTIONS(8575), 1, anon_sym_COLON, - STATE(4981), 1, - sym_type_constraints, - STATE(5246), 1, - sym_enum_class_body, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 20, + ACTIONS(4255), 21, + anon_sym_DOT, 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, @@ -542171,14 +538628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 27, - sym__automatic_semicolon, + ACTIONS(4257), 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, @@ -542199,28 +538655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62363] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, + [62154] = 4, ACTIONS(8577), 1, - anon_sym_COLON, - STATE(4999), 1, - sym_type_constraints, - STATE(5231), 1, - sym_enum_class_body, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 20, + ACTIONS(5047), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -542234,16 +538684,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(5049), 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, @@ -542262,67 +538714,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62434] = 23, + [62217] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3206), 1, + anon_sym_while, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8579), 1, + anon_sym_COLON, + ACTIONS(8581), 1, + anon_sym_constructor, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8585), 1, + anon_sym_LPAREN, + ACTIONS(8587), 1, + anon_sym_LT, + ACTIONS(8589), 1, + anon_sym_where, + STATE(5598), 1, + sym_type_parameters, + STATE(8432), 1, + sym_primary_constructor, + STATE(8659), 1, + sym__class_parameters, + STATE(8854), 1, + sym_type_constraints, + STATE(9791), 1, + sym_modifiers, + STATE(9864), 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(5736), 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(5520), 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, + [62322] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8593), 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(8591), 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, + [62383] = 23, ACTIONS(3316), 1, anon_sym_AT, + ACTIONS(5251), 1, + anon_sym_SEMI, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8579), 1, + ACTIONS(8595), 1, anon_sym_EQ, - ACTIONS(8581), 1, + ACTIONS(8597), 1, anon_sym_by, - ACTIONS(8583), 1, + ACTIONS(8599), 1, anon_sym_where, - ACTIONS(8585), 1, - anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(5549), 1, + STATE(5597), 1, sym_type_constraints, - STATE(5648), 1, + STATE(5647), 1, sym_property_delegate, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(1810), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9405), 2, + STATE(9268), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -542340,22 +538930,88 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62535] = 4, - ACTIONS(8603), 1, + [62484] = 5, + ACTIONS(8617), 1, + anon_sym_DOT, + STATE(5440), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 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(4139), 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [62549] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(6278), 1, + anon_sym_COLON, + STATE(4986), 1, + sym_type_constraints, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 22, + ACTIONS(3292), 20, + anon_sym_DOT, 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, @@ -542369,18 +539025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4265), 29, + ACTIONS(3296), 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, @@ -542399,27 +539053,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62598] = 7, - ACTIONS(8223), 1, + [62620] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8461), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5167), 1, - sym_function_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(8459), 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, + [62681] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(6348), 1, + anon_sym_COLON, + STATE(4686), 1, + sym_type_constraints, + STATE(4880), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 21, + ACTIONS(3276), 21, + anon_sym_DOT, 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, @@ -542433,14 +539147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 27, - sym__automatic_semicolon, + ACTIONS(3280), 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, @@ -542461,25 +539174,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62667] = 8, - ACTIONS(8104), 1, + [62752] = 8, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - ACTIONS(8605), 1, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(8619), 1, anon_sym_COLON, - STATE(4763), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(4637), 1, + sym_type_constraints, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 21, + ACTIONS(4317), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -542497,7 +539210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 26, + ACTIONS(4319), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -542524,163 +539237,25 @@ static const uint16_t ts_small_parse_table[] = { 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(4155), 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(4153), 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, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [62803] = 23, - 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(8583), 1, + [62823] = 8, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(8595), 1, - sym_property_modifier, - ACTIONS(8609), 1, - anon_sym_EQ, - STATE(5541), 1, - sym_type_constraints, - STATE(5633), 1, - sym_property_delegate, - 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, - 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, - [62904] = 8, - ACTIONS(8104), 1, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - ACTIONS(8611), 1, + ACTIONS(6354), 1, anon_sym_COLON, - STATE(4800), 1, - sym__block, - STATE(4813), 1, - sym_function_body, + STATE(4645), 1, + sym_type_constraints, + STATE(4798), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 21, + ACTIONS(3292), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -542698,7 +539273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4277), 26, + ACTIONS(3296), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -542725,18 +539300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62975] = 4, - ACTIONS(8613), 1, - anon_sym_LPAREN, + [62894] = 8, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(6336), 1, + anon_sym_COLON, + STATE(4665), 1, + sym_type_constraints, + STATE(4798), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 22, + ACTIONS(3292), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -542754,18 +539336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 29, + ACTIONS(3296), 26, 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_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -542784,162 +539363,92 @@ static const uint16_t ts_small_parse_table[] = { 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, + [62965] = 8, + ACTIONS(5500), 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, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(8621), 1, + anon_sym_COLON, + STATE(4681), 1, sym_type_constraints, - STATE(5634), 1, - sym_property_delegate, - STATE(9322), 1, - sym_modifiers, + STATE(4732), 1, + sym_enum_class_body, 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(8601), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5789), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9311), 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, - [63139] = 5, - ACTIONS(8619), 1, + ACTIONS(4241), 21, anon_sym_DOT, - STATE(5440), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4168), 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(4166), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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, - [63204] = 5, - ACTIONS(8622), 1, + ACTIONS(4243), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(8624), 1, - anon_sym_else, + 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, + [63036] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(6280), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 21, + ACTIONS(3292), 20, + anon_sym_DOT, 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, @@ -542952,18 +539461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 29, + ACTIONS(3296), 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, @@ -542982,17 +539489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63269] = 3, + [63107] = 5, + ACTIONS(8617), 1, + anon_sym_DOT, + STATE(5452), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 21, + ACTIONS(4124), 20, 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, @@ -543008,11 +539518,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4179), 31, + ACTIONS(4122), 30, anon_sym_val, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -543040,20 +539549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63330] = 5, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(5435), 1, - aux_sym_user_type_repeat1, + [63172] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 20, + ACTIONS(4035), 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, @@ -543069,7 +539575,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4193), 30, + ACTIONS(4030), 31, + anon_sym_DOT, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -543100,87 +539607,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63395] = 4, - ACTIONS(8624), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4818), 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_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), 30, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + [63233] = 8, + ACTIONS(5496), 1, 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, - [63458] = 8, - ACTIONS(5776), 1, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, + ACTIONS(8623), 1, anon_sym_COLON, - STATE(5029), 1, + STATE(4635), 1, sym_type_constraints, - STATE(5118), 1, + STATE(4732), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 20, + ACTIONS(4241), 21, + anon_sym_DOT, 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, @@ -543194,14 +539643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 27, - sym__automatic_semicolon, + ACTIONS(4243), 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, @@ -543222,28 +539670,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63529] = 8, - ACTIONS(5770), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + [63304] = 8, + ACTIONS(5500), 1, anon_sym_where, - ACTIONS(6350), 1, + ACTIONS(5504), 1, + anon_sym_LBRACE, + ACTIONS(6328), 1, anon_sym_COLON, - STATE(5049), 1, + STATE(4688), 1, sym_type_constraints, - STATE(5118), 1, + STATE(4714), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 20, + ACTIONS(3268), 21, + anon_sym_DOT, 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, @@ -543257,14 +539706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 27, - sym__automatic_semicolon, + ACTIONS(3272), 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, @@ -543285,25 +539733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63600] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [63375] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8626), 1, - anon_sym_COLON, - STATE(5057), 1, - sym_type_constraints, - STATE(5102), 1, - sym_class_body, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 20, + ACTIONS(4397), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -543320,7 +539767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 27, + ACTIONS(4399), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543348,22 +539795,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63671] = 4, - ACTIONS(8628), 1, - anon_sym_LPAREN, + [63444] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5176), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 22, + ACTIONS(4389), 21, + anon_sym_DOT, 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, @@ -543377,18 +539829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 29, + ACTIONS(4391), 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, @@ -543407,85 +539857,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63734] = 8, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(5598), 1, + [63513] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(6250), 1, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8625), 1, anon_sym_COLON, - STATE(4624), 1, + STATE(5060), 1, sym_type_constraints, - STATE(4759), 1, + STATE(5263), 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, + ACTIONS(4317), 20, 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(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(4892), 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, @@ -543499,18 +539892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4894), 29, + ACTIONS(4319), 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, @@ -543529,27 +539920,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63868] = 7, - ACTIONS(8223), 1, + [63584] = 8, + ACTIONS(5500), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5140), 1, - sym_function_body, + ACTIONS(8627), 1, + anon_sym_COLON, + STATE(4682), 1, + sym_type_constraints, + STATE(4833), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 21, + ACTIONS(4228), 21, + anon_sym_DOT, 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, @@ -543563,14 +539956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 27, - sym__automatic_semicolon, + ACTIONS(4230), 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, @@ -543591,67 +539983,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63937] = 23, + [63655] = 23, 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, + ACTIONS(8597), 1, anon_sym_by, - ACTIONS(8583), 1, + ACTIONS(8599), 1, anon_sym_where, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8632), 1, + ACTIONS(8629), 1, anon_sym_EQ, - STATE(5575), 1, + ACTIONS(8631), 1, + anon_sym_SEMI, + STATE(5545), 1, sym_type_constraints, - STATE(5640), 1, + STATE(5648), 1, sym_property_delegate, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 2, + ACTIONS(3368), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9265), 2, + STATE(9209), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -543669,189 +540061,28 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [64038] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(3226), 1, - sym_property_modifier, - 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(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, - [64143] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - 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, + [63756] = 8, + ACTIONS(5804), 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(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, - [64248] = 8, - ACTIONS(5582), 1, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8650), 1, + ACTIONS(6290), 1, anon_sym_COLON, - STATE(4676), 1, + STATE(5011), 1, sym_type_constraints, - STATE(4891), 1, + STATE(5184), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, + ACTIONS(3276), 20, + anon_sym_DOT, 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, @@ -543865,13 +540096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(3280), 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, @@ -543892,24 +540124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64319] = 7, - ACTIONS(8223), 1, + [63827] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5174), 1, + STATE(5228), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 21, + ACTIONS(4303), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -543926,7 +540158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 27, + ACTIONS(4305), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543954,24 +540186,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64388] = 7, - ACTIONS(8223), 1, + [63896] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5091), 1, + STATE(5094), 1, sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, + ACTIONS(4255), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -543988,7 +540220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 27, + ACTIONS(4257), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544016,17 +540248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64457] = 3, + [63965] = 5, + ACTIONS(8633), 1, + anon_sym_DOT, + STATE(5452), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 21, + ACTIONS(4173), 20, 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, @@ -544042,11 +540277,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4004), 31, + ACTIONS(4171), 30, anon_sym_val, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_this, @@ -544074,29 +540308,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [64518] = 8, - ACTIONS(5578), 1, + [64030] = 7, + ACTIONS(8189), 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(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 21, + ACTIONS(4251), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -544110,13 +540342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 26, + ACTIONS(4253), 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, @@ -544137,29 +540370,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64589] = 8, - ACTIONS(5582), 1, + [64099] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5598), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(6298), 1, - anon_sym_COLON, - STATE(4621), 1, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, + STATE(5552), 1, sym_type_constraints, - STATE(4748), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 21, + ACTIONS(4303), 20, + anon_sym_DOT, 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, @@ -544173,13 +540407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 26, + ACTIONS(4305), 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, @@ -544200,27 +540434,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64660] = 7, - ACTIONS(8223), 1, + [64172] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5194), 1, + ACTIONS(8636), 1, + anon_sym_COLON, + STATE(4789), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 21, + ACTIONS(4216), 21, + anon_sym_DOT, 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, @@ -544234,14 +540470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 27, - sym__automatic_semicolon, + ACTIONS(4218), 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, @@ -544262,25 +540497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64729] = 8, - ACTIONS(5776), 1, + [64243] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(5788), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(6352), 1, + ACTIONS(8638), 1, anon_sym_COLON, - STATE(5030), 1, + STATE(5059), 1, sym_type_constraints, - STATE(5175), 1, - sym_class_body, + STATE(5159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 20, + ACTIONS(4241), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544297,7 +540532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 27, + ACTIONS(4243), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544325,27 +540560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64800] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, + [64314] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5178), 1, + STATE(5222), 1, sym_function_body, - STATE(5577), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 20, + ACTIONS(4165), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544362,13 +540594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 26, + ACTIONS(4167), 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, @@ -544389,24 +540622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64873] = 7, - ACTIONS(8223), 1, + [64383] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5220), 1, + STATE(5119), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4178), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544423,7 +540656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 27, + ACTIONS(4180), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544451,25 +540684,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64942] = 8, - ACTIONS(8104), 1, + [64452] = 23, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5275), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8599), 1, + anon_sym_where, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8640), 1, + anon_sym_EQ, + STATE(5587), 1, + sym_type_constraints, + STATE(5643), 1, + sym_property_delegate, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9386), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [64553] = 8, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8454), 1, anon_sym_EQ, - ACTIONS(8652), 1, + ACTIONS(8642), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(4879), 1, sym__block, - STATE(4802), 1, + STATE(4885), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 21, + ACTIONS(4329), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544487,7 +540798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 26, + ACTIONS(4331), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -544514,85 +540825,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65013] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8446), 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(8444), 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, - [65074] = 9, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8223), 1, + [64624] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8482), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5240), 1, + STATE(5252), 1, sym_function_body, - STATE(5580), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 20, + ACTIONS(4385), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544609,13 +540859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 26, + ACTIONS(4387), 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, @@ -544636,25 +540887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [64693] = 4, + ACTIONS(8644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 21, + ACTIONS(4297), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544672,15 +540916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 26, + ACTIONS(4295), 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, @@ -544699,23 +540946,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65218] = 3, + [64756] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8658), 22, + ACTIONS(4192), 21, 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, @@ -544726,7 +540972,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8656), 30, + ACTIONS(4190), 31, + anon_sym_DOT, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -544734,20 +540982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, + anon_sym_for, + anon_sym_while, + anon_sym_do, 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, @@ -544757,152 +541004,27 @@ static const uint16_t ts_small_parse_table[] = { 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(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_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), 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, - [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(4216), 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(4218), 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, - [65419] = 9, - ACTIONS(5776), 1, + [64817] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5220), 1, + STATE(5119), 1, sym_function_body, - STATE(5592), 1, + STATE(5557), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 20, + ACTIONS(4178), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544919,7 +541041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 26, + ACTIONS(4180), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544946,31 +541068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [64890] = 5, + ACTIONS(8646), 1, + anon_sym_SEMI, + ACTIONS(8648), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 20, + ACTIONS(4974), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -544983,15 +541098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 26, - sym__automatic_semicolon, + ACTIONS(4976), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -545010,107 +541128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65565] = 23, - 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(8581), 1, - anon_sym_by, - ACTIONS(8583), 1, + [64955] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8595), 1, - sym_property_modifier, - 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(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, - [65666] = 8, - ACTIONS(5578), 1, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, - anon_sym_where, - ACTIONS(6300), 1, + ACTIONS(8650), 1, anon_sym_COLON, - STATE(4694), 1, + STATE(5027), 1, sym_type_constraints, - STATE(4786), 1, + STATE(5088), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 21, + ACTIONS(4228), 20, + anon_sym_DOT, 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, @@ -545124,13 +541163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 26, + ACTIONS(4230), 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, @@ -545151,30 +541191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [65026] = 4, + ACTIONS(8648), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 21, + ACTIONS(4974), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -545187,15 +541219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 26, + ACTIONS(4976), 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, @@ -545214,104 +541250,27 @@ static const uint16_t ts_small_parse_table[] = { 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, + [65089] = 9, + ACTIONS(5810), 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(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, - [65913] = 7, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5178), 1, + STATE(5101), 1, sym_function_body, + STATE(5555), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 21, + ACTIONS(4129), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545328,14 +541287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 27, + ACTIONS(4131), 26, 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, @@ -545356,27 +541314,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65982] = 9, - ACTIONS(5776), 1, + [65162] = 9, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8223), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5073), 1, - sym_function_body, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5563), 1, + STATE(5112), 1, + sym_function_body, + STATE(5553), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 20, + ACTIONS(4194), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545393,7 +541351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4196), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545420,25 +541378,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66055] = 8, - ACTIONS(5770), 1, + [65235] = 7, + ACTIONS(8189), 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(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5101), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 20, + ACTIONS(4129), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545455,7 +541412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 27, + ACTIONS(4131), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -545483,76 +541440,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66126] = 25, - ACTIONS(3202), 1, + [65304] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - 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, + ACTIONS(5281), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8599), 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, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8652), 1, + anon_sym_EQ, + STATE(5536), 1, sym_type_constraints, - STATE(9529), 1, + STATE(5645), 1, + sym_property_delegate, + STATE(9212), 1, sym_modifiers, - STATE(9814), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7653), 2, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7661), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7657), 3, + STATE(9198), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7659), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7655), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7651), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7649), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545563,27 +541518,28 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66231] = 7, - ACTIONS(8104), 1, + [65405] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4757), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8654), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5159), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 21, + ACTIONS(4241), 20, + anon_sym_DOT, 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, @@ -545597,13 +541553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 26, + ACTIONS(4243), 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, @@ -545624,23 +541581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [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, + [65476] = 4, + ACTIONS(8656), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4443), 21, + ACTIONS(5071), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545658,15 +541610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4445), 26, + ACTIONS(5073), 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, @@ -545685,276 +541640,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66367] = 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, + [65539] = 4, + ACTIONS(8658), 1, 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(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, - 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, - [66427] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4479), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4812), 22, + ACTIONS(4283), 22, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + 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(4814), 27, + ACTIONS(4281), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [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, - 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, + [65602] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(6276), 1, + anon_sym_COLON, + STATE(5004), 1, + sym_type_constraints, + STATE(5121), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(3268), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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(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, - [66589] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4315), 20, - sym__string_start, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3272), 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(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, + [65673] = 9, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, + STATE(5241), 1, + sym_function_body, + STATE(5550), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, + ACTIONS(4251), 20, + anon_sym_DOT, 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, @@ -545968,13 +541799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4253), 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, @@ -545995,255 +541826,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66717] = 3, + [65746] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8482), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5112), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(4317), 31, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4194), 21, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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_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_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [66777] = 23, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(4196), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8694), 1, - sym_property_modifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(8704), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, 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, + 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, - 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, + [65815] = 25, ACTIONS(3202), 1, anon_sym_AT, + ACTIONS(3206), 1, + anon_sym_while, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8509), 1, + ACTIONS(8581), 1, anon_sym_constructor, - ACTIONS(8513), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - ACTIONS(8517), 1, + ACTIONS(8587), 1, + anon_sym_LT, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, + ACTIONS(8660), 1, anon_sym_COLON, - STATE(8383), 1, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(5538), 1, + sym_type_parameters, + STATE(8453), 1, sym_primary_constructor, - STATE(8563), 1, + STATE(8659), 1, sym__class_parameters, - STATE(8655), 1, + STATE(8944), 1, sym_type_constraints, - STATE(9445), 1, - sym_class_body, - STATE(9757), 1, + STATE(9791), 1, sym_modifiers, + STATE(9864), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(7657), 3, @@ -546272,7 +541957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546283,143 +541968,67 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67077] = 23, - ACTIONS(1792), 1, - anon_sym_while, + [65920] = 23, 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(8718), 1, - anon_sym_where, - ACTIONS(8720), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(7647), 1, anon_sym_set, - 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(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, - [67177] = 23, - 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, + ACTIONS(8597), 1, anon_sym_by, - ACTIONS(8718), 1, + ACTIONS(8599), 1, anon_sym_where, - ACTIONS(8720), 1, - anon_sym_get, - ACTIONS(8722), 1, - anon_sym_set, - ACTIONS(8724), 1, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8664), 1, anon_sym_EQ, - STATE(5609), 1, + ACTIONS(8666), 1, + anon_sym_SEMI, + STATE(5579), 1, sym_type_constraints, - STATE(5668), 1, + STATE(5634), 1, sym_property_delegate, - STATE(9271), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(3340), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9522), 2, + STATE(9405), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -546437,121 +542046,47 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_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(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, - [67377] = 23, + [66021] = 25, ACTIONS(3202), 1, anon_sym_AT, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8509), 1, + ACTIONS(3248), 1, + anon_sym_while, + ACTIONS(8581), 1, anon_sym_constructor, - ACTIONS(8511), 1, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(8513), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - ACTIONS(8517), 1, + ACTIONS(8587), 1, + anon_sym_LT, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(8730), 1, + ACTIONS(8668), 1, anon_sym_COLON, - STATE(8367), 1, + STATE(5560), 1, + sym_type_parameters, + STATE(8447), 1, sym_primary_constructor, - STATE(8563), 1, + STATE(8659), 1, sym__class_parameters, - STATE(8722), 1, + STATE(9003), 1, sym_type_constraints, - STATE(9418), 1, - sym_enum_class_body, - STATE(9757), 1, + STATE(9791), 1, sym_modifiers, + STATE(10015), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(7657), 3, @@ -546580,7 +542115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546591,201 +542126,76 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67477] = 6, - ACTIONS(5788), 1, + [66126] = 25, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3238), 1, + anon_sym_while, + ACTIONS(8581), 1, + anon_sym_constructor, + ACTIONS(8585), 1, + anon_sym_LPAREN, + ACTIONS(8587), 1, + anon_sym_LT, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(8732), 1, + ACTIONS(8670), 1, anon_sym_COLON, - STATE(5172), 1, + STATE(5588), 1, + sym_type_parameters, + STATE(8405), 1, + sym_primary_constructor, + STATE(8659), 1, + sym__class_parameters, + STATE(9033), 1, + sym_type_constraints, + STATE(9517), 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_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(4499), 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, - [67543] = 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(8734), 1, - anon_sym_COMMA, - ACTIONS(8736), 1, - anon_sym_RPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7862), 1, + STATE(9791), 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(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, - [67643] = 14, - ACTIONS(8738), 1, - anon_sym_AT, - ACTIONS(8757), 1, - sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - ACTIONS(8743), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8751), 2, + sym_line_comment, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8766), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8760), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8763), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8754), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8748), 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, - 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, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546796,23 +542206,27 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67725] = 5, - ACTIONS(8769), 1, - anon_sym_by, - STATE(5127), 1, - sym_value_arguments, + [66231] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4707), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 21, + ACTIONS(4397), 21, + anon_sym_DOT, 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, @@ -546826,15 +542240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 28, - sym__automatic_semicolon, + ACTIONS(4399), 26, 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, @@ -546855,94 +542267,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67789] = 5, - ACTIONS(8771), 1, + [66299] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8508), 1, anon_sym_LPAREN, - STATE(5593), 1, - sym_value_arguments, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(8672), 1, + anon_sym_COLON, + STATE(8397), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8701), 1, + sym_type_constraints, + STATE(9365), 1, + sym_class_body, + STATE(9836), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 19, - 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_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, - 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, + ACTIONS(3280), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67853] = 23, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5520), 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, + [66399] = 23, ACTIONS(3202), 1, anon_sym_AT, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8509), 1, + ACTIONS(8504), 1, anon_sym_constructor, - ACTIONS(8511), 1, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(8513), 1, + ACTIONS(8508), 1, anon_sym_LPAREN, - ACTIONS(8517), 1, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(8774), 1, + ACTIONS(8674), 1, anon_sym_COLON, - STATE(8393), 1, + STATE(8368), 1, sym_primary_constructor, - STATE(8563), 1, + STATE(8492), 1, sym__class_parameters, - STATE(8653), 1, + STATE(8693), 1, sym_type_constraints, - STATE(9402), 1, + STATE(9249), 1, sym_enum_class_body, - STATE(9757), 1, + STATE(9836), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 2, + ACTIONS(3272), 2, sym__automatic_semicolon, anon_sym_RBRACE, ACTIONS(7653), 2, @@ -546951,7 +542381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(7657), 3, @@ -546980,7 +542410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546991,82 +542421,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67953] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4168), 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(4166), 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, - [68013] = 8, - ACTIONS(8223), 1, + [66499] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - ACTIONS(8776), 1, + ACTIONS(8676), 1, anon_sym_COLON, - STATE(5076), 1, - sym_function_body, - STATE(5091), 1, + STATE(5094), 1, sym__block, + STATE(5198), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 20, + ACTIONS(4216), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547083,7 +542456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 26, + ACTIONS(4218), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -547110,87 +542483,83 @@ static const uint16_t ts_small_parse_table[] = { 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, + [66569] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4275), 20, + ACTIONS(4405), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4902), 22, + anon_sym_DOT, 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(4277), 26, - sym__automatic_semicolon, + ACTIONS(4904), 27, sym_safe_nav, anon_sym_AT, 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_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, + [66631] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8780), 1, + ACTIONS(8518), 1, + anon_sym_EQ, + ACTIONS(8678), 1, anon_sym_COLON, - STATE(5057), 1, - sym_type_constraints, - STATE(5102), 1, - sym_class_body, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 20, + ACTIONS(4255), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547207,7 +542576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(4257), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -547234,100 +542603,23 @@ static const uint16_t ts_small_parse_table[] = { 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(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(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, - [68323] = 7, - ACTIONS(8104), 1, + [66701] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4838), 1, + STATE(4752), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 21, + ACTIONS(4178), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547345,7 +542637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 26, + ACTIONS(4180), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -547372,27 +542664,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68391] = 7, - ACTIONS(8104), 1, + [66769] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4886), 1, - sym_function_body, + ACTIONS(8680), 1, + anon_sym_COLON, + STATE(5059), 1, + sym_type_constraints, + STATE(5159), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4447), 21, + ACTIONS(4241), 20, + anon_sym_DOT, 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, @@ -547406,13 +542699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4449), 26, + ACTIONS(4243), 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, @@ -547433,25 +542726,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68459] = 6, - ACTIONS(5788), 1, + [66839] = 23, + ACTIONS(1792), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5416), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8682), 1, + anon_sym_EQ, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, + anon_sym_where, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(5615), 1, + sym_type_constraints, + STATE(5664), 1, + sym_property_delegate, + STATE(9411), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9979), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [66939] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8786), 1, - anon_sym_COLON, - STATE(5093), 1, - sym_class_body, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4784), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 21, + ACTIONS(4165), 21, + anon_sym_DOT, 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, @@ -547465,14 +542837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 27, - sym__automatic_semicolon, + ACTIONS(4167), 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, @@ -547493,24 +542864,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68525] = 5, - ACTIONS(8788), 1, - anon_sym_COMMA, - STATE(5321), 1, - aux_sym__delegation_specifiers_repeat1, + [67007] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 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(4307), 31, + anon_sym_DOT, + 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [67067] = 6, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(8692), 1, + anon_sym_COLON, + STATE(5260), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 22, + ACTIONS(4433), 21, + anon_sym_DOT, 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, @@ -547524,14 +542953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 27, + ACTIONS(4435), 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, @@ -547552,73 +542981,141 @@ static const uint16_t ts_small_parse_table[] = { 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, + [67133] = 14, ACTIONS(8694), 1, + anon_sym_AT, + ACTIONS(8713), 1, sym_property_modifier, - 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(8680), 2, + ACTIONS(8699), 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, + ACTIONS(8707), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8722), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8716), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8719), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8710), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8704), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8701), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8697), 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(5494), 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, + [67215] = 23, + ACTIONS(1810), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5423), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, + anon_sym_where, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8725), 1, + anon_sym_EQ, + STATE(5621), 1, + sym_type_constraints, + STATE(5667), 1, + sym_property_delegate, + STATE(9411), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10101), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547629,66 +543126,66 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68689] = 23, + [67315] = 23, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3346), 1, + ACTIONS(3340), 1, anon_sym_while, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8716), 1, + ACTIONS(8684), 1, anon_sym_by, - ACTIONS(8718), 1, + ACTIONS(8686), 1, anon_sym_where, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8794), 1, + ACTIONS(8727), 1, anon_sym_EQ, - ACTIONS(8796), 1, + ACTIONS(8729), 1, anon_sym_SEMI, - STATE(5608), 1, + STATE(5606), 1, sym_type_constraints, - STATE(5664), 1, + STATE(5656), 1, sym_property_delegate, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9806), 2, + STATE(9879), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -547706,73 +543203,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68789] = 23, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8674), 1, + [67415] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(3226), 1, sym_property_modifier, - 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, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8508), 1, + anon_sym_LPAREN, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8731), 1, + anon_sym_COLON, + STATE(8393), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8784), 1, + sym_type_constraints, + STATE(9427), 1, + sym_enum_class_body, + STATE(9836), 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(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, + ACTIONS(3296), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + 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(5675), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547783,25 +543280,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68889] = 8, - ACTIONS(5770), 1, + [67515] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(6398), 1, + ACTIONS(6380), 1, anon_sym_COLON, - STATE(5049), 1, + STATE(5011), 1, sym_type_constraints, - STATE(5118), 1, - sym_enum_class_body, + STATE(5184), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 20, + ACTIONS(3276), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547818,7 +543315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 26, + ACTIONS(3280), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -547845,25 +543342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68959] = 8, - ACTIONS(5770), 1, + [67585] = 6, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(8802), 1, + ACTIONS(8733), 1, anon_sym_COLON, - STATE(4999), 1, - sym_type_constraints, - STATE(5231), 1, - sym_enum_class_body, + STATE(5140), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 20, + ACTIONS(4421), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547880,13 +543374,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 26, + ACTIONS(4423), 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, + [67651] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8739), 1, + anon_sym_COMMA, + ACTIONS(8741), 1, + anon_sym_RPAREN, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8889), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [67751] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4847), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4255), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4257), 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, @@ -547907,24 +543540,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69029] = 14, + [67819] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8769), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8909), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [67919] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8771), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8887), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [68019] = 23, ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8808), 1, + ACTIONS(3226), 1, sym_property_modifier, + ACTIONS(8504), 1, + anon_sym_constructor, + ACTIONS(8508), 1, + anon_sym_LPAREN, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(8775), 1, + anon_sym_COLON, + STATE(8395), 1, + sym_primary_constructor, + STATE(8492), 1, + sym__class_parameters, + STATE(8714), 1, + sym_type_constraints, + STATE(9427), 1, + sym_class_body, + STATE(9836), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(3296), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8806), 2, - anon_sym_val, - anon_sym_var, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(7657), 3, @@ -547953,18 +543760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - 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, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547975,25 +543771,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69111] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [68119] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(6384), 1, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8777), 1, anon_sym_COLON, - STATE(5029), 1, + STATE(5060), 1, sym_type_constraints, - STATE(5118), 1, + STATE(5263), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3278), 20, + ACTIONS(4317), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548010,7 +543806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3282), 26, + ACTIONS(4319), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -548037,73 +543833,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69181] = 23, - ACTIONS(3316), 1, - anon_sym_AT, - ACTIONS(3360), 1, - anon_sym_while, - ACTIONS(8595), 1, - sym_property_modifier, - ACTIONS(8716), 1, - anon_sym_by, - ACTIONS(8718), 1, + [68189] = 8, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8720), 1, + ACTIONS(5828), 1, + anon_sym_LBRACE, + ACTIONS(6390), 1, + anon_sym_COLON, + STATE(5042), 1, + sym_type_constraints, + STATE(5249), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3292), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, - ACTIONS(8722), 1, anon_sym_set, - ACTIONS(8810), 1, - anon_sym_EQ, - ACTIONS(8812), 1, + 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(3296), 26, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(5612), 1, - sym_type_constraints, - STATE(5655), 1, - sym_property_delegate, - STATE(9271), 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, + [68259] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(8781), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9039), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - STATE(9870), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548114,73 +543972,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69281] = 23, - ACTIONS(3202), 1, + [68359] = 23, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(3368), 1, + anon_sym_while, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8509), 1, - anon_sym_constructor, - ACTIONS(8513), 1, - anon_sym_LPAREN, - ACTIONS(8517), 1, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 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, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8783), 1, + anon_sym_EQ, + ACTIONS(8785), 1, + anon_sym_SEMI, + STATE(5604), 1, sym_type_constraints, - STATE(9418), 1, - sym_class_body, - STATE(9757), 1, + STATE(5669), 1, + sym_property_delegate, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7653), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7661), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7657), 3, + STATE(9538), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7659), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7655), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7651), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7649), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548191,73 +544049,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69381] = 23, - ACTIONS(8672), 1, + [68459] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8816), 1, + ACTIONS(8787), 1, anon_sym_COMMA, - ACTIONS(8818), 1, + ACTIONS(8789), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9060), 1, + STATE(8830), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548268,25 +544126,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69481] = 8, - ACTIONS(5770), 1, + [68559] = 8, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, + ACTIONS(5810), 1, anon_sym_where, - ACTIONS(8820), 1, + ACTIONS(6372), 1, anon_sym_COLON, - STATE(4972), 1, + STATE(4986), 1, sym_type_constraints, - STATE(5106), 1, - sym_enum_class_body, + STATE(5249), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 20, + ACTIONS(3292), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548303,7 +544161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 26, + ACTIONS(3296), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -548330,73 +544188,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69551] = 23, - ACTIONS(1804), 1, - anon_sym_while, - ACTIONS(3316), 1, + [68629] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(5405), 1, - anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8716), 1, - anon_sym_by, - ACTIONS(8718), 1, - anon_sym_where, - ACTIONS(8720), 1, - anon_sym_get, - ACTIONS(8722), 1, - anon_sym_set, - ACTIONS(8822), 1, - anon_sym_EQ, - STATE(5621), 1, - sym_type_constraints, - STATE(5669), 1, - sym_property_delegate, - STATE(9271), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8791), 1, + anon_sym_COMMA, + ACTIONS(8793), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(8855), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - STATE(9599), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548407,20 +544265,196 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69651] = 5, - ACTIONS(8788), 1, - anon_sym_COMMA, - STATE(5511), 1, - aux_sym__delegation_specifiers_repeat1, + [68729] = 5, + ACTIONS(8795), 1, + anon_sym_LPAREN, + STATE(5584), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4684), 22, + ACTIONS(7118), 19, + 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_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(7116), 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [68793] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 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(4171), 31, + anon_sym_DOT, + 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [68853] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4249), 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(4247), 31, + anon_sym_DOT, + 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [68913] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4702), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4389), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548438,11 +544472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4686), 27, + ACTIONS(4391), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -548466,27 +544499,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69715] = 7, - ACTIONS(8104), 1, + [68981] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4763), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + 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(4263), 31, + anon_sym_DOT, + 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [69041] = 8, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(8798), 1, + anon_sym_COLON, + STATE(5033), 1, + sym_type_constraints, + STATE(5159), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 21, + ACTIONS(4241), 20, + anon_sym_DOT, 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, @@ -548500,13 +544591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4309), 26, + ACTIONS(4243), 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, @@ -548527,25 +544618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69783] = 8, - ACTIONS(8223), 1, + [69111] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8824), 1, + ACTIONS(6378), 1, anon_sym_COLON, - STATE(5090), 1, - sym_function_body, - STATE(5091), 1, - sym__block, + STATE(5004), 1, + sym_type_constraints, + STATE(5121), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4229), 20, + ACTIONS(3268), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548562,7 +544653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4231), 26, + ACTIONS(3272), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -548589,86 +544680,146 @@ static const uint16_t ts_small_parse_table[] = { 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, + [69181] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 21, + ACTIONS(4395), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4936), 22, + anon_sym_DOT, 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(4139), 26, + ACTIONS(4938), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [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, + [69243] = 14, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(8804), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4216), 20, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8802), 2, + anon_sym_val, + anon_sym_var, + STATE(5736), 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, + ACTIONS(8800), 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(5494), 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, + [69325] = 5, + ACTIONS(8806), 1, + anon_sym_by, + STATE(5141), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4462), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548685,13 +544836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4218), 26, + ACTIONS(4464), 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, @@ -548712,28 +544865,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69991] = 8, - ACTIONS(5776), 1, - anon_sym_where, - ACTIONS(5788), 1, + [69389] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8808), 1, + anon_sym_COMMA, + ACTIONS(8810), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8794), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [69489] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(6376), 1, - anon_sym_COLON, - STATE(5030), 1, - sym_type_constraints, - STATE(5175), 1, - sym_class_body, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4879), 1, + sym__block, + STATE(4893), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3270), 20, + ACTIONS(4251), 21, + anon_sym_DOT, 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, @@ -548747,13 +544976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3274), 26, - sym__automatic_semicolon, + ACTIONS(4253), 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, @@ -548774,28 +545003,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70061] = 8, - ACTIONS(5770), 1, + [69557] = 7, + ACTIONS(8112), 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(8454), 1, + anon_sym_EQ, + STATE(4814), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3286), 20, + ACTIONS(4129), 21, + anon_sym_DOT, 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, @@ -548809,13 +545037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3290), 26, - sym__automatic_semicolon, + ACTIONS(4131), 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, @@ -548836,81 +545064,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70131] = 4, + [69625] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(5020), 22, + ACTIONS(4385), 21, + anon_sym_DOT, 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(5022), 27, + ACTIONS(4387), 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, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [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, + [69693] = 5, + ACTIONS(8812), 1, + anon_sym_COMMA, + STATE(5416), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 21, + ACTIONS(4690), 22, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548928,10 +545156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 26, + ACTIONS(4692), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -548955,23 +545184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70261] = 7, - ACTIONS(8104), 1, + [69757] = 7, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(4775), 1, + STATE(4858), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 21, + ACTIONS(4194), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548989,7 +545218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4185), 26, + ACTIONS(4196), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -549016,27 +545245,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70329] = 7, - ACTIONS(8104), 1, + [69825] = 8, + ACTIONS(5810), 1, + anon_sym_where, + ACTIONS(5828), 1, anon_sym_LBRACE, - ACTIONS(8442), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4824), 1, - sym_function_body, + ACTIONS(8814), 1, + anon_sym_COLON, + STATE(5027), 1, + sym_type_constraints, + STATE(5088), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 21, + ACTIONS(4228), 20, + anon_sym_DOT, 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, @@ -549050,13 +545280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 26, + ACTIONS(4230), 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, @@ -549077,139 +545307,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70397] = 3, + [69895] = 23, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5427), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, + anon_sym_where, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8816), 1, + anon_sym_EQ, + STATE(5619), 1, + sym_type_constraints, + STATE(5652), 1, + sym_property_delegate, + STATE(9411), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 20, - sym__string_start, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10066), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [69995] = 5, + ACTIONS(8812), 1, + anon_sym_COMMA, + STATE(5526), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4684), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4686), 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, - anon_sym_return_AT, - anon_sym_continue_AT, - 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, + [70059] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7191), 30, + ACTIONS(8818), 1, + anon_sym_COMMA, + ACTIONS(8820), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8988), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, anon_sym_val, - anon_sym_object, - anon_sym_fun, + anon_sym_var, + ACTIONS(8745), 2, 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, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - 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(8828), 1, - anon_sym_LPAREN, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [70159] = 7, + ACTIONS(8112), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(4876), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 22, + ACTIONS(4303), 21, + anon_sym_DOT, 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(4009), 26, + ACTIONS(4305), 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, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_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, - [70519] = 6, - ACTIONS(5598), 1, + [70227] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8822), 1, + anon_sym_COMMA, + ACTIONS(8824), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(8937), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [70327] = 8, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8831), 1, + ACTIONS(8518), 1, + anon_sym_EQ, + ACTIONS(8826), 1, anon_sym_COLON, - STATE(4774), 1, - sym_class_body, + STATE(5072), 1, + sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 21, + ACTIONS(4329), 20, + anon_sym_DOT, 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, @@ -549220,101 +545690,251 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4331), 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, + [70397] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8828), 1, + anon_sym_RBRACE, + ACTIONS(8830), 1, + anon_sym_SEMI, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8203), 1, + sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9422), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [70496] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5251), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8595), 1, + anon_sym_EQ, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(5647), 1, + sym_property_delegate, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9268), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [70591] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8833), 1, + ACTIONS(8832), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549325,129 +545945,147 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70681] = 5, - ACTIONS(8835), 1, - anon_sym_COMMA, - STATE(5539), 1, - aux_sym__delegation_specifiers_repeat1, + [70688] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3296), 1, + anon_sym_while, + ACTIONS(8581), 1, + anon_sym_constructor, + ACTIONS(8585), 1, + anon_sym_LPAREN, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(8834), 1, + anon_sym_COLON, + STATE(8445), 1, + sym_primary_constructor, + STATE(8659), 1, + sym__class_parameters, + STATE(8999), 1, + sym_type_constraints, + STATE(9791), 1, + sym_modifiers, + STATE(9961), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4633), 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, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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, - 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, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5520), 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, + [70787] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8838), 1, + ACTIONS(8836), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549458,70 +546096,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70841] = 21, - ACTIONS(3316), 1, + [70884] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(5265), 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, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8662), 1, - anon_sym_EQ, - STATE(5636), 1, - sym_property_delegate, - STATE(9322), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8838), 1, + anon_sym_RBRACE, + ACTIONS(8840), 1, + anon_sym_SEMI, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8203), 1, sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9430), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - STATE(9110), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549532,187 +546172,127 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70936] = 5, - ACTIONS(4281), 1, - anon_sym_while, - ACTIONS(8840), 1, - anon_sym_LPAREN, + [70983] = 3, 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, + ACTIONS(7167), 20, + sym__string_start, 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_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_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, - [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(4736), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_DOT, + ACTIONS(7165), 30, + anon_sym_val, + 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, + 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(4738), 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, - [71062] = 22, - ACTIONS(8672), 1, + [71042] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8845), 1, + ACTIONS(8842), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549723,71 +546303,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71159] = 22, - ACTIONS(8672), 1, + [71139] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8847), 1, + ACTIONS(8844), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549798,71 +546378,11 @@ static const uint16_t ts_small_parse_table[] = { 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(4447), 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(4449), 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, - [71323] = 3, + [71236] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 20, + ACTIONS(7207), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -549883,7 +546403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5183), 30, + ACTIONS(7205), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -549914,123 +546434,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [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(4443), 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(4445), 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, - [71449] = 21, + [71295] = 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, + ACTIONS(8597), 1, anon_sym_by, - ACTIONS(8595), 1, - sym_property_modifier, ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8664), 1, anon_sym_EQ, - STATE(5633), 1, + ACTIONS(8666), 1, + anon_sym_SEMI, + STATE(5634), 1, sym_property_delegate, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, + ACTIONS(3340), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9460), 2, + STATE(9405), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -550048,71 +546508,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71544] = 22, - ACTIONS(8672), 1, + [71390] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8849), 1, + ACTIONS(8846), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550123,189 +546583,185 @@ static const uint16_t ts_small_parse_table[] = { 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, + [71487] = 4, + ACTIONS(4393), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4684), 21, + ACTIONS(4936), 22, + anon_sym_DOT, 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(4686), 27, - sym__automatic_semicolon, + ACTIONS(4938), 27, 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, - [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, + [71548] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(7183), 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(7181), 30, + anon_sym_val, + 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, + 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(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, + [71607] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8851), 1, - anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(8848), 1, + anon_sym_RBRACE, + ACTIONS(8850), 1, + anon_sym_SEMI, + STATE(6386), 1, sym__lexical_identifier, - STATE(7862), 1, + STATE(8203), 1, sym_modifiers, - STATE(9268), 1, - sym_class_parameter, - STATE(9495), 1, + STATE(8379), 1, sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9317), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550316,25 +546772,26 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71868] = 6, - ACTIONS(5598), 1, + [71706] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8853), 1, - anon_sym_COLON, - STATE(4749), 1, - sym_class_body, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5252), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 21, + ACTIONS(4385), 20, + anon_sym_DOT, 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, @@ -550348,13 +546805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 26, + ACTIONS(4387), 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, @@ -550375,146 +546832,71 @@ static const uint16_t ts_small_parse_table[] = { 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(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(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, - [72030] = 22, - ACTIONS(8672), 1, + [71773] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8857), 1, + ACTIONS(8852), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550525,18 +546907,23 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72127] = 4, - ACTIONS(8769), 1, - anon_sym_by, + [71870] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5241), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4505), 21, + ACTIONS(4251), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -550553,15 +546940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4507), 28, + ACTIONS(4253), 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_SEMI, anon_sym_STAR, sym_label, @@ -550582,354 +546967,251 @@ static const uint16_t ts_small_parse_table[] = { 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, + [71937] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5228), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(4303), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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(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, - [72285] = 23, - ACTIONS(8672), 1, + anon_sym_expect, + anon_sym_actual, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(4305), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8694), 1, - sym_property_modifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(8861), 1, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(8863), 1, + anon_sym_LPAREN, 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, + 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, + [72004] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(4255), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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(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, - [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(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, - [72481] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7173), 20, - sym__string_start, + sym__alpha_identifier, + ACTIONS(4257), 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, + 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(7171), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + [72071] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5112), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4194), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, 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_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_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [72540] = 23, - ACTIONS(8672), 1, + ACTIONS(4196), 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, + [72138] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8867), 1, - anon_sym_RBRACE, - ACTIONS(8869), 1, - anon_sym_SEMI, - STATE(6224), 1, + ACTIONS(8854), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(7862), 1, sym_modifiers, - STATE(8388), 1, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 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(8682), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550940,23 +547222,83 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72639] = 7, - ACTIONS(8223), 1, + [72235] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5174), 1, + STATE(5101), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4439), 20, + ACTIONS(4129), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + 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(4131), 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, + [72302] = 7, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8518), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5119), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4178), 20, anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -550973,7 +547315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4441), 26, + ACTIONS(4180), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -551000,33 +547342,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72706] = 23, + [72369] = 5, + ACTIONS(4275), 1, + anon_sym_while, + ACTIONS(8856), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4030), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + 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(4035), 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, + [72432] = 23, ACTIONS(3202), 1, anon_sym_AT, ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(3282), 1, + ACTIONS(3272), 1, anon_sym_while, - ACTIONS(8636), 1, + ACTIONS(8581), 1, anon_sym_constructor, - ACTIONS(8638), 1, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(8640), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(8871), 1, + ACTIONS(8859), 1, anon_sym_COLON, - STATE(8429), 1, + STATE(8440), 1, sym_primary_constructor, - STATE(8733), 1, + STATE(8659), 1, sym__class_parameters, - STATE(8941), 1, + STATE(9054), 1, sym_type_constraints, - STATE(9529), 1, + STATE(9791), 1, sym_modifiers, - STATE(9545), 1, - sym_class_body, + STATE(10089), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, @@ -551036,7 +547436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, ACTIONS(7657), 3, @@ -551065,7 +547465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551076,147 +547476,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72805] = 22, - ACTIONS(8672), 1, + [72531] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8873), 1, + ACTIONS(8861), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 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, - [72902] = 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(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(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551227,23 +547551,23 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73001] = 7, - ACTIONS(8223), 1, + [72628] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5141), 1, + STATE(5222), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4137), 20, + ACTIONS(4165), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -551260,7 +547584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4139), 26, + ACTIONS(4167), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -551287,155 +547611,18 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - 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, - [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, + [72695] = 4, + STATE(5591), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4147), 20, + ACTIONS(4690), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -551452,13 +547639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4149), 26, + ACTIONS(4692), 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, @@ -551479,127 +547668,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73293] = 3, + [72756] = 5, + ACTIONS(4289), 1, + anon_sym_while, + ACTIONS(8863), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(4030), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, 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_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_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [73352] = 22, - ACTIONS(8672), 1, + ACTIONS(4035), 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, + [72819] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8881), 1, + ACTIONS(8866), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551610,11 +547801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73449] = 3, + [72916] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 20, + ACTIONS(4784), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -551635,7 +547826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5179), 30, + ACTIONS(4782), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -551666,146 +547857,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [73508] = 23, - ACTIONS(8672), 1, + [72975] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8883), 1, - anon_sym_RBRACE, - ACTIONS(8885), 1, - anon_sym_SEMI, - STATE(6224), 1, + ACTIONS(8868), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(7862), 1, sym_modifiers, - STATE(8388), 1, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 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, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 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, - [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, - 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(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, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551816,79 +547932,23 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73702] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7145), 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(7143), 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, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [73761] = 7, - ACTIONS(8223), 1, + [73072] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5240), 1, + STATE(5176), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4160), 20, + ACTIONS(4389), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -551905,7 +547965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4162), 26, + ACTIONS(4391), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -551932,72 +547992,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73828] = 23, - ACTIONS(8672), 1, + [73139] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8889), 1, - anon_sym_RBRACE, - ACTIONS(8891), 1, - anon_sym_SEMI, - STATE(6224), 1, + ACTIONS(8870), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(7862), 1, sym_modifiers, - STATE(8388), 1, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 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(8682), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552008,188 +548067,147 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73927] = 4, - ACTIONS(4451), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [73236] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(5022), 27, - sym_safe_nav, + ACTIONS(8737), 1, 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, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, 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(8872), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, 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(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, 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, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - 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, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [73333] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8893), 1, - anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(8874), 1, + anon_sym_RBRACE, + ACTIONS(8876), 1, + anon_sym_SEMI, + STATE(6386), 1, sym__lexical_identifier, - STATE(7862), 1, + STATE(8203), 1, sym_modifiers, - STATE(9268), 1, - sym_class_parameter, - STATE(9495), 1, + STATE(8379), 1, sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9435), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552200,72 +548218,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74152] = 23, - ACTIONS(8672), 1, + [73432] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8895), 1, - anon_sym_RBRACE, - ACTIONS(8897), 1, - anon_sym_SEMI, - STATE(6224), 1, + ACTIONS(8878), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(7862), 1, sym_modifiers, - STATE(8388), 1, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 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(8682), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552276,23 +548293,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [73529] = 4, + ACTIONS(8806), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 20, + ACTIONS(4462), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -552309,13 +548321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4464), 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, @@ -552336,70 +548350,131 @@ static const uint16_t ts_small_parse_table[] = { 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, + [73590] = 6, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(8880), 1, + anon_sym_COLON, + STATE(4832), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4433), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, - ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8581), 1, - anon_sym_by, - ACTIONS(8595), 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(4435), 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, + [73655] = 23, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8632), 1, - anon_sym_EQ, - STATE(5640), 1, - sym_property_delegate, - STATE(9322), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8882), 1, + anon_sym_RBRACE, + ACTIONS(8884), 1, + anon_sym_SEMI, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8203), 1, sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9160), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - STATE(9265), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552410,11 +548485,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74413] = 3, + [73754] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 20, + ACTIONS(4796), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -552435,7 +548510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7187), 30, + ACTIONS(4794), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -552466,97 +548541,25 @@ static const uint16_t ts_small_parse_table[] = { 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, + [73813] = 6, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(8899), 1, + ACTIONS(8886), 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, - 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, + STATE(4806), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4736), 21, + ACTIONS(4421), 21, + anon_sym_DOT, 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, @@ -552570,15 +548573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4738), 28, - sym__automatic_semicolon, + ACTIONS(4423), 26, 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, @@ -552599,71 +548600,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [74632] = 22, - ACTIONS(8672), 1, + [73878] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8901), 1, - anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(8888), 1, + anon_sym_RBRACE, + ACTIONS(8890), 1, + anon_sym_SEMI, + STATE(6386), 1, sym__lexical_identifier, - STATE(7862), 1, + STATE(8203), 1, + sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9236), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [73977] = 21, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5275), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8640), 1, + anon_sym_EQ, + STATE(5643), 1, + sym_property_delegate, + STATE(9212), 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(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, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8696), 3, + STATE(9386), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552674,71 +548750,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74729] = 22, - ACTIONS(8672), 1, + [74072] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8903), 1, - anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(8892), 1, + anon_sym_RBRACE, + ACTIONS(8894), 1, + anon_sym_SEMI, + STATE(6386), 1, sym__lexical_identifier, - STATE(7862), 1, + STATE(8203), 1, sym_modifiers, - STATE(9268), 1, - sym_class_parameter, - STATE(9495), 1, + STATE(8379), 1, sym_simple_identifier, + STATE(8780), 1, + sym_enum_entry, + STATE(9360), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552749,129 +548826,72 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [74171] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8905), 1, + ACTIONS(8896), 1, anon_sym_RBRACE, - ACTIONS(8907), 1, + ACTIONS(8898), 1, anon_sym_SEMI, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(8203), 1, sym_modifiers, - STATE(8388), 1, + STATE(8379), 1, sym_simple_identifier, - STATE(8730), 1, + STATE(8780), 1, sym_enum_entry, - STATE(9298), 1, + STATE(9153), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552882,23 +548902,23 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74986] = 7, - ACTIONS(8223), 1, + [74270] = 7, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(8559), 1, + ACTIONS(8518), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5194), 1, + STATE(5168), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 20, + ACTIONS(4397), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -552915,7 +548935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 26, + ACTIONS(4399), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -552942,11 +548962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75053] = 3, + [74337] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 20, + ACTIONS(7203), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -552967,7 +548987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5187), 30, + ACTIONS(7201), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -552998,145 +549018,127 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74396] = 3, 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, + ACTIONS(4896), 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(4894), 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(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, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(8674), 1, + [74455] = 22, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8909), 1, + ACTIONS(8900), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553147,71 +549149,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75304] = 22, - ACTIONS(8672), 1, + [74552] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8911), 1, + ACTIONS(8902), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553222,72 +549224,70 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75401] = 23, - ACTIONS(3202), 1, + [74649] = 21, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(5281), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(3274), 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(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, + ACTIONS(8652), 1, + anon_sym_EQ, + STATE(5645), 1, + sym_property_delegate, + STATE(9212), 1, sym_modifiers, - STATE(9819), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7653), 2, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7661), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5732), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7657), 3, + STATE(9198), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7659), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7655), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7651), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7649), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5517), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553298,71 +549298,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75500] = 22, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8674), 1, + [74744] = 23, + ACTIONS(3202), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(3226), 1, sym_property_modifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(8915), 1, - anon_sym_RPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7862), 1, + ACTIONS(3280), 1, + anon_sym_while, + ACTIONS(8581), 1, + anon_sym_constructor, + ACTIONS(8585), 1, + anon_sym_LPAREN, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(8904), 1, + anon_sym_COLON, + STATE(8433), 1, + sym_primary_constructor, + STATE(8659), 1, + sym__class_parameters, + STATE(8850), 1, + sym_type_constraints, + STATE(9791), 1, sym_modifiers, - STATE(9268), 1, - sym_class_parameter, - STATE(9495), 1, - sym_simple_identifier, + STATE(9861), 1, + sym_class_body, 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, + ACTIONS(7653), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(7661), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5736), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(7657), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(7659), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(7655), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + 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(5675), 10, + STATE(5520), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553373,11 +549374,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75597] = 3, + [74843] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 20, + ACTIONS(4888), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -553398,7 +549399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5163), 30, + ACTIONS(4886), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -553429,72 +549430,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [75656] = 23, - ACTIONS(8672), 1, + [74902] = 23, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(8917), 1, + ACTIONS(8906), 1, anon_sym_RBRACE, - ACTIONS(8919), 1, + ACTIONS(8908), 1, anon_sym_SEMI, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(8203), 1, sym_modifiers, - STATE(8388), 1, + STATE(8379), 1, sym_simple_identifier, - STATE(8730), 1, + STATE(8780), 1, sym_enum_entry, - STATE(9397), 1, + STATE(9118), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553505,218 +549506,134 @@ static const uint16_t ts_small_parse_table[] = { 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, + [75001] = 5, + ACTIONS(8910), 1, + anon_sym_COMMA, + STATE(5591), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(4665), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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_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(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, - [75854] = 3, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4667), 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, + [75064] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4009), 47, + ACTIONS(7197), 20, + sym__string_start, anon_sym_AT, - anon_sym_COLON, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, + 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(7195), 30, + anon_sym_val, 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_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, - [75912] = 14, - ACTIONS(8925), 1, - anon_sym_AT, - ACTIONS(8940), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8743), 2, - anon_sym_val, - anon_sym_var, - 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, - 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [75123] = 5, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(5600), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4497), 20, + ACTIONS(4684), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -553733,11 +549650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4499), 26, + ACTIONS(4686), 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, @@ -553760,124 +549678,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76056] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4179), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4181), 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, - 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, - [76114] = 21, - ACTIONS(8672), 1, + [75186] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(8915), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, STATE(7862), 1, sym_modifiers, - STATE(9268), 1, + STATE(9248), 1, sym_class_parameter, - STATE(9495), 1, + STATE(9605), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8680), 2, + ACTIONS(8743), 2, anon_sym_val, anon_sym_var, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553888,215 +549753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76208] = 21, - ACTIONS(1804), 1, - anon_sym_while, - ACTIONS(3316), 1, + [75283] = 22, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(5405), 1, - anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8716), 1, - anon_sym_by, - ACTIONS(8720), 1, - anon_sym_get, - ACTIONS(8722), 1, - anon_sym_set, - ACTIONS(8822), 1, - anon_sym_EQ, - STATE(5669), 1, - sym_property_delegate, - STATE(9271), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(8917), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, sym_modifiers, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, 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, - 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, - [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, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, - ACTIONS(8722), 1, anon_sym_set, - 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(8591), 2, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 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, + ACTIONS(8751), 3, 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, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8755), 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, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554107,78 +549828,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76490] = 4, - ACTIONS(8954), 1, - anon_sym_LPAREN, + [75380] = 4, + ACTIONS(4403), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4902), 22, 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(4265), 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, - [76550] = 5, - ACTIONS(8956), 1, - anon_sym_SEMI, - ACTIONS(8958), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4818), 20, 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_BANG_EQ, anon_sym_EQ_EQ, @@ -554186,96 +549850,98 @@ 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(4820), 27, - sym__automatic_semicolon, + ACTIONS(4904), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [76612] = 21, + [75441] = 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, + ACTIONS(5263), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8794), 1, + ACTIONS(8597), 1, + anon_sym_by, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8919), 1, anon_sym_EQ, - ACTIONS(8796), 1, - anon_sym_SEMI, - STATE(5664), 1, + STATE(5640), 1, sym_property_delegate, - STATE(9271), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9806), 2, + STATE(9314), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -554293,130 +549959,152 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76706] = 4, - ACTIONS(8960), 1, + [75536] = 23, + ACTIONS(3202), 1, + anon_sym_AT, + ACTIONS(3226), 1, + sym_property_modifier, + ACTIONS(3296), 1, + anon_sym_while, + ACTIONS(8581), 1, + anon_sym_constructor, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8585), 1, anon_sym_LPAREN, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8921), 1, + anon_sym_COLON, + STATE(8421), 1, + sym_primary_constructor, + STATE(8659), 1, + sym__class_parameters, + STATE(8965), 1, + sym_type_constraints, + STATE(9791), 1, + sym_modifiers, + STATE(9961), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(7653), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7661), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5736), 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, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4287), 27, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(7649), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5520), 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, + [75635] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4860), 20, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + 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, + 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, - [76766] = 4, - ACTIONS(8962), 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_where, - anon_sym_DOT, + ACTIONS(4858), 30, + anon_sym_val, + 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, + 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__alpha_identifier, - ACTIONS(4876), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [75694] = 5, + ACTIONS(8913), 1, 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, - [76826] = 4, - ACTIONS(8964), 1, - anon_sym_LPAREN, + STATE(5591), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 21, + ACTIONS(4690), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -554433,14 +550121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4894), 27, + ACTIONS(4692), 27, 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, @@ -554461,69 +550149,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76886] = 21, - ACTIONS(8672), 1, + [75757] = 22, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8674), 1, + ACTIONS(8737), 1, anon_sym_AT, - ACTIONS(8694), 1, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(8923), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(7862), 1, sym_modifiers, - STATE(8388), 1, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 1, sym_simple_identifier, - STATE(9009), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8966), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554534,19 +550224,20 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76980] = 5, - ACTIONS(8968), 1, + [75854] = 5, + ACTIONS(8925), 1, anon_sym_LT, - STATE(5647), 1, + STATE(5636), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4128), 2, + ACTIONS(4159), 2, anon_sym_val, anon_sym_var, - ACTIONS(4189), 45, + ACTIONS(4161), 45, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -554558,7 +550249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -554591,94 +550281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77042] = 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(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, - ACTIONS(8970), 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, - 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, - [77136] = 6, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(8972), 1, - anon_sym_COLON, - STATE(5093), 1, - sym_class_body, + [75916] = 4, + ACTIONS(8927), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4349), 20, + ACTIONS(5071), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -554695,13 +550309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4351), 26, + ACTIONS(5073), 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, @@ -554722,62 +550337,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77200] = 14, + [75976] = 21, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8974), 1, + ACTIONS(3340), 1, + anon_sym_while, + ACTIONS(8609), 1, sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8727), 1, + anon_sym_EQ, + ACTIONS(8729), 1, + anon_sym_SEMI, + STATE(5656), 1, + sym_property_delegate, + STATE(9411), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8806), 2, - anon_sym_val, - anon_sym_var, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8597), 3, + STATE(9879), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 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, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554788,62 +550410,119 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77280] = 21, - ACTIONS(1734), 1, + [76070] = 5, + ACTIONS(8929), 1, + anon_sym_SEMI, + ACTIONS(8931), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4974), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + 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(4976), 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_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, + [76132] = 21, + ACTIONS(1792), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5435), 1, + ACTIONS(5416), 1, anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8716), 1, + ACTIONS(8682), 1, + anon_sym_EQ, + ACTIONS(8684), 1, anon_sym_by, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8976), 1, - anon_sym_EQ, - STATE(5654), 1, + STATE(5664), 1, sym_property_delegate, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9620), 2, + STATE(9979), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -554861,21 +550540,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77374] = 4, - ACTIONS(8958), 1, - anon_sym_else, + [76226] = 6, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(8933), 1, + anon_sym_COLON, + STATE(5260), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 20, + ACTIONS(4433), 20, + anon_sym_DOT, 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, @@ -554888,15 +550571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 28, + ACTIONS(4435), 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_SEMI, anon_sym_STAR, sym_label, @@ -554917,77 +550598,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77434] = 4, - ACTIONS(8978), 1, - anon_sym_LPAREN, + [76290] = 21, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8203), 1, + sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8932), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8745), 2, 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(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4876), 26, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(8935), 2, 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, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [76384] = 4, + ACTIONS(8931), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 21, + ACTIONS(4974), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -555000,13 +550698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 26, + ACTIONS(4976), 28, + 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, @@ -555027,133 +550727,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77552] = 4, - ACTIONS(8982), 1, - anon_sym_else, + [76444] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 20, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4190), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4192), 47, + anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, + 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_SEMI, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_AMP, + sym__quest, 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_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, + [76502] = 21, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(4820), 27, - sym_safe_nav, + ACTIONS(8737), 1, 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, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, sym__backtick_identifier, - [77611] = 4, - ACTIONS(8984), 1, - anon_sym_LPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7862), 1, + sym_modifiers, + STATE(9248), 1, + sym_class_parameter, + STATE(9605), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 21, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(8743), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 2, 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, + ACTIONS(8749), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8747), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5681), 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, + [76596] = 14, + ACTIONS(8937), 1, + anon_sym_AT, + ACTIONS(8952), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8699), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8946), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8961), 2, anon_sym_expect, anon_sym_actual, - 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, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8955), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8958), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8949), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8943), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8940), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8697), 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(5612), 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, + [76676] = 4, + ACTIONS(8964), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 20, + ACTIONS(4283), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, 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, @@ -555166,14 +550949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 26, + ACTIONS(4281), 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, anon_sym_DOT_DOT, @@ -555193,21 +550977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77731] = 4, - ACTIONS(8988), 1, + [76736] = 4, + ACTIONS(8966), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 21, + ACTIONS(4297), 21, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -555221,13 +551005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4265), 26, + ACTIONS(4295), 27, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -555248,19 +551033,90 @@ static const uint16_t ts_small_parse_table[] = { 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, + [76796] = 21, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5427), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8816), 1, + anon_sym_EQ, + STATE(5652), 1, + sym_property_delegate, + STATE(9411), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10066), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [76890] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 2, + ACTIONS(4030), 2, anon_sym_val, anon_sym_var, - ACTIONS(4168), 44, + ACTIONS(4035), 47, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -555269,6 +551125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -555304,225 +551161,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77851] = 5, - ACTIONS(8993), 1, - anon_sym_DOT, - STATE(5629), 1, - aux_sym_user_type_repeat1, + [76948] = 21, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, + sym_property_modifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8203), 1, + sym_modifiers, + STATE(8379), 1, + sym_simple_identifier, + STATE(8932), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4153), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4155), 44, - 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_SEMI, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, + ACTIONS(8753), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8763), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8968), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, + ACTIONS(8759), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8761), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8747), 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, - [77912] = 5, - ACTIONS(8491), 1, + STATE(5681), 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, + [77042] = 4, + ACTIONS(8970), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4009), 19, - 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_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, + ACTIONS(5047), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, 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_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_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(4265), 2, + ACTIONS(5049), 27, sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4009), 19, - sym__string_start, + 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, - anon_sym_return_AT, - anon_sym_continue_AT, - 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(4004), 26, - 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_data, - 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, + [77102] = 21, + ACTIONS(1810), 1, + anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5265), 1, + ACTIONS(5423), 1, anon_sym_SEMI, - ACTIONS(7645), 1, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7647), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, + ACTIONS(8725), 1, + anon_sym_EQ, + STATE(5667), 1, + sym_property_delegate, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9110), 2, + STATE(10101), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -555540,64 +551363,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78120] = 18, + [77196] = 14, 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, + ACTIONS(8972), 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, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + ACTIONS(8802), 2, + anon_sym_val, + anon_sym_var, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9405), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + ACTIONS(8800), 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(5612), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -555608,57 +551429,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78206] = 18, + [77276] = 21, + ACTIONS(1816), 1, + anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5257), 1, + ACTIONS(5425), 1, anon_sym_SEMI, - ACTIONS(7645), 1, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7647), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, + ACTIONS(8974), 1, + anon_sym_EQ, + STATE(5665), 1, + sym_property_delegate, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9150), 2, + STATE(10114), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -555676,83 +551502,241 @@ static const uint16_t ts_small_parse_table[] = { 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, + [77370] = 6, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(8976), 1, + anon_sym_COLON, + STATE(5140), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4421), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, - ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, - sym_modifiers, + 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(4423), 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, + [77434] = 5, + ACTIONS(8456), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 2, + ACTIONS(4295), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(4035), 19, + 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_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(4030), 26, + 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_data, + anon_sym_inner, + anon_sym_value, 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, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [77495] = 5, + ACTIONS(8978), 1, + anon_sym_DOT, + STATE(5624), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4171), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4173), 44, + 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_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, - ACTIONS(8587), 6, - anon_sym_suspend, + 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, - 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, + 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, + [77556] = 4, + ACTIONS(8981), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5047), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, anon_sym_while, - ACTIONS(8828), 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(5049), 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, + [77615] = 5, + ACTIONS(8467), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 19, + ACTIONS(4281), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(4035), 19, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -555772,7 +551756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4004), 26, + ACTIONS(4030), 26, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -555799,14 +551783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [78438] = 3, + [77676] = 5, + ACTIONS(8983), 1, + anon_sym_DOT, + STATE(5624), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 2, + ACTIONS(4122), 2, anon_sym_val, anon_sym_var, - ACTIONS(4315), 45, + ACTIONS(4124), 44, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -555819,7 +551807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -555852,112 +551839,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78494] = 5, - ACTIONS(4289), 1, + [77737] = 4, + ACTIONS(8985), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5071), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, anon_sym_while, - ACTIONS(8840), 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(5073), 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, + [77796] = 5, + ACTIONS(8987), 1, + anon_sym_SEMI, + ACTIONS(8989), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4974), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4976), 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, + [77857] = 4, + ACTIONS(8991), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 19, - sym__string_start, + ACTIONS(4283), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4281), 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, - anon_sym_return_AT, - anon_sym_continue_AT, - 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(4004), 26, - anon_sym_object, - anon_sym_fun, + [77916] = 4, + ACTIONS(8993), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4297), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, + 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(4295), 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_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + 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, + [77975] = 4, + ACTIONS(8989), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4974), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + 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_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4976), 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, + [78034] = 4, + ACTIONS(8995), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5047), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [78554] = 18, + ACTIONS(5049), 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, + [78092] = 18, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5247), 1, + ACTIONS(5275), 1, anon_sym_SEMI, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, + ACTIONS(1792), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9131), 2, + STATE(9386), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -555975,17 +552237,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78640] = 4, - ACTIONS(8995), 1, + [78178] = 4, + ACTIONS(8997), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4267), 20, + ACTIONS(5071), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -556002,7 +552264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4265), 26, + ACTIONS(5073), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556029,15 +552291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78698] = 3, + [78236] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 2, + ACTIONS(4307), 2, anon_sym_val, anon_sym_var, - ACTIONS(4319), 45, + ACTIONS(4309), 45, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -556049,7 +552312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -556082,17 +552344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [78754] = 4, - ACTIONS(8997), 1, + [78292] = 4, + ACTIONS(8999), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 20, + ACTIONS(4283), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -556109,7 +552371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4287), 26, + ACTIONS(4281), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556136,17 +552398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78812] = 4, - ACTIONS(8999), 1, + [78350] = 4, + ACTIONS(9001), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 20, + ACTIONS(4297), 20, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -556163,7 +552425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 26, + ACTIONS(4295), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556190,17 +552452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78870] = 4, - ACTIONS(9001), 1, + [78408] = 4, + ACTIONS(9003), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 19, + ACTIONS(4974), 19, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -556216,7 +552478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 27, + ACTIONS(4976), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556244,19 +552506,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78928] = 5, - ACTIONS(9001), 1, - anon_sym_else, + [78466] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5277), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1736), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9336), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [78552] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4263), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4265), 45, + anon_sym_AT, + anon_sym_DOT, + 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_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, + [78608] = 5, ACTIONS(9003), 1, + anon_sym_else, + ACTIONS(9005), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4818), 19, + ACTIONS(4974), 19, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -556272,7 +552655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4820), 26, + ACTIONS(4976), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -556299,15 +552682,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78988] = 3, + [78668] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5281), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9198), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [78754] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 2, + ACTIONS(4171), 2, anon_sym_val, anon_sym_var, - ACTIONS(4337), 45, + ACTIONS(4173), 45, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -556319,7 +552771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -556352,57 +552803,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79044] = 18, + [78810] = 18, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5261), 1, + ACTIONS(5251), 1, anon_sym_SEMI, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, + ACTIONS(1810), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9460), 2, + STATE(9268), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556420,15 +552871,16 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79130] = 3, + [78896] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 2, + ACTIONS(4247), 2, anon_sym_val, anon_sym_var, - ACTIONS(4168), 45, + ACTIONS(4249), 45, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, anon_sym_class, @@ -556440,7 +552892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -556473,66 +552924,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79186] = 20, - ACTIONS(8672), 1, + [78952] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5263), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9314), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [79038] = 18, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(7645), 1, + anon_sym_get, + ACTIONS(7647), 1, + anon_sym_set, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8666), 1, + anon_sym_SEMI, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3340), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9405), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [79124] = 5, + ACTIONS(4297), 1, + anon_sym_while, + ACTIONS(8863), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 19, + 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_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(4030), 26, + 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_data, + 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(8674), 1, + [79184] = 5, + ACTIONS(4283), 1, + anon_sym_while, + ACTIONS(8856), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 19, + sym__string_start, anon_sym_AT, - ACTIONS(8694), 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(4030), 26, + 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_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [79244] = 20, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8737), 1, + anon_sym_AT, + ACTIONS(8757), 1, sym_property_modifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8107), 1, + STATE(8203), 1, sym_modifiers, - STATE(8388), 1, + STATE(8379), 1, sym_simple_identifier, - STATE(9009), 1, + STATE(8932), 1, sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 2, + ACTIONS(8745), 2, anon_sym_get, anon_sym_set, - ACTIONS(8686), 2, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8690), 2, + ACTIONS(8753), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8700), 2, + ACTIONS(8763), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8688), 3, + ACTIONS(8751), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8696), 3, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8698), 3, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8692), 4, + ACTIONS(8755), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8684), 6, + ACTIONS(8747), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5681), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -556543,21 +553240,92 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79276] = 4, - ACTIONS(9005), 1, - anon_sym_LPAREN, + [79334] = 18, + ACTIONS(1810), 1, + anon_sym_while, + ACTIONS(3316), 1, + anon_sym_AT, + ACTIONS(5423), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(9411), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8605), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10101), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, + [79419] = 6, + ACTIONS(8289), 1, + anon_sym_COLON_COLON, + ACTIONS(8476), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4892), 20, + ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4994), 19, + anon_sym_DOT, 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, @@ -556570,21 +553338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4894), 26, - sym__automatic_semicolon, + ACTIONS(4996), 23, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + 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, @@ -556597,55 +553362,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79334] = 17, + [79480] = 17, ACTIONS(3316), 1, anon_sym_AT, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 2, + ACTIONS(1824), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9265), 2, + STATE(9349), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556663,110 +553428,122 @@ static const uint16_t ts_small_parse_table[] = { 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(4193), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4195), 42, + [79563] = 17, + ACTIONS(3316), 1, 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_SEMI, + ACTIONS(7645), 1, anon_sym_get, + ACTIONS(7647), 1, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8615), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5796), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9386), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8603), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8601), 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, - [79476] = 18, - ACTIONS(1810), 1, + 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(1792), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5393), 1, + ACTIONS(5416), 1, anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9634), 2, + STATE(9979), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556784,56 +553561,55 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79561] = 18, + [79731] = 17, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3346), 1, - anon_sym_while, - ACTIONS(8595), 1, - sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8796), 1, - anon_sym_SEMI, - STATE(9271), 1, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9806), 2, + STATE(9314), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556851,56 +553627,163 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79646] = 18, - ACTIONS(1804), 1, + [79814] = 5, + ACTIONS(8983), 1, + anon_sym_DOT, + STATE(5627), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4139), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4141), 42, + 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_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, + [79873] = 5, + ACTIONS(8289), 1, + anon_sym_COLON_COLON, + ACTIONS(9007), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4994), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + 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(4996), 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, + [79932] = 17, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5405), 1, - anon_sym_SEMI, - ACTIONS(8595), 1, - sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(7645), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(7647), 1, anon_sym_set, - STATE(9271), 1, + ACTIONS(8609), 1, + sym_property_modifier, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(3424), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9599), 2, + STATE(9265), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556918,55 +553801,55 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79731] = 17, + [80015] = 17, ACTIONS(3316), 1, anon_sym_AT, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 2, + ACTIONS(1736), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9156), 2, + STATE(9336), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -556984,55 +553867,55 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79814] = 17, + [80098] = 17, ACTIONS(3316), 1, anon_sym_AT, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 2, + ACTIONS(1804), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9160), 2, + STATE(9198), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557050,55 +553933,55 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79897] = 17, + [80181] = 17, ACTIONS(3316), 1, anon_sym_AT, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(1810), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9405), 2, + STATE(9268), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557116,107 +553999,56 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79980] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - anon_sym_get, - anon_sym_set, + [80264] = 18, + ACTIONS(1804), 1, 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, - [80035] = 17, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7645), 1, + ACTIONS(5427), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7647), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9131), 2, + STATE(10066), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557234,55 +554066,56 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80118] = 17, + [80349] = 18, + ACTIONS(1736), 1, + anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7645), 1, + ACTIONS(5353), 1, + anon_sym_SEMI, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7647), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9460), 2, + STATE(10125), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557300,17 +554133,18 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80201] = 3, + [80434] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4179), 3, + ACTIONS(4030), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4181), 43, + ACTIONS(4035), 43, anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -557323,7 +554157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_while, @@ -557352,56 +554185,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80256] = 18, - ACTIONS(1798), 1, + [80489] = 18, + ACTIONS(1816), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(5428), 1, + ACTIONS(5425), 1, anon_sym_SEMI, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9522), 2, + STATE(10114), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557419,55 +554252,55 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80341] = 17, + [80574] = 17, ACTIONS(3316), 1, anon_sym_AT, ACTIONS(7645), 1, anon_sym_get, ACTIONS(7647), 1, anon_sym_set, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - STATE(9322), 1, + STATE(9212), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, + ACTIONS(3340), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9150), 2, + STATE(9405), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557485,55 +554318,56 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80424] = 17, + [80657] = 18, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(7645), 1, + ACTIONS(3340), 1, + anon_sym_while, + ACTIONS(8609), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7647), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8595), 1, - sym_property_modifier, - STATE(9322), 1, + ACTIONS(8729), 1, + anon_sym_SEMI, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9110), 2, + STATE(9879), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557551,262 +554385,71 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80507] = 6, - ACTIONS(8313), 1, - anon_sym_COLON_COLON, - ACTIONS(8494), 1, - anon_sym_COLON, + [80742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5024), 19, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4190), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4192), 43, + anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, + 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_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_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, 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, - 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, + ACTIONS(8289), 1, anon_sym_COLON_COLON, ACTIONS(9009), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5024), 19, + ACTIONS(4994), 19, + anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -557822,7 +554465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5026), 25, + ACTIONS(4996), 25, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -557849,53 +554492,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, sym__backtick_identifier, [80856] = 17, - ACTIONS(1792), 1, + ACTIONS(1816), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9565), 2, + STATE(10114), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557914,53 +554557,53 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, aux_sym_modifiers_repeat1, [80938] = 17, - ACTIONS(1798), 1, + ACTIONS(1792), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9522), 2, + STATE(9979), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -557978,61 +554621,58 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81020] = 17, - ACTIONS(3316), 1, + [81020] = 14, + ACTIONS(8697), 1, + sym__backtick_identifier, + ACTIONS(9011), 1, anon_sym_AT, - ACTIONS(3422), 1, - anon_sym_while, - ACTIONS(8595), 1, + ACTIONS(9026), 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, + ACTIONS(9020), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(9035), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5878), 2, sym__single_annotation, sym__multi_annotation, - STATE(9660), 2, - sym_getter, - sym_setter, - ACTIONS(8597), 3, + ACTIONS(9029), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(9032), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(9023), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8699), 5, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(9017), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(9014), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5620), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -558043,119 +554683,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81102] = 13, - ACTIONS(8674), 1, + [81096] = 17, + ACTIONS(1824), 1, + anon_sym_while, + ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8804), 1, - sym__backtick_identifier, - ACTIONS(9011), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8686), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8690), 2, - anon_sym_override, - anon_sym_lateinit, - 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, - 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, - ACTIONS(8806), 10, - anon_sym_val, - anon_sym_var, + ACTIONS(8688), 1, anon_sym_get, + ACTIONS(8690), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - 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, + STATE(9411), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9022), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(9037), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5880), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9031), 3, + STATE(10142), 2, + sym_getter, + sym_setter, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(9034), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(9025), 4, + ACTIONS(8607), 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, - sym__alpha_identifier, - ACTIONS(9019), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(9016), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5676), 10, + STATE(5620), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -558166,54 +554748,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81252] = 17, - ACTIONS(1810), 1, - anon_sym_while, + [81178] = 17, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(3424), 1, + anon_sym_while, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9634), 2, + STATE(10152), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -558231,54 +554813,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81334] = 17, + [81260] = 17, + ACTIONS(1736), 1, + anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(3346), 1, - anon_sym_while, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9806), 2, + STATE(10125), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -558296,54 +554878,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81416] = 17, - ACTIONS(1816), 1, + [81342] = 17, + ACTIONS(1810), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9655), 2, + STATE(10101), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -558361,54 +554943,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81498] = 17, + [81424] = 17, ACTIONS(1804), 1, anon_sym_while, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9599), 2, + STATE(10066), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -558426,54 +555008,54 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81580] = 17, - ACTIONS(1734), 1, - anon_sym_while, + [81506] = 17, ACTIONS(3316), 1, anon_sym_AT, - ACTIONS(8595), 1, + ACTIONS(3340), 1, + anon_sym_while, + ACTIONS(8609), 1, sym_property_modifier, - ACTIONS(8720), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8722), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9271), 1, + STATE(9411), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8591), 2, + ACTIONS(8605), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8601), 2, + ACTIONS(8615), 2, anon_sym_expect, anon_sym_actual, - STATE(5789), 2, + STATE(5796), 2, sym__single_annotation, sym__multi_annotation, - STATE(9620), 2, + STATE(9879), 2, sym_getter, sym_setter, - ACTIONS(8597), 3, + ACTIONS(8611), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8599), 3, + ACTIONS(8613), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8593), 4, + ACTIONS(8607), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8589), 5, + ACTIONS(8603), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8587), 6, + ACTIONS(8601), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, @@ -558491,320 +555073,80 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81662] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4009), 9, + [81588] = 13, + ACTIONS(8737), 1, anon_sym_AT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_SEMI, - sym__quest, + ACTIONS(8800), 1, sym__backtick_identifier, - 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, - 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(9038), 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, - sym__alpha_identifier, - [81714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, + ACTIONS(8749), 2, anon_sym_sealed, anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8753), 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, + STATE(5878), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8759), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8761), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [81766] = 5, - ACTIONS(9040), 1, - anon_sym_LT, - STATE(5709), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - 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(8755), 4, 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, - [81822] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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_where, - anon_sym_AMP, - sym__quest, + ACTIONS(8747), 6, 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, - [81874] = 4, - ACTIONS(9042), 1, - anon_sym_LT, - STATE(5704), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + ACTIONS(8802), 10, + anon_sym_val, + anon_sym_var, 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, - 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, - [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(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_RBRACE, - anon_sym_SEMI, - ACTIONS(4122), 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, - 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, - [81990] = 4, - ACTIONS(9046), 1, + STATE(5674), 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] = 4, + ACTIONS(9040), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 3, + ACTIONS(4030), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4009), 39, + ACTIONS(4035), 39, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -558815,7 +555157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -558843,21 +555184,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82044] = 3, + [81716] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 9, + ACTIONS(4035), 9, anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_LT, - anon_sym_DOT, anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4179), 34, + ACTIONS(4030), 34, anon_sym_val, anon_sym_var, anon_sym_by, @@ -558892,28 +555233,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, 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, + [81768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 3, + ACTIONS(4192), 9, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, - anon_sym_SEMI, - ACTIONS(4189), 4, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_LT, + anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4122), 31, + ACTIONS(4190), 34, + anon_sym_val, + anon_sym_var, anon_sym_by, anon_sym_where, anon_sym_get, @@ -558945,20 +555281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82157] = 5, - ACTIONS(9050), 1, - anon_sym_DOT, - STATE(5691), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [81820] = 5, + ACTIONS(9042), 1, + anon_sym_LT, + STATE(5697), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 3, + ACTIONS(4159), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4168), 37, + ACTIONS(4161), 38, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -558995,29 +555333,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82212] = 5, - ACTIONS(9053), 1, - anon_sym_DOT, - STATE(5695), 1, - aux_sym_user_type_repeat1, + [81876] = 8, + ACTIONS(4159), 1, + sym__alpha_identifier, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9044), 1, + anon_sym_COLON, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4193), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4195), 37, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, + ACTIONS(4161), 4, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + sym__quest, + sym__backtick_identifier, + ACTIONS(4186), 5, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4184), 30, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559037,6 +555378,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, @@ -559045,27 +555387,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82267] = 3, + [81938] = 4, + ACTIONS(9046), 1, + anon_sym_LT, + STATE(5712), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 11, + ACTIONS(4161), 41, sym__automatic_semicolon, anon_sym_AT, - anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LBRACE, 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_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, @@ -559092,24 +555437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [82318] = 3, + [81992] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 11, + ACTIONS(4192), 11, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT, - anon_sym_DOT, anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4004), 31, + ACTIONS(4190), 31, anon_sym_by, anon_sym_where, anon_sym_get, @@ -559141,19 +555485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [82369] = 5, - ACTIONS(9053), 1, + [82043] = 5, + ACTIONS(9048), 1, anon_sym_DOT, - STATE(5691), 1, + STATE(5693), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4153), 3, + ACTIONS(4139), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4155), 37, + ACTIONS(4141), 37, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559191,26 +555535,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82424] = 4, - ACTIONS(9046), 1, - anon_sym_COLON, + [82098] = 5, + ACTIONS(9050), 1, + anon_sym_DOT, + STATE(5690), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4004), 2, + ACTIONS(4171), 3, anon_sym_val, anon_sym_var, - ACTIONS(4009), 38, + sym_property_modifier, + ACTIONS(4173), 37, anon_sym_AT, 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_suspend, @@ -559230,7 +555577,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, @@ -559239,97 +555585,25 @@ 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, - 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, - 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, - [82574] = 3, + [82153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9065), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7732), 38, + ACTIONS(4035), 11, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_init, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, + sym__quest, + sym__backtick_identifier, + ACTIONS(4030), 31, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559349,6 +555623,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, @@ -559357,24 +555632,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82624] = 2, + sym__alpha_identifier, + [82204] = 3, + ACTIONS(4030), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 41, + ACTIONS(4035), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + 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_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, anon_sym_AMP, sym__quest, anon_sym_suspend, @@ -559394,7 +555673,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, @@ -559403,27 +555681,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82672] = 3, + [82255] = 5, + ACTIONS(9048), 1, + anon_sym_DOT, + STATE(5690), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 12, + ACTIONS(4122), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4124), 37, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, 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(4313), 29, + 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, @@ -559441,7 +555723,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, @@ -559450,24 +555731,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82722] = 2, + [82310] = 3, + ACTIONS(4190), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 41, + ACTIONS(4192), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, + 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_DOT, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, anon_sym_AMP, sym__quest, anon_sym_suspend, @@ -559487,7 +555771,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, @@ -559496,99 +555779,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82770] = 27, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [82361] = 8, + ACTIONS(4159), 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, - 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, - 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, - [82868] = 3, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9053), 1, + anon_sym_COLON, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4319), 38, + ACTIONS(4186), 3, 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_EQ, + anon_sym_SEMI, + ACTIONS(4161), 4, anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4184), 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, @@ -559606,6 +555823,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, @@ -559614,21 +555832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82918] = 2, + [82422] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 41, + ACTIONS(4192), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -559660,25 +555878,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82966] = 5, - ACTIONS(9071), 1, - anon_sym_LPAREN, - STATE(5750), 1, - sym_value_arguments, + [82470] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7087), 3, + ACTIONS(4307), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7089), 36, + ACTIONS(4309), 38, anon_sym_AT, + anon_sym_DOT, 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, @@ -559709,28 +555925,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83020] = 3, + [82520] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4166), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4168), 38, + ACTIONS(4035), 41, + sym__automatic_semicolon, 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_COLON, anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + 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, @@ -559748,6 +555962,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, @@ -559756,26 +555971,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83070] = 3, + [82568] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4313), 3, + ACTIONS(9055), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4315), 38, + ACTIONS(7727), 38, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_init, anon_sym_companion, anon_sym_object, anon_sym_fun, - anon_sym_DOT, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559803,26 +556018,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83120] = 2, + [82618] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 41, - sym__automatic_semicolon, + ACTIONS(4249), 12, anon_sym_AT, + anon_sym_DOT, 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_RPAREN, + anon_sym_GT, anon_sym_AMP, sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4247), 29, + anon_sym_get, + anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -559849,26 +556065,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83168] = 3, + [82668] = 27, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9061), 1, + anon_sym_COMMA, + ACTIONS(9063), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7286), 1, + sym_annotation, + STATE(7930), 1, + sym_parameter_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8803), 1, + sym_parameter, + STATE(9092), 1, + sym__function_value_parameter, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7220), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9065), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [82766] = 5, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(5723), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4335), 3, + ACTIONS(7116), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4337), 38, + ACTIONS(7118), 36, 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, @@ -559896,70 +556185,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83218] = 27, - ACTIONS(7398), 1, + [82820] = 27, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9055), 1, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9069), 1, + anon_sym_COMMA, + ACTIONS(9071), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7286), 1, + sym_annotation, + STATE(7930), 1, + sym_parameter_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8803), 1, + sym_parameter, + STATE(8857), 1, + sym__function_value_parameter, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7220), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9065), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [82918] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 12, anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4263), 29, + 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, + [82968] = 27, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, anon_sym_LPAREN, ACTIONS(9073), 1, anon_sym_COMMA, ACTIONS(9075), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7311), 1, + STATE(7286), 1, sym_annotation, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9094), 1, + STATE(8811), 1, sym__function_value_parameter, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 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, + STATE(7220), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(7284), 2, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -559967,70 +556374,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [83316] = 27, - ACTIONS(7398), 1, + [83066] = 27, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9055), 1, - anon_sym_AT, ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, anon_sym_LPAREN, ACTIONS(9077), 1, anon_sym_COMMA, ACTIONS(9079), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7311), 1, + STATE(7286), 1, sym_annotation, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8881), 1, - sym__function_value_parameter, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9735), 1, + STATE(8896), 1, + sym__function_value_parameter, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 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, + STATE(7220), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(7284), 2, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560038,27 +556445,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [83414] = 3, + [83164] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 12, + ACTIONS(4247), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4249), 38, 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(4317), 29, + 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, @@ -560076,7 +556484,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, @@ -560085,21 +556492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83464] = 2, + [83214] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 41, + ACTIONS(4249), 41, sym__automatic_semicolon, anon_sym_AT, - anon_sym_COLON, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, - anon_sym_LT, anon_sym_where, - anon_sym_DOT, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -560131,70 +556538,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83512] = 27, - ACTIONS(7398), 1, + [83262] = 27, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9055), 1, - anon_sym_AT, ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, anon_sym_LPAREN, ACTIONS(9081), 1, anon_sym_COMMA, ACTIONS(9083), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7311), 1, + STATE(7286), 1, sym_annotation, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9063), 1, + STATE(8804), 1, sym__function_value_parameter, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 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, + STATE(7220), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(7284), 2, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560202,97 +556609,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [83360] = 3, 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, + ACTIONS(4263), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4265), 38, + anon_sym_AT, + anon_sym_DOT, + 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, + 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, - [83708] = 2, + [83410] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 41, - sym__automatic_semicolon, + ACTIONS(4030), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4035), 38, 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_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_LT, + 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, @@ -560319,19 +556704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83756] = 4, - ACTIONS(9089), 1, - anon_sym_DOT, - STATE(5717), 1, - aux_sym_user_type_repeat1, + [83462] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 38, + ACTIONS(4309), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, @@ -560366,19 +556750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83807] = 4, - ACTIONS(9092), 1, - anon_sym_DOT, - STATE(5719), 1, - aux_sym_user_type_repeat1, + [83510] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 38, + ACTIONS(4265), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, @@ -560413,19 +556796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83858] = 4, - ACTIONS(9094), 1, - anon_sym_DOT, - STATE(5717), 1, - aux_sym_user_type_repeat1, + [83558] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 38, + ACTIONS(4173), 41, sym__automatic_semicolon, anon_sym_AT, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, @@ -560460,21 +556842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83909] = 3, + [83606] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9098), 3, + ACTIONS(4171), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9096), 36, + ACTIONS(4173), 38, anon_sym_AT, + anon_sym_DOT, 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, @@ -560505,26 +556889,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83957] = 3, + [83656] = 27, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9057), 1, + anon_sym_AT, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_COMMA, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7286), 1, + sym_annotation, + STATE(7930), 1, + sym_parameter_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8803), 1, + sym_parameter, + STATE(8839), 1, + sym__function_value_parameter, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7179), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7181), 36, + STATE(7220), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7221), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7344), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(9065), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83754] = 4, + ACTIONS(9089), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 38, + sym__automatic_semicolon, 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_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, @@ -560542,6 +556998,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, @@ -560550,26 +557007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84005] = 3, + [83805] = 4, + ACTIONS(9091), 1, + anon_sym_DOT, + STATE(5718), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(5181), 36, + ACTIONS(4173), 38, + sym__automatic_semicolon, 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_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, @@ -560587,6 +557045,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, @@ -560595,19 +557054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84053] = 4, - ACTIONS(9100), 1, - sym__quest, - STATE(5723), 1, - aux_sym_nullable_type_repeat1, + [83856] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5718), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4224), 37, + ACTIONS(4124), 38, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -560615,6 +557073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560641,15 +557101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84103] = 3, + [83907] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4011), 3, + ACTIONS(9098), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9103), 36, + ACTIONS(9096), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560686,131 +557146,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84151] = 24, - ACTIONS(7398), 1, + [83955] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8946), 1, + STATE(8976), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 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, - [84241] = 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(8933), 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, + STATE(7221), 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, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560818,65 +557212,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84331] = 24, - ACTIONS(7398), 1, + [84045] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8796), 1, + STATE(8972), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -560884,15 +557278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84421] = 3, + [84135] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 3, + ACTIONS(4894), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7193), 36, + ACTIONS(4896), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560929,26 +557323,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84469] = 3, + [84183] = 4, + ACTIONS(9104), 1, + sym__quest, + STATE(5741), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 3, - anon_sym_val, - anon_sym_var, + ACTIONS(4325), 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, - ACTIONS(5185), 36, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [84233] = 4, + ACTIONS(9104), 1, + sym__quest, + STATE(5741), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4269), 37, + sym__automatic_semicolon, 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_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, + [84283] = 4, + ACTIONS(9106), 1, + anon_sym_DOT, + STATE(5627), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 37, + 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_AMP, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560966,6 +557452,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, @@ -560974,65 +557461,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84517] = 24, - ACTIONS(7398), 1, + [84333] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8977), 1, + STATE(9076), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561040,65 +557527,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84607] = 24, - ACTIONS(7398), 1, + [84423] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8958), 1, + STATE(8924), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561106,24 +557593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84697] = 3, + [84513] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7171), 3, + ACTIONS(9108), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4035), 6, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4045), 31, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(7173), 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, @@ -561143,6 +557629,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, @@ -561151,65 +557638,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84745] = 24, - ACTIONS(7398), 1, + sym__alpha_identifier, + [84563] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8971), 1, + STATE(8907), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561217,147 +557705,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84835] = 24, - ACTIONS(7398), 1, + [84653] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8940), 1, + STATE(9042), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84743] = 4, + ACTIONS(9110), 1, + sym__quest, + STATE(5732), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 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, - [84925] = 24, - ACTIONS(7398), 1, + [84793] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9035), 1, + STATE(8852), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [84883] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9115), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9113), 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, + [84931] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9017), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85021] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7165), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7167), 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, - [85015] = 3, + [85069] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5163), 3, + ACTIONS(9119), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(5165), 36, + ACTIONS(9117), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -561394,25 +558084,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85063] = 3, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [85117] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4212), 38, - sym__automatic_semicolon, + ACTIONS(9123), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9121), 36, 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_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, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561430,7 +558121,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, @@ -561439,18 +558129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85111] = 5, - ACTIONS(9109), 1, + [85165] = 5, + ACTIONS(9125), 1, anon_sym_LPAREN, - STATE(5770), 1, + STATE(5780), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7087), 2, + ACTIONS(7116), 2, anon_sym_val, anon_sym_var, - ACTIONS(7089), 35, + ACTIONS(7118), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -561486,263 +558176,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85163] = 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(9061), 1, - sym_type_projection, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, - sym_function_type_parameters, + [85217] = 3, 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, + ACTIONS(7195), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7197), 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, - [85253] = 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(8983), 1, - sym_type_projection, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, - sym_function_type_parameters, + [85265] = 4, + ACTIONS(9127), 1, + sym__quest, + STATE(5732), 1, + aux_sym_nullable_type_repeat1, 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, + 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, - [85343] = 24, - ACTIONS(7398), 1, + [85315] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8992), 1, + STATE(9020), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 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(8138), 1, - sym__simple_user_type, - STATE(8332), 1, - sym_user_type, - STATE(8827), 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, + STATE(7221), 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, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561750,15 +558333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85523] = 3, + [85405] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, + ACTIONS(4045), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7189), 36, + ACTIONS(9108), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -561795,15 +558378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85571] = 3, + [85453] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 3, + ACTIONS(7201), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(5161), 36, + ACTIONS(7203), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -561840,24 +558423,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85619] = 4, - ACTIONS(9111), 1, - sym__quest, - STATE(5760), 1, - aux_sym_nullable_type_repeat1, + [85501] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9272), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 37, - sym__automatic_semicolon, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [85591] = 4, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9129), 2, anon_sym_AT, - anon_sym_EQ, + sym__backtick_identifier, + ACTIONS(4035), 6, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, anon_sym_SEMI, + ACTIONS(4037), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -561886,65 +558534,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85669] = 24, - ACTIONS(7398), 1, + sym__alpha_identifier, + [85641] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9074), 1, + STATE(8833), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -561952,65 +558601,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85759] = 24, - ACTIONS(7398), 1, + [85731] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9004), 1, + STATE(8800), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562018,26 +558667,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85849] = 4, - ACTIONS(9113), 1, - anon_sym_DOT, - STATE(5630), 1, - aux_sym_user_type_repeat1, + [85821] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 37, + ACTIONS(9133), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9131), 36, 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_companion, + anon_sym_object, + 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, @@ -562055,7 +558704,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, @@ -562064,15 +558712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85899] = 3, + [85869] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7143), 3, + ACTIONS(7181), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7145), 36, + ACTIONS(7183), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562109,15 +558757,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85947] = 3, + [85917] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8834), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86007] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 3, + ACTIONS(4782), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(5189), 36, + ACTIONS(4784), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562154,15 +558868,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85995] = 3, + [86055] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8903), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86145] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4021), 3, + ACTIONS(4794), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9115), 36, + ACTIONS(4796), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562199,15 +558979,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86043] = 3, + [86193] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8835), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9119), 3, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86283] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8994), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86373] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7205), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9117), 36, + ACTIONS(7207), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562244,65 +559156,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86091] = 24, - ACTIONS(7398), 1, + [86421] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9362), 1, + STATE(8941), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86511] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8981), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562310,15 +559288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [86181] = 3, + [86601] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9123), 3, + ACTIONS(4037), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9121), 36, + ACTIONS(9129), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562355,15 +559333,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86229] = 3, + [86649] = 24, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9102), 1, + anon_sym_STAR, + STATE(6034), 1, + sym_type_projection_modifiers, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8865), 1, + sym_type_projection, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7212), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86739] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9127), 3, + ACTIONS(4886), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9125), 36, + ACTIONS(4888), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -562400,65 +559444,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86277] = 24, - ACTIONS(7398), 1, + [86787] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9013), 1, + STATE(8877), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562466,23 +559510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [86367] = 4, + [86877] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9115), 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(4021), 31, + ACTIONS(4858), 3, anon_sym_val, anon_sym_var, + sym_property_modifier, + ACTIONS(4860), 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, @@ -562502,7 +559547,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, @@ -562511,26 +559555,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [86417] = 4, + [86925] = 3, + ACTIONS(4315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9103), 2, + ACTIONS(4313), 38, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4009), 6, - anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_SEMI, - ACTIONS(4011), 31, - anon_sym_val, - anon_sym_var, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562557,66 +559600,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [86467] = 24, - ACTIONS(7398), 1, + [86973] = 24, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9107), 1, + ACTIONS(9102), 1, anon_sym_STAR, - STATE(6124), 1, + STATE(6034), 1, sym_type_projection_modifiers, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9089), 1, + STATE(8925), 1, sym_type_projection, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7403), 2, + ACTIONS(7439), 2, anon_sym_in, anon_sym_out, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7214), 3, + STATE(7212), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(9386), 4, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9322), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -562624,19 +559666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [86557] = 4, - ACTIONS(9129), 1, - sym__quest, - STATE(5723), 1, - aux_sym_nullable_type_repeat1, + [87063] = 3, + ACTIONS(9135), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4249), 37, + ACTIONS(4224), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -562644,6 +559683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562670,26 +559710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86607] = 3, + [87110] = 3, + ACTIONS(9137), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9133), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9131), 36, + ACTIONS(4224), 37, + sym__automatic_semicolon, 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_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, @@ -562707,6 +559745,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, @@ -562715,19 +559754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86655] = 4, - ACTIONS(9111), 1, - sym__quest, - STATE(5760), 1, - aux_sym_nullable_type_repeat1, + [87157] = 4, + ACTIONS(9094), 1, + anon_sym_DOT, + STATE(5719), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 37, + ACTIONS(4141), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -562761,280 +559799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86705] = 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(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, - 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, - [86795] = 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(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, - 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, - [86885] = 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(8908), 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, - [86975] = 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(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, - 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, - [87065] = 3, - ACTIONS(9135), 1, - anon_sym_AMP, + [87206] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 37, + ACTIONS(4738), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -563042,7 +559815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563069,25 +559841,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87112] = 4, - ACTIONS(9094), 1, - anon_sym_DOT, - STATE(5719), 1, - aux_sym_user_type_repeat1, + [87250] = 4, + ACTIONS(9139), 1, + sym__quest, + STATE(5803), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 36, - sym__automatic_semicolon, + ACTIONS(4269), 35, 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563114,16 +559885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87161] = 3, - ACTIONS(9137), 1, - anon_sym_AMP, + [87298] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 37, + ACTIONS(4269), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, @@ -563131,7 +559901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563158,23 +559927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87208] = 3, + [87342] = 4, + ACTIONS(9139), 1, + sym__quest, + STATE(5803), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5189), 35, + ACTIONS(4325), 35, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + 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, @@ -563201,21 +559971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87254] = 3, + [87390] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4021), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9115), 35, + ACTIONS(4721), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + 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, @@ -563244,15 +560013,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87300] = 4, - ACTIONS(9139), 1, + [87434] = 3, + ACTIONS(9141), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4224), 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, - STATE(5781), 1, - aux_sym_nullable_type_repeat1, + 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, + [87480] = 3, + ACTIONS(9143), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 35, + ACTIONS(4224), 36, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -563261,6 +560071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_while, anon_sym_suspend, anon_sym_sealed, @@ -563288,14 +560099,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87348] = 3, + [87526] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9133), 2, + ACTIONS(4674), 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, + [87570] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4794), 2, anon_sym_val, anon_sym_var, - ACTIONS(9131), 35, + ACTIONS(4796), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563331,21 +560184,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87394] = 3, + [87616] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9127), 2, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4030), 31, 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, @@ -563374,14 +560227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87440] = 3, + sym__alpha_identifier, + [87664] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7191), 2, + ACTIONS(4894), 2, anon_sym_val, anon_sym_var, - ACTIONS(7193), 35, + ACTIONS(4896), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563417,14 +560271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87486] = 3, + [87710] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5183), 2, + ACTIONS(9133), 2, anon_sym_val, anon_sym_var, - ACTIONS(5185), 35, + ACTIONS(9131), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563460,13 +560314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87532] = 3, - ACTIONS(9141), 1, - anon_sym_AMP, + [87756] = 4, + ACTIONS(9145), 1, + sym__quest, + STATE(5782), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 36, + ACTIONS(4236), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -563475,7 +560331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_while, anon_sym_suspend, anon_sym_sealed, @@ -563503,21 +560358,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87578] = 3, + [87804] = 5, + ACTIONS(9148), 1, + anon_sym_LT, + STATE(5824), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, + ACTIONS(4161), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4159), 31, anon_sym_val, anon_sym_var, - ACTIONS(7189), 35, + 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, + [87854] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4513), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + 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, @@ -563546,21 +560445,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87624] = 3, + [87898] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9123), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9121), 35, + ACTIONS(4678), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + 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, @@ -563589,14 +560487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87670] = 3, + [87942] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7143), 2, + ACTIONS(4782), 2, anon_sym_val, anon_sym_var, - ACTIONS(7145), 35, + ACTIONS(4784), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563632,24 +560530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87716] = 4, - ACTIONS(9143), 1, - sym__quest, - STATE(5792), 1, - aux_sym_nullable_type_repeat1, + [87988] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4249), 35, + ACTIONS(4682), 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563676,14 +560572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87764] = 3, + [88032] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7179), 2, + ACTIONS(7205), 2, anon_sym_val, anon_sym_var, - ACTIONS(7181), 35, + ACTIONS(7207), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563719,14 +560615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87810] = 3, + [88078] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9119), 2, + ACTIONS(4045), 2, anon_sym_val, anon_sym_var, - ACTIONS(9117), 35, + ACTIONS(9108), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -563762,13 +560658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87856] = 3, - ACTIONS(9145), 1, - anon_sym_AMP, + [88124] = 3, + ACTIONS(4315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 36, + ACTIONS(4313), 36, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -563805,24 +560701,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87902] = 4, - ACTIONS(9139), 1, - sym__quest, - STATE(5781), 1, - aux_sym_nullable_type_repeat1, + [88170] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + 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, + [88216] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 35, + ACTIONS(9123), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9121), 35, 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_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563849,11 +560787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87950] = 2, + [88262] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 37, + ACTIONS(4716), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -563891,22 +560829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87994] = 5, - ACTIONS(9147), 1, - anon_sym_LT, - STATE(5818), 1, - sym_type_arguments, + [88306] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4128), 31, + 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, @@ -563935,24 +560872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [88044] = 3, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [88352] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4212), 36, + ACTIONS(7195), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7197), 35, 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_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563979,14 +560915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88090] = 3, + [88398] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7171), 2, + ACTIONS(7165), 2, anon_sym_val, anon_sym_var, - ACTIONS(7173), 35, + ACTIONS(7167), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -564022,20 +560958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88136] = 2, + [88444] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 37, - sym__automatic_semicolon, + ACTIONS(9115), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9113), 35, 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_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, @@ -564064,14 +561001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88180] = 3, + [88490] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4011), 2, + ACTIONS(4858), 2, anon_sym_val, anon_sym_var, - ACTIONS(9103), 35, + ACTIONS(4860), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -564107,24 +561044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88226] = 4, - ACTIONS(9149), 1, - sym__quest, - STATE(5792), 1, - aux_sym_nullable_type_repeat1, + [88536] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4224), 35, + ACTIONS(4751), 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -564151,14 +561086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88274] = 3, + [88580] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9098), 2, + ACTIONS(4886), 2, anon_sym_val, anon_sym_var, - ACTIONS(9096), 35, + ACTIONS(4888), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -564194,20 +561129,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88320] = 2, + [88626] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 37, - sym__automatic_semicolon, + ACTIONS(7201), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7203), 35, 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_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, @@ -564236,20 +561172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88364] = 2, + [88672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4681), 37, - sym__automatic_semicolon, + ACTIONS(7181), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7183), 35, 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_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, @@ -564278,23 +561215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88408] = 3, + [88718] = 4, + ACTIONS(9150), 1, + sym__quest, + STATE(5782), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5161), 35, + ACTIONS(4206), 35, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + 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, @@ -564321,20 +561259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88454] = 2, + [88766] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4765), 37, - sym__automatic_semicolon, + ACTIONS(4037), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9129), 35, 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_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, @@ -564363,11 +561302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88498] = 2, + [88812] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 37, + ACTIONS(4575), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -564375,7 +561314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -564405,19 +561343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88542] = 4, - ACTIONS(9046), 1, - anon_sym_COLON, + [88855] = 5, + ACTIONS(9152), 1, + anon_sym_DOT, + STATE(5807), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 5, + ACTIONS(4141), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4004), 31, + ACTIONS(4139), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -564449,20 +561387,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [88590] = 2, + [88904] = 5, + ACTIONS(9152), 1, + anon_sym_DOT, + STATE(5810), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4676), 37, - sym__automatic_semicolon, + ACTIONS(4124), 3, 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_LPAREN, + sym__backtick_identifier, + ACTIONS(4122), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564491,11 +561430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88634] = 2, + sym__alpha_identifier, + [88953] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4708), 37, + ACTIONS(4746), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -564503,7 +561443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -564533,21 +561472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88678] = 3, + [88996] = 4, + ACTIONS(9154), 1, + anon_sym_COMMA, + STATE(5811), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5163), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5165), 35, + ACTIONS(4441), 34, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564576,20 +561515,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88724] = 2, + [89043] = 5, + ACTIONS(9156), 1, + anon_sym_DOT, + STATE(5810), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4698), 37, - sym__automatic_semicolon, + ACTIONS(4173), 3, 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_LPAREN, + sym__backtick_identifier, + ACTIONS(4171), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564618,21 +561558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88768] = 3, + sym__alpha_identifier, + [89092] = 4, + ACTIONS(9159), 1, + anon_sym_COMMA, + STATE(5811), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5181), 35, + ACTIONS(4455), 34, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564661,19 +561602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88814] = 4, - ACTIONS(9152), 1, - anon_sym_COMMA, - STATE(5805), 1, - aux_sym_type_constraints_repeat1, + [89139] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 34, + ACTIONS(4455), 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, @@ -564704,21 +561643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88861] = 5, - ACTIONS(9155), 1, - anon_sym_DOT, - STATE(5809), 1, - aux_sym_user_type_repeat1, + [89182] = 3, + ACTIONS(9044), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 3, + ACTIONS(4186), 35, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4153), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564747,20 +561685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [88910] = 3, - ACTIONS(9044), 1, - anon_sym_COLON, + [89227] = 4, + ACTIONS(9154), 1, + anon_sym_COMMA, + STATE(5809), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 35, + ACTIONS(4505), 34, 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, @@ -564790,19 +561728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88955] = 2, + [89274] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 36, - sym__automatic_semicolon, + ACTIONS(4249), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4247), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564831,23 +561768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88998] = 5, - ACTIONS(9157), 1, - anon_sym_DOT, - STATE(5809), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [89318] = 4, + ACTIONS(9162), 1, + anon_sym_COMMA, + STATE(5816), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 3, + ACTIONS(4455), 33, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4166), 31, - anon_sym_val, - anon_sym_var, + 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, @@ -564874,22 +561811,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89047] = 2, + [89364] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 36, - sym__automatic_semicolon, + ACTIONS(4575), 35, 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -564916,21 +561851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89090] = 2, + [89406] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 36, - sym__automatic_semicolon, + ACTIONS(4678), 35, 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -564957,23 +561891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89133] = 4, - ACTIONS(9160), 1, - anon_sym_COMMA, - STATE(5814), 1, - aux_sym_type_constraints_repeat1, + [89448] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4341), 34, - sym__automatic_semicolon, + ACTIONS(4455), 35, anon_sym_AT, anon_sym_EQ, - anon_sym_RBRACE, + 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, @@ -565000,23 +561931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89180] = 5, - ACTIONS(9155), 1, - anon_sym_DOT, - STATE(5806), 1, - aux_sym_user_type_repeat1, + [89490] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 3, + ACTIONS(4513), 35, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4193), 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -565043,21 +561971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89229] = 4, - ACTIONS(9160), 1, - anon_sym_COMMA, - STATE(5805), 1, - aux_sym_type_constraints_repeat1, + [89532] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4426), 34, + 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, @@ -565087,55 +562011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89276] = 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), 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, - [89320] = 2, + [89574] = 3, + ACTIONS(9053), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 35, + ACTIONS(4186), 34, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, @@ -565168,15 +562052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89362] = 2, + [89618] = 4, + ACTIONS(9165), 1, + anon_sym_COMMA, + STATE(5816), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 35, + ACTIONS(4441), 33, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_by, anon_sym_SEMI, anon_sym_get, @@ -565208,16 +562094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89404] = 3, + [89664] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, + ACTIONS(4309), 4, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4335), 31, + ACTIONS(4307), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -565249,55 +562135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89448] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - [89490] = 3, - ACTIONS(9048), 1, - anon_sym_COLON, + [89708] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 34, + ACTIONS(4682), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, @@ -565330,16 +562175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89534] = 2, + [89750] = 4, + ACTIONS(9165), 1, + anon_sym_COMMA, + STATE(5823), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 35, + ACTIONS(4505), 33, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -565370,62 +562217,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89576] = 4, - ACTIONS(9046), 1, - anon_sym_COLON, + [89796] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 6, + ACTIONS(4265), 4, 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, - [89622] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4681), 35, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4263), 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, @@ -565452,16 +562257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89664] = 2, + sym__alpha_identifier, + [89840] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4676), 35, + ACTIONS(4746), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -565492,16 +562298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89706] = 3, + [89882] = 5, + ACTIONS(9167), 1, + anon_sym_LPAREN, + STATE(5876), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 4, + ACTIONS(7118), 2, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4313), 31, + ACTIONS(7116), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -565533,21 +562341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89750] = 5, - ACTIONS(9162), 1, - anon_sym_LT, - STATE(5867), 1, - sym_type_arguments, + [89930] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 5, + ACTIONS(4742), 35, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4128), 28, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -565576,22 +562381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89798] = 5, - ACTIONS(9164), 1, - anon_sym_LPAREN, - STATE(5851), 1, - sym_value_arguments, + [89972] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 2, + ACTIONS(4269), 35, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7087), 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -565618,12 +562421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89846] = 2, + [90014] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 35, + ACTIONS(4674), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -565659,11 +562461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89888] = 2, + [90056] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 35, + ACTIONS(4751), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -565699,18 +562501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89930] = 2, + [90098] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4704), 35, - sym__automatic_semicolon, + ACTIONS(4035), 6, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(4030), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -565739,20 +562543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89972] = 2, + [90144] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4765), 35, + ACTIONS(4173), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4171), 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, @@ -565779,20 +562583,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90014] = 2, + sym__alpha_identifier, + [90188] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4734), 35, - sym__automatic_semicolon, + ACTIONS(4716), 35, 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -565819,16 +562624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90056] = 2, + [90230] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 35, + ACTIONS(4738), 35, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -565859,20 +562664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90098] = 2, + [90272] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 35, + ACTIONS(4756), 35, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, 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, @@ -565899,20 +562704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90140] = 2, + [90314] = 5, + ACTIONS(9169), 1, + anon_sym_LT, + STATE(5854), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4708), 35, + ACTIONS(4161), 5, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4159), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -565939,11 +562747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90182] = 2, + [90362] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4698), 35, + ACTIONS(4721), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -565979,22 +562787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90224] = 4, - ACTIONS(9166), 1, - anon_sym_COMMA, - STATE(5837), 1, - aux_sym_type_constraints_repeat1, + [90404] = 3, + ACTIONS(4417), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 33, + ACTIONS(4419), 33, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_while, + 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, @@ -566012,7 +562819,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, @@ -566021,22 +562827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90270] = 4, - ACTIONS(9169), 1, - anon_sym_COMMA, - STATE(5837), 1, - aux_sym_type_constraints_repeat1, + [90447] = 5, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(5842), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4426), 33, + ACTIONS(4173), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4171), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -566063,22 +562869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90316] = 4, - ACTIONS(9169), 1, - anon_sym_COMMA, - STATE(5838), 1, - aux_sym_type_constraints_repeat1, + [90494] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4341), 33, + ACTIONS(4192), 6, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(4190), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -566105,18 +562909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90362] = 3, + [90537] = 5, + ACTIONS(9174), 1, + anon_sym_DOT, + STATE(5842), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, + ACTIONS(4124), 4, anon_sym_AT, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4317), 31, - anon_sym_val, - anon_sym_var, + sym_label, + ACTIONS(4122), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566145,21 +562951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90406] = 5, - ACTIONS(9171), 1, + [90584] = 5, + ACTIONS(9174), 1, anon_sym_DOT, - STATE(5843), 1, + STATE(5844), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 4, + ACTIONS(4141), 4, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4193), 28, + ACTIONS(4139), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566188,20 +562993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90453] = 3, + [90631] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 6, + ACTIONS(4756), 34, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(4004), 28, + 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, @@ -566228,20 +563032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90496] = 5, - ACTIONS(9171), 1, - anon_sym_DOT, - STATE(5850), 1, - aux_sym_user_type_repeat1, + [90672] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 4, + ACTIONS(4035), 6, anon_sym_AT, + anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, sym_label, - ACTIONS(4153), 28, + ACTIONS(4030), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566270,11 +563072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90543] = 2, + [90715] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 34, + ACTIONS(4742), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -566309,19 +563111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90584] = 2, + [90756] = 3, + ACTIONS(4371), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4734), 34, + ACTIONS(4373), 33, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -566339,7 +563143,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, @@ -566348,20 +563151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90625] = 3, + [90799] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 6, + ACTIONS(4734), 34, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym_label, - ACTIONS(4179), 28, + 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, @@ -566388,21 +563190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90668] = 3, - ACTIONS(4489), 1, - sym_property_modifier, + [90840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 33, - sym__automatic_semicolon, + ACTIONS(9096), 2, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_where, + 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, @@ -566420,6 +563219,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, @@ -566428,21 +563228,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90711] = 3, - ACTIONS(4471), 1, - sym_property_modifier, + sym__alpha_identifier, + [90882] = 21, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4473), 33, - sym__automatic_semicolon, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9007), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [90960] = 21, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8983), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91038] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 5, + anon_sym_AT, + anon_sym_DOT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_where, + sym_label, + ACTIONS(4307), 28, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -566460,6 +563373,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, @@ -566468,19 +563382,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90754] = 2, + [91080] = 21, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91158] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4704), 34, + ACTIONS(7203), 2, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + sym__backtick_identifier, + ACTIONS(7201), 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, @@ -566507,20 +563477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90795] = 5, - ACTIONS(9173), 1, - anon_sym_DOT, - STATE(5850), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [91200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 4, + ACTIONS(4173), 5, anon_sym_AT, + anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4166), 28, + ACTIONS(4171), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566549,14 +563517,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90842] = 3, + [91242] = 21, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 2, + ACTIONS(7183), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5187), 31, + ACTIONS(7181), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -566588,55 +563613,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90884] = 20, - ACTIONS(7398), 1, + [91362] = 21, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8869), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [91440] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, - sym_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(9735), 1, + STATE(8747), 1, + sym_user_type, + STATE(8971), 1, + sym_parameter, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8961), 5, - sym_parameter, + STATE(8860), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566644,56 +563727,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [90960] = 21, - ACTIONS(7398), 1, + [91518] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8673), 1, + STATE(8747), 1, sym_user_type, - STATE(8961), 1, + STATE(8971), 1, sym_parameter, - STATE(9455), 1, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9033), 4, + STATE(8950), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566701,14 +563784,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91038] = 3, + [91596] = 5, + ACTIONS(9178), 1, + anon_sym_LPAREN, + STATE(6373), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9131), 2, + ACTIONS(7118), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7116), 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, + [91642] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9133), 31, + ACTIONS(4794), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -566740,14 +563864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91080] = 3, + [91684] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9096), 2, + ACTIONS(4784), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9098), 31, + ACTIONS(4782), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -566779,56 +563903,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91122] = 21, - ACTIONS(7398), 1, + [91726] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8673), 1, + STATE(8747), 1, sym_user_type, - STATE(8961), 1, + STATE(8971), 1, sym_parameter, - STATE(9455), 1, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9084), 4, + STATE(9069), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566836,17 +563960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91200] = 3, + [91804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 5, + ACTIONS(9113), 2, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4166), 28, + sym__backtick_identifier, + ACTIONS(9115), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566875,56 +563998,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91242] = 21, - ACTIONS(7398), 1, + sym__alpha_identifier, + [91846] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8673), 1, + STATE(8747), 1, sym_user_type, - STATE(8961), 1, + STATE(8971), 1, sym_parameter, - STATE(9455), 1, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9071), 4, + STATE(8851), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566932,14 +564056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91320] = 3, + [91924] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9103), 2, + ACTIONS(9108), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4011), 31, + ACTIONS(4045), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -566971,134 +564095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91362] = 3, - ACTIONS(4471), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4473), 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, - [91404] = 3, - ACTIONS(4489), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - [91446] = 21, - ACTIONS(7398), 1, + [91966] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8673), 1, + STATE(8747), 1, sym_user_type, - STATE(8961), 1, + STATE(8971), 1, sym_parameter, - STATE(9455), 1, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8838), 4, + STATE(8902), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567106,19 +564152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91524] = 5, - ACTIONS(9178), 1, - anon_sym_LPAREN, - STATE(6268), 1, - sym_value_arguments, + [92044] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 3, + ACTIONS(7207), 2, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7087), 28, + sym__backtick_identifier, + ACTIONS(7205), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -567147,14 +564190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91570] = 3, + sym__alpha_identifier, + [92086] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 2, + ACTIONS(9117), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7143), 31, + ACTIONS(9119), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567186,14 +564230,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91612] = 3, + [92128] = 20, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9176), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9115), 2, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8971), 5, + sym_parameter, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92204] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4888), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4021), 31, + ACTIONS(4886), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567225,14 +564325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91654] = 3, + [92246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 2, + ACTIONS(9131), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5159), 31, + ACTIONS(9133), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567264,17 +564364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91696] = 3, + [92288] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 5, + ACTIONS(4896), 2, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - sym_label, - ACTIONS(4335), 28, + sym__backtick_identifier, + ACTIONS(4894), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -567303,128 +564402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91738] = 21, - 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(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(8138), 1, - sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, - sym_user_type, - 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(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(9054), 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, - [91816] = 21, - 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(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(8138), 1, - sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, - sym_user_type, - 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(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(8869), 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, - [91894] = 3, + [92330] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 2, + ACTIONS(9121), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7187), 31, + ACTIONS(9123), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567456,14 +564442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91936] = 3, + [92372] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 2, + ACTIONS(7167), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5163), 31, + ACTIONS(7165), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567495,18 +564481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91978] = 3, + [92414] = 3, + ACTIONS(4417), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9125), 2, + ACTIONS(4419), 32, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9127), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, + 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, @@ -567524,7 +564512,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, @@ -567533,15 +564520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92020] = 3, + [92456] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 2, + ACTIONS(4860), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5179), 31, + ACTIONS(4858), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567573,18 +564559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92062] = 3, + [92498] = 3, + ACTIONS(4371), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9121), 2, + ACTIONS(4373), 32, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9123), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, + 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, @@ -567602,7 +564590,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, @@ -567611,15 +564598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92104] = 3, + [92540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 2, + ACTIONS(9129), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5183), 31, + ACTIONS(4037), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567651,14 +564637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92146] = 3, + [92582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 2, + ACTIONS(7197), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7191), 31, + ACTIONS(7195), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -567690,248 +564676,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92188] = 21, - ACTIONS(7398), 1, + [92624] = 21, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9176), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8673), 1, + STATE(8747), 1, sym_user_type, - STATE(8961), 1, + STATE(8971), 1, sym_parameter, - STATE(9455), 1, + STATE(9388), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8988), 4, + STATE(9062), 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, - [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, + ACTIONS(8745), 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, - [92308] = 21, - ACTIONS(7398), 1, + [92702] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, + STATE(8333), 1, sym_user_type, - STATE(8961), 1, - sym_parameter, - STATE(9455), 1, + STATE(8347), 1, + sym_simple_identifier, + STATE(8891), 1, + sym_variable_declaration, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9026), 4, + STATE(9823), 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, - [92386] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7173), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7171), 31, - anon_sym_val, - anon_sym_var, + ACTIONS(8745), 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, - [92428] = 21, - ACTIONS(7398), 1, + [92777] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, + STATE(8333), 1, sym_user_type, - STATE(8961), 1, - sym_parameter, - STATE(9455), 1, + STATE(8347), 1, + sym_simple_identifier, + STATE(8885), 1, + sym_variable_declaration, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8962), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567939,152 +564843,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92506] = 21, - ACTIONS(7398), 1, + [92852] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, + STATE(8333), 1, sym_user_type, - STATE(8961), 1, - sym_parameter, - STATE(9455), 1, + STATE(8342), 1, + sym_simple_identifier, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9059), 4, + STATE(9186), 5, + sym_parameter, 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, - [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, + ACTIONS(8745), 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, - [92626] = 21, - ACTIONS(7398), 1, + [92925] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8343), 1, - sym_simple_identifier, - STATE(8673), 1, + STATE(8333), 1, sym_user_type, - STATE(8961), 1, - sym_parameter, - STATE(9455), 1, + STATE(8347), 1, + sym_simple_identifier, + STATE(9013), 1, + sym_variable_declaration, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8842), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568092,54 +564952,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92704] = 20, - ACTIONS(7398), 1, + [93000] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8348), 1, + STATE(8347), 1, sym_simple_identifier, - STATE(8967), 1, + STATE(8826), 1, sym_variable_declaration, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568147,54 +565007,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92779] = 20, - ACTIONS(7398), 1, + [93075] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8348), 1, + STATE(8347), 1, sym_simple_identifier, - STATE(8929), 1, + STATE(8883), 1, sym_variable_declaration, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568202,54 +565062,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92854] = 20, - ACTIONS(7398), 1, + [93150] = 20, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8348), 1, + STATE(8347), 1, sym_simple_identifier, - STATE(8822), 1, + STATE(8797), 1, sym_variable_declaration, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(9823), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568257,53 +565117,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92929] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [93225] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, + sym_user_type, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, + sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2865), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3458), 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, + [93297] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 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(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6503), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8332), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1897), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7411), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, + sym__type_reference, sym_user_type, - STATE(8343), 1, + sym_parenthesized_type, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93369] = 19, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, - sym_function_type_parameters, + STATE(5691), 1, + sym__lexical_identifier, + STATE(6458), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(5448), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7382), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, sym__type_reference, + sym_user_type, sym_parenthesized_type, - STATE(7213), 3, + ACTIONS(9196), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93441] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, + sym_user_type, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, + sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4564), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9181), 5, - sym_parameter, + STATE(4995), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568311,54 +565329,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93002] = 20, - ACTIONS(7398), 1, + [93513] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8348), 1, - sym_simple_identifier, - STATE(9092), 1, - sym_variable_declaration, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(8648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568366,54 +565382,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93077] = 20, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [93585] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, + sym_user_type, + STATE(6423), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(9697), 1, + sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4564), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4776), 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, + [93657] = 19, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9210), 1, + anon_sym_dynamic, + ACTIONS(9212), 1, + sym__backtick_identifier, + STATE(5602), 1, + sym_simple_identifier, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5726), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(5775), 1, sym_user_type, - STATE(8348), 1, - sym_simple_identifier, - STATE(9096), 1, - sym_variable_declaration, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6412), 1, + sym_type_modifiers, + STATE(9469), 1, sym_function_type_parameters, + STATE(10050), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(5773), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5817), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9208), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [93729] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7165), 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, + [93769] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, + sym_user_type, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, + sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(5039), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568421,54 +565578,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93152] = 20, - ACTIONS(7398), 1, + [93841] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(8138), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(8348), 1, - sym_simple_identifier, - STATE(8806), 1, - sym_variable_declaration, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(8713), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568476,52 +565631,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93227] = 19, - ACTIONS(387), 1, + [93913] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7203), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7201), 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, + [93953] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(889), 4, + STATE(9763), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568529,61 +565721,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93299] = 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(6477), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + [94025] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7439), 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, + ACTIONS(7197), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7195), 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, - [93371] = 19, - ACTIONS(9105), 1, + [94065] = 19, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -568591,43 +565767,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9192), 1, + ACTIONS(9214), 1, sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9216), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9220), 1, sym__backtick_identifier, - STATE(5687), 1, - sym_simple_identifier, - STATE(5694), 1, + STATE(5683), 1, sym__lexical_identifier, - STATE(6481), 1, + STATE(5695), 1, + sym_simple_identifier, + STATE(6484), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5439), 2, + STATE(5496), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7564), 2, + STATE(7589), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9196), 7, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568635,52 +565811,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93443] = 19, - ACTIONS(115), 1, + [94137] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3544), 4, + STATE(4919), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568688,52 +565864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93515] = 19, - ACTIONS(7), 1, + [94209] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5254), 4, + STATE(4875), 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, @@ -568741,52 +565917,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93587] = 19, - ACTIONS(7405), 1, + [94281] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9208), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9212), 1, - anon_sym_dynamic, - ACTIONS(9214), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6422), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, sym_type_modifiers, - STATE(8325), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8333), 1, - sym__lexical_identifier, - STATE(8551), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8921), 1, + STATE(8333), 1, sym_user_type, - STATE(9494), 1, - sym_function_type_parameters, - STATE(9703), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8825), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8588), 4, + STATE(8736), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9210), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568794,52 +565970,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93659] = 19, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [94353] = 19, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + ACTIONS(9210), 1, anon_sym_dynamic, - ACTIONS(9190), 1, - anon_sym_suspend, - STATE(3294), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + STATE(5602), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(5616), 1, sym__lexical_identifier, - STATE(6457), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(5726), 1, sym__simple_user_type, + STATE(5775), 1, + sym_user_type, + STATE(6412), 1, + sym_type_modifiers, + STATE(9469), 1, + sym_function_type_parameters, + STATE(10050), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2362), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7428), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(5773), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(5828), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568847,52 +566023,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93731] = 19, - ACTIONS(7), 1, + [94425] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5467), 4, + STATE(4997), 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, @@ -568900,52 +566076,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93803] = 19, - ACTIONS(7405), 1, + [94497] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9216), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9218), 1, - anon_sym_LPAREN, - ACTIONS(9222), 1, - anon_sym_dynamic, - ACTIONS(9224), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5685), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(6429), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7891), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(8333), 1, sym_user_type, - STATE(9645), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9819), 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8337), 4, + STATE(8777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568953,52 +566129,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93875] = 19, - ACTIONS(387), 1, + [94569] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, + STATE(4558), 1, sym_user_type, - STATE(6439), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(967), 4, + STATE(5048), 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, @@ -569006,52 +566182,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93947] = 19, - ACTIONS(473), 1, + [94641] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3761), 4, + STATE(9753), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569059,52 +566235,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94019] = 19, - ACTIONS(473), 1, + [94713] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3971), 4, + STATE(9573), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569112,52 +566288,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94091] = 19, - ACTIONS(473), 1, + [94785] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3977), 4, + STATE(9923), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569165,105 +566341,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94163] = 19, - ACTIONS(115), 1, + [94857] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - 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(2955), 1, - sym__lexical_identifier, - STATE(6469), 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(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(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, - [94235] = 19, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9202), 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, + STATE(4533), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(6440), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4821), 4, + STATE(5030), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569271,52 +566394,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94307] = 19, - ACTIONS(7), 1, + [94929] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5463), 4, + STATE(3424), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569324,52 +566447,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94379] = 19, - ACTIONS(7), 1, + [95001] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5472), 4, + STATE(3421), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569377,105 +566500,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94451] = 19, - ACTIONS(211), 1, + [95073] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6414), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4675), 4, + STATE(4895), 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, - [94523] = 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(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(6473), 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(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, - 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, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569483,52 +566553,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94595] = 19, - ACTIONS(115), 1, + [95145] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4147), 4, + STATE(4878), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569536,52 +566606,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94667] = 19, - ACTIONS(211), 1, + [95217] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6414), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4843), 4, + STATE(4950), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569589,52 +566659,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94739] = 19, - ACTIONS(7405), 1, + [95289] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9202), 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, + STATE(4533), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(6440), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4847), 4, + STATE(4648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569642,52 +566712,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94811] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [95361] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8714), 4, + STATE(4674), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569695,52 +566765,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94883] = 19, + [95433] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4717), 1, sym_user_type, - STATE(6447), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5095), 4, + STATE(5113), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569748,52 +566818,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94955] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [95505] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9204), 1, - anon_sym_LPAREN, + sym__alpha_identifier, ACTIONS(9206), 1, + anon_sym_LPAREN, + ACTIONS(9210), 1, anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + STATE(5602), 1, + sym_simple_identifier, + STATE(5616), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(5726), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4815), 1, + STATE(5775), 1, sym_user_type, - STATE(6447), 1, + STATE(6412), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9469), 1, sym_function_type_parameters, + STATE(10050), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(5773), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5473), 4, + STATE(5848), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569801,52 +566871,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95027] = 19, - ACTIONS(7398), 1, + [95577] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8658), 4, + STATE(8670), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569854,52 +566924,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95099] = 19, - ACTIONS(7), 1, + [95649] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4926), 4, + STATE(4209), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569907,52 +566977,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95171] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [95721] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9232), 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, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4628), 1, sym_user_type, - STATE(9735), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10058), 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, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9899), 4, + STATE(5381), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569960,52 +567030,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95243] = 19, - ACTIONS(115), 1, + [95793] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3524), 4, + STATE(5131), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570013,52 +567083,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95315] = 19, - ACTIONS(387), 1, + [95865] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(860), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6439), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(988), 4, + STATE(4882), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570066,52 +567136,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95387] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [95937] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8716), 4, + STATE(4203), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570119,52 +567189,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95459] = 19, - ACTIONS(7405), 1, + [96009] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6440), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5200), 4, + STATE(4888), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570172,105 +567242,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95531] = 19, - ACTIONS(387), 1, + [96081] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - 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(823), 1, - sym__lexical_identifier, - STATE(6504), 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(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(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, - [95603] = 19, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9250), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9254), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9256), 1, - sym__backtick_identifier, - STATE(5602), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5617), 1, - sym_simple_identifier, - STATE(5748), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(5784), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, STATE(6449), 1, sym_type_modifiers, - STATE(9753), 1, - sym_parenthesized_user_type, - STATE(10117), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5785), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5844), 4, + STATE(4202), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9252), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570278,52 +567295,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95675] = 19, - ACTIONS(387), 1, + [96153] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6525), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, + sym_user_type, + STATE(6423), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9697), 1, + sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7382), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(4564), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(4822), 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, @@ -570331,52 +567348,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95747] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [96225] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10067), 4, + STATE(4828), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570384,105 +567401,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95819] = 19, - ACTIONS(115), 1, + [96297] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4134), 4, + STATE(4914), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96369] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7181), 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, - [95891] = 19, - ACTIONS(473), 1, + [96409] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(4717), 1, sym_user_type, - STATE(6419), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3821), 4, + STATE(4808), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570490,52 +567544,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95963] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [96481] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9232), 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, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4628), 1, sym_user_type, - STATE(9735), 1, + STATE(6440), 1, + sym_type_modifiers, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10058), 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, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8677), 4, + STATE(5423), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570543,52 +567597,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96035] = 19, + [96553] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4717), 1, sym_user_type, - STATE(6447), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5479), 4, + STATE(5161), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570596,52 +567650,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96107] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + [96625] = 19, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, - anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9214), 1, + sym__alpha_identifier, + ACTIONS(9216), 1, + anon_sym_LPAREN, + ACTIONS(9220), 1, + sym__backtick_identifier, + STATE(5683), 1, sym__lexical_identifier, - STATE(2973), 1, - sym_user_type, - STATE(6425), 1, + STATE(5695), 1, + sym_simple_identifier, + STATE(6525), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(5508), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7526), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3502), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1592), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570649,52 +567703,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96179] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [96697] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8671), 4, + STATE(4930), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570702,52 +567756,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96251] = 19, - ACTIONS(7405), 1, + [96769] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6440), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5258), 4, + STATE(5210), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570755,52 +567809,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96323] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [96841] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8649), 4, + STATE(4929), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570808,52 +567862,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96395] = 19, - ACTIONS(115), 1, + [96913] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3468), 4, + STATE(4925), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570861,52 +567915,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96467] = 19, - ACTIONS(7405), 1, + [96985] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(3572), 1, sym_user_type, - STATE(9645), 1, - sym_parenthesized_user_type, - STATE(10143), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5798), 4, + STATE(4164), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570914,52 +567968,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96539] = 19, - ACTIONS(115), 1, + [97057] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6425), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4123), 4, + STATE(4165), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570967,52 +568021,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96611] = 19, - ACTIONS(115), 1, + [97129] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6425), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3474), 4, + STATE(4166), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571020,52 +568074,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96683] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [97201] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, sym_user_type, - STATE(6425), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4201), 4, + STATE(4873), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571073,52 +568127,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96755] = 19, - ACTIONS(7398), 1, + [97273] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9557), 4, + STATE(8675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571126,52 +568180,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96827] = 19, - ACTIONS(115), 1, + [97345] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4224), 4, + STATE(4943), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571179,52 +568233,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96899] = 19, - ACTIONS(7405), 1, + [97417] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - ACTIONS(9224), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(6429), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(6426), 1, sym_type_modifiers, - STATE(7891), 1, + STATE(7911), 1, sym__simple_user_type, STATE(8324), 1, sym_user_type, - STATE(9645), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8335), 4, + STATE(5787), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571232,52 +568286,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96971] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [97489] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4578), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4815), 1, + STATE(4628), 1, sym_user_type, - STATE(6447), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4915), 4, + STATE(5333), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571285,47 +568339,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97043] = 19, - ACTIONS(211), 1, + [97561] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5509), 4, + STATE(4710), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -571338,47 +568392,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97115] = 19, - ACTIONS(211), 1, + [97633] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5483), 4, + STATE(4712), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -571391,52 +568445,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97187] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [97705] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8665), 4, + STATE(4740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571444,52 +568498,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97259] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [97777] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8296), 4, + STATE(4743), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571497,52 +568551,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97331] = 19, - ACTIONS(7405), 1, + [97849] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - ACTIONS(9224), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5717), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(5768), 1, sym_user_type, - STATE(9645), 1, - sym_parenthesized_user_type, - STATE(10143), 1, + STATE(6441), 1, + sym_type_modifiers, + STATE(9511), 1, sym_function_type_parameters, + STATE(9817), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8355), 4, + STATE(5805), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571550,52 +568604,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97403] = 19, - ACTIONS(115), 1, + [97921] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9200), 1, anon_sym_LPAREN, ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(6425), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4116), 4, + STATE(4759), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571603,52 +568657,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97475] = 19, - ACTIONS(211), 1, + [97993] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, - sym_user_type, - STATE(6414), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(6494), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7395), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5525), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571656,52 +568710,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97547] = 19, - ACTIONS(211), 1, + [98065] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6414), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5010), 4, + STATE(3741), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571709,52 +568763,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97619] = 19, - ACTIONS(115), 1, + [98137] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, - anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(2973), 1, - sym_user_type, - STATE(6425), 1, + STATE(6496), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(438), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7396), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4106), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1592), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571762,52 +568816,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97691] = 19, + [98209] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3567), 4, + STATE(3733), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571815,52 +568869,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97763] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + [98281] = 19, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9264), 1, + anon_sym_LPAREN, + ACTIONS(9268), 1, + sym__backtick_identifier, + STATE(2817), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(2895), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, - sym_user_type, - STATE(6439), 1, + STATE(6515), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2313), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7441), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1074), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571868,51 +568922,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97835] = 19, - ACTIONS(387), 1, + [98353] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, - sym_user_type, - STATE(6439), 1, + sym__lexical_identifier, + STATE(6498), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(428), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7400), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1078), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -571921,52 +568975,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97907] = 19, - ACTIONS(7398), 1, + [98425] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8662), 4, + STATE(9639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571974,52 +569028,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97979] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [98497] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6501), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(439), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7403), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8661), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572027,52 +569081,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98051] = 19, - ACTIONS(7405), 1, + [98569] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9260), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9264), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9266), 1, - sym__backtick_identifier, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(3064), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6448), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9673), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9910), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3066), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3626), 4, + STATE(3751), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9262), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572080,52 +569134,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98123] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [98641] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(860), 1, + STATE(4628), 1, sym_user_type, - STATE(6439), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9776), 1, sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1451), 4, + STATE(4846), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572133,105 +569187,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98195] = 19, - ACTIONS(7398), 1, + [98713] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 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(9517), 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, - [98267] = 19, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, - anon_sym_LPAREN, - 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(4663), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4885), 4, + STATE(8653), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572239,52 +569240,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98339] = 19, - ACTIONS(7398), 1, + [98785] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8660), 4, + STATE(8642), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572292,52 +569293,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98411] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [98857] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 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(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6504), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(1839), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7424), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8657), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572345,52 +569346,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98483] = 19, - ACTIONS(387), 1, + [98929] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1708), 4, + STATE(8703), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572398,52 +569399,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98555] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [99001] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, sym_user_type, - STATE(6425), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3304), 4, + STATE(5330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572451,52 +569452,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98627] = 19, - ACTIONS(7398), 1, + [99073] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9484), 4, + STATE(8743), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572504,52 +569505,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98699] = 19, - ACTIONS(387), 1, + [99145] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6456), 1, + STATE(6506), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(570), 2, + STATE(1865), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7368), 2, + STATE(7425), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572557,52 +569558,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98771] = 19, - ACTIONS(473), 1, + [99217] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - ACTIONS(9190), 1, - anon_sym_suspend, - STATE(3294), 1, - sym_simple_identifier, - STATE(3332), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(6522), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(4624), 1, sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, + sym_user_type, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, + sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2357), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7431), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(4718), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(5262), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572610,52 +569611,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98843] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [99289] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8693), 4, + STATE(4107), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572663,52 +569664,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98915] = 19, - ACTIONS(7405), 1, + [99361] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9218), 1, - anon_sym_LPAREN, ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, anon_sym_dynamic, - ACTIONS(9268), 1, - sym__alpha_identifier, - ACTIONS(9272), 1, - sym__backtick_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(5718), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(5769), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6430), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9676), 1, - sym_parenthesized_user_type, - STATE(10064), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5808), 4, + STATE(5181), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9270), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572716,52 +569717,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98987] = 19, - ACTIONS(7398), 1, + [99433] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8692), 4, + STATE(8649), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572769,52 +569770,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99059] = 19, - ACTIONS(387), 1, + [99505] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1300), 4, + STATE(4110), 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, @@ -572822,52 +569823,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99131] = 19, - ACTIONS(7398), 1, + [99577] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7207), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7205), 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, + [99617] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8690), 4, + STATE(8711), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572875,12 +569913,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99203] = 19, - ACTIONS(387), 1, + [99689] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8674), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99761] = 19, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -572888,39 +569975,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(812), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, - STATE(823), 1, + STATE(5691), 1, sym__lexical_identifier, - STATE(6452), 1, + STATE(6459), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, + STATE(5479), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7365), 2, + STATE(7453), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572928,52 +570019,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99275] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [99833] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8324), 1, sym_user_type, - STATE(9735), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9806), 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, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8703), 4, + STATE(9359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572981,52 +570072,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99347] = 19, - ACTIONS(7), 1, + [99905] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, - anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6447), 1, - sym_type_modifiers, - STATE(9845), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4987), 4, + STATE(8660), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573034,52 +570125,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99419] = 19, - ACTIONS(387), 1, + [99977] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1250), 4, + STATE(4112), 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, @@ -573087,52 +570178,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99491] = 19, - ACTIONS(387), 1, + [100049] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1253), 4, + STATE(8647), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573140,52 +570231,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99563] = 19, - ACTIONS(387), 1, + [100121] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1807), 4, + STATE(4114), 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, @@ -573193,52 +570284,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99635] = 19, - ACTIONS(7398), 1, + [100193] = 19, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9264), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9268), 1, + sym__backtick_identifier, + STATE(2817), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(2895), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(6523), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 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, + STATE(2302), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7469), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8689), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573246,52 +570337,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99707] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [100265] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8639), 4, + STATE(4117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573299,52 +570390,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99779] = 19, - ACTIONS(211), 1, + [100337] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4611), 4, + STATE(8587), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573352,47 +570443,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99851] = 19, - ACTIONS(7), 1, + [100409] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6447), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5121), 4, + STATE(3624), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -573405,52 +570496,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99923] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [100481] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5717), 1, sym__simple_user_type, - STATE(860), 1, + STATE(5768), 1, sym_user_type, - STATE(6439), 1, + STATE(6441), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9511), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9817), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1254), 4, + STATE(5808), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573458,105 +570549,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99995] = 19, + [100553] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(812), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(6471), 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(441), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7423), 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, + STATE(2867), 1, 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, - [100067] = 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, + STATE(6444), 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, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8709), 4, + STATE(3625), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573564,52 +570602,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100139] = 19, + [100625] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6439), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1306), 4, + STATE(3629), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573617,52 +570655,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100211] = 19, + [100697] = 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(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9226), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6527), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(2899), 1, sym__simple_user_type, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, + sym_user_type, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, + sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7577), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3049), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(3487), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573670,52 +570708,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100283] = 19, - ACTIONS(7398), 1, + [100769] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9742), 4, + STATE(8686), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573723,52 +570761,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100355] = 19, - ACTIONS(7), 1, + [100841] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5546), 4, + STATE(3485), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573776,52 +570814,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100427] = 19, - ACTIONS(211), 1, + [100913] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4996), 4, + STATE(8689), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573829,52 +570867,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100499] = 19, - ACTIONS(387), 1, + [100985] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1153), 4, + STATE(8697), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573882,52 +570920,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100571] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [101057] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8688), 4, + STATE(3480), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573935,51 +570973,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100643] = 19, - ACTIONS(473), 1, + [101129] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9190), 1, - anon_sym_suspend, - STATE(3294), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6497), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2688), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7461), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(3895), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -573988,143 +571026,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100715] = 19, - ACTIONS(7), 1, + [101201] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, - anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6447), 1, - sym_type_modifiers, - STATE(9845), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5548), 4, + STATE(9823), 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, - [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, + ACTIONS(8745), 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, - [100829] = 19, - ACTIONS(473), 1, + [101273] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(4717), 1, sym_user_type, - STATE(6419), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4166), 4, + STATE(5180), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574132,52 +571132,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100901] = 19, - ACTIONS(473), 1, + [101345] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3802), 4, + STATE(9437), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574185,52 +571185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100973] = 19, - ACTIONS(7398), 1, + [101417] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8647), 4, + STATE(8715), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574238,52 +571238,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101045] = 19, - ACTIONS(387), 1, + [101489] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6439), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1340), 4, + STATE(3479), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574291,52 +571291,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101117] = 19, - ACTIONS(7405), 1, + [101561] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9645), 1, - sym_parenthesized_user_type, - STATE(10143), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5808), 4, + STATE(3473), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574344,52 +571344,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101189] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [101633] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8641), 4, + STATE(4592), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574397,52 +571397,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101705] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8711), 4, + STATE(1363), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574450,52 +571450,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101333] = 19, - ACTIONS(211), 1, + [101777] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6414), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4844), 4, + STATE(1370), 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, @@ -574503,52 +571503,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101405] = 19, - ACTIONS(7), 1, + [101849] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, - anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6447), 1, - sym_type_modifiers, - STATE(9845), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4910), 4, + STATE(9548), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574556,52 +571556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101477] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [101921] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9755), 4, + STATE(4586), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574609,47 +571609,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101549] = 19, - ACTIONS(387), 1, + [101993] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6439), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1256), 4, + STATE(1372), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -574662,52 +571662,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101621] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [102065] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8685), 4, + STATE(3873), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574715,52 +571715,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101693] = 19, - ACTIONS(7), 1, + [102137] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5203), 4, + STATE(4614), 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, @@ -574768,52 +571768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101765] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [102209] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6514), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(582), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7528), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8635), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574821,52 +571821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101837] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [102281] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6483), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(2392), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7499), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8762), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574874,51 +571874,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101909] = 19, - ACTIONS(387), 1, + [102353] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, - sym_user_type, - STATE(6439), 1, + sym__lexical_identifier, + STATE(6510), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(581), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7544), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1258), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -574927,52 +571927,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101981] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [102425] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6500), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(568), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7562), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 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, + [102497] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8764), 4, + STATE(4186), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574980,52 +572033,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102053] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [102569] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9280), 1, + anon_sym_dynamic, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(6431), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(8323), 1, + sym__lexical_identifier, + STATE(8326), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8622), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8806), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9663), 1, sym_function_type_parameters, + STATE(10126), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(9027), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8765), 4, + STATE(8292), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575033,52 +572086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102125] = 19, - ACTIONS(7398), 1, + [102641] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8928), 4, + STATE(8672), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575086,51 +572139,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102197] = 19, - ACTIONS(473), 1, + [102713] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, - anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6492), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2631), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7459), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4151), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -575139,52 +572192,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102269] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [102785] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6497), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(577), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7564), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8769), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575192,52 +572245,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102341] = 19, + [102857] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9230), 1, - anon_sym_LPAREN, - STATE(2938), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6496), 1, + STATE(6485), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2323), 2, + STATE(2368), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7399), 2, + STATE(7571), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575245,52 +572298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102413] = 19, - ACTIONS(7405), 1, + [102929] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(3572), 1, sym_user_type, - STATE(6440), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5330), 4, + STATE(3903), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575298,52 +572351,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102485] = 19, - ACTIONS(7), 1, + [103001] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(2890), 1, sym_simple_identifier, - STATE(4815), 1, - sym_user_type, - STATE(6447), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6477), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2366), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7572), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, sym__type_reference, + sym_user_type, sym_parenthesized_type, - STATE(7848), 2, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [103073] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(6464), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2337), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7579), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5552), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575351,52 +572457,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102557] = 19, - ACTIONS(387), 1, + [103145] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1327), 4, + STATE(3758), 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, @@ -575404,12 +572510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102629] = 19, - ACTIONS(115), 1, + [103217] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -575417,39 +572523,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6509), 1, + STATE(6462), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2324), 2, + STATE(2329), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7535), 2, + STATE(7580), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575457,52 +572563,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102701] = 19, - ACTIONS(7398), 1, + [103289] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8706), 4, + STATE(9455), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575510,105 +572616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102773] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [103361] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 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(8707), 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, - [102845] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9280), 1, + anon_sym_dynamic, + ACTIONS(9282), 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, + STATE(6431), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(8323), 1, + sym__lexical_identifier, + STATE(8326), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8622), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8806), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9663), 1, sym_function_type_parameters, + STATE(10126), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(9027), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8708), 4, + STATE(8321), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575616,52 +572669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102917] = 19, - ACTIONS(387), 1, + [103433] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(985), 4, + STATE(4151), 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, @@ -575669,52 +572722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102989] = 19, - ACTIONS(7398), 1, + [103505] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8710), 4, + STATE(8766), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575722,52 +572775,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103061] = 19, - ACTIONS(7), 1, + [103577] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4815), 1, + STATE(3572), 1, sym_user_type, - STATE(6447), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5101), 4, + STATE(4009), 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, @@ -575775,52 +572828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103133] = 19, - ACTIONS(7398), 1, + [103649] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6432), 1, sym_type_modifiers, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(8333), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8368), 4, + STATE(8754), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575828,52 +572881,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103205] = 19, - ACTIONS(115), 1, + [103721] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9240), 1, anon_sym_LPAREN, - STATE(2938), 1, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6493), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_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, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(3778), 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, @@ -575881,52 +572934,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [103793] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8659), 4, + STATE(5127), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575934,52 +572987,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103349] = 19, - ACTIONS(557), 1, + [103865] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2840), 1, + STATE(3572), 1, sym_user_type, - STATE(6433), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3378), 4, + STATE(4171), 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, @@ -575987,52 +573040,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103421] = 19, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [103937] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4229), 4, + STATE(9462), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576040,52 +573093,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103493] = 19, - ACTIONS(473), 1, + [104009] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, - anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(6466), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2638), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7457), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, + sym__type_reference, sym_user_type, - STATE(6419), 1, + 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, + [104081] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4226), 4, + STATE(8292), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576093,52 +573199,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103565] = 19, - ACTIONS(387), 1, + [104153] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3572), 1, sym_user_type, - STATE(6439), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(892), 4, + STATE(4193), 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, @@ -576146,52 +573252,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103637] = 19, - ACTIONS(557), 1, + [104225] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3204), 4, + STATE(9382), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576199,47 +573305,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103709] = 19, - ACTIONS(473), 1, + [104297] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4196), 4, + STATE(4198), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -576252,52 +573358,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103781] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [104369] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9284), 4, + STATE(3071), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576305,52 +573411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103853] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [104441] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8718), 4, + STATE(3104), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576358,52 +573464,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103925] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [104513] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4888), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4886), 28, + anon_sym_get, + anon_sym_set, anon_sym_suspend, - ACTIONS(8672), 1, + 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, + [104553] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8777), 4, + STATE(3800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576411,52 +573554,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103997] = 19, + [104625] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6439), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(895), 4, + STATE(3102), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576464,52 +573607,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104069] = 19, - ACTIONS(7405), 1, + [104697] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9218), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9268), 1, - sym__alpha_identifier, - ACTIONS(9272), 1, - sym__backtick_identifier, - STATE(5686), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(5713), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(5718), 1, - sym__simple_user_type, - STATE(5769), 1, + STATE(2867), 1, sym_user_type, - STATE(6430), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9676), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(10064), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5798), 4, + STATE(3197), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9270), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576517,52 +573660,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104141] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [104769] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8720), 4, + STATE(3227), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576570,52 +573713,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104213] = 19, - ACTIONS(557), 1, + [104841] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4558), 1, sym_user_type, - STATE(6433), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3379), 4, + STATE(4892), 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, @@ -576623,52 +573766,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104285] = 19, - ACTIONS(7405), 1, + [104913] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9182), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9645), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9354), 4, + STATE(3463), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576676,52 +573819,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104357] = 19, - ACTIONS(7398), 1, + [104985] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8721), 4, + STATE(8690), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576729,52 +573872,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104429] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [105057] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9210), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + STATE(5602), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5726), 1, sym__simple_user_type, - STATE(860), 1, + STATE(5775), 1, sym_user_type, - STATE(6439), 1, + STATE(6412), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9469), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(10050), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(5773), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(897), 4, + STATE(5825), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576782,52 +573925,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104501] = 19, - ACTIONS(387), 1, + [105129] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1181), 4, + STATE(8880), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576835,105 +573978,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104573] = 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, + [105201] = 3, 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(8638), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + ACTIONS(4860), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4858), 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, - [104645] = 19, - ACTIONS(7398), 1, + [105241] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8683), 4, + STATE(8691), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576941,52 +574068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104717] = 19, - ACTIONS(7398), 1, + [105313] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8724), 4, + STATE(8725), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576994,52 +574121,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104789] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [105385] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(6426), 1, + sym_type_modifiers, + STATE(7911), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8324), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9531), 1, sym_parenthesized_user_type, + STATE(9806), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(902), 4, + STATE(8346), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577047,52 +574174,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104861] = 19, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9232), 1, + [105457] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(2890), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4665), 1, - sym_user_type, - STATE(6440), 1, + STATE(6470), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9741), 1, - sym_function_type_parameters, - STATE(9901), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2465), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7554), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4835), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9236), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577100,52 +574227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104933] = 19, - ACTIONS(557), 1, + [105529] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3380), 4, + STATE(9673), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577153,52 +574280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105005] = 19, - ACTIONS(7398), 1, + [105601] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8682), 4, + STATE(8692), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577206,52 +574333,52 @@ static const uint16_t ts_small_parse_table[] = { 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(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + [105673] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2938), 1, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(6503), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7911), 1, sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9531), 1, + sym_parenthesized_user_type, + STATE(9806), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2460), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7479), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(5724), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(9269), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577259,52 +574386,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105149] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [105745] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4796), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4794), 28, + anon_sym_get, + anon_sym_set, anon_sym_suspend, - ACTIONS(8672), 1, + 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, + [105785] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8681), 4, + STATE(5327), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577312,52 +574476,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105221] = 19, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [105857] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4578), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2840), 1, + STATE(4628), 1, sym_user_type, - STATE(6433), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9776), 1, sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3382), 4, + STATE(4809), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577365,52 +574529,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105293] = 19, - ACTIONS(115), 1, + [105929] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(2938), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(6480), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(2867), 1, + sym_user_type, + STATE(6444), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9797), 1, + sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2463), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7568), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(2865), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(3452), 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, @@ -577418,52 +574582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105365] = 19, - ACTIONS(7398), 1, + [106001] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9112), 4, + STATE(8696), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577471,52 +574635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105437] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [106073] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8680), 4, + STATE(3445), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577524,52 +574688,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105509] = 19, - ACTIONS(557), 1, + [106145] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6433), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3383), 4, + STATE(3442), 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, @@ -577577,12 +574741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105581] = 19, - ACTIONS(473), 1, + [106217] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -577592,37 +574756,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6482), 1, + STATE(6475), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, + STATE(2327), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7503), 2, + STATE(7438), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577630,105 +574794,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105653] = 19, - ACTIONS(557), 1, + [106289] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3662), 4, + STATE(5400), 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, - [105725] = 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(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, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577736,52 +574847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105797] = 19, - ACTIONS(211), 1, + [106361] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6414), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4585), 4, + STATE(5321), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577789,52 +574900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105869] = 19, - ACTIONS(387), 1, + [106433] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6512), 1, + STATE(6489), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, + STATE(2323), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7409), 2, + STATE(7568), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577842,105 +574953,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105941] = 19, + [106505] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 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(3665), 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, - [106013] = 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9469), 4, + STATE(1289), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577948,105 +575006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106085] = 19, - ACTIONS(7398), 1, + [106577] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 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(8739), 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, - [106157] = 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, - STATE(851), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1343), 4, + STATE(8719), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578054,52 +575059,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106229] = 19, + [106649] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3677), 4, + STATE(1281), 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, @@ -578107,52 +575112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106301] = 19, - ACTIONS(387), 1, + [106721] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(860), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6439), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1341), 4, + STATE(5329), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578160,52 +575165,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106373] = 19, - ACTIONS(7398), 1, + [106793] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8740), 4, + STATE(8730), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578213,52 +575218,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106445] = 19, - ACTIONS(7398), 1, + [106865] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8741), 4, + STATE(8773), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578266,52 +575271,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106517] = 19, - ACTIONS(473), 1, + [106937] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - ACTIONS(9190), 1, - anon_sym_suspend, - STATE(3294), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6461), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(856), 1, + sym_user_type, + STATE(6416), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9629), 1, + sym_parenthesized_user_type, + STATE(10109), 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(7430), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(855), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(1280), 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, @@ -578319,52 +575324,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106589] = 19, - ACTIONS(557), 1, + [107009] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3684), 4, + STATE(8734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578372,52 +575377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106661] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [107081] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8746), 4, + STATE(1275), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578425,52 +575430,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106733] = 19, + [107153] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3705), 4, + STATE(1267), 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, @@ -578478,52 +575483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106805] = 19, - ACTIONS(7398), 1, + [107225] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8786), 4, + STATE(8778), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578531,52 +575536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106877] = 19, - ACTIONS(387), 1, + [107297] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1344), 4, + STATE(8644), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578584,52 +575589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106949] = 19, - ACTIONS(115), 1, + [107369] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3385), 4, + STATE(8781), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578637,52 +575642,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107021] = 19, - ACTIONS(7398), 1, + [107441] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6432), 1, sym_type_modifiers, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(8333), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8385), 4, + STATE(8782), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578690,52 +575695,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107093] = 19, - ACTIONS(115), 1, + [107513] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3386), 4, + STATE(8783), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578743,52 +575748,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107165] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [107585] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9246), 1, + anon_sym_LPAREN, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9258), 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, + STATE(5687), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5717), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(5768), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6441), 1, + sym_type_modifiers, + STATE(9511), 1, sym_function_type_parameters, + STATE(9817), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8704), 4, + STATE(5770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578796,12 +575801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107237] = 19, - ACTIONS(473), 1, + [107657] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -578811,37 +575816,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6489), 1, + STATE(6495), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2403), 2, + STATE(2424), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7575), 2, + STATE(7530), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [107729] = 19, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, + sym_user_type, + STATE(6440), 1, + sym_type_modifiers, + STATE(9776), 1, + sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4697), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4781), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578849,52 +575907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107309] = 19, - ACTIONS(7398), 1, + [107801] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8645), 4, + STATE(8676), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578902,52 +575960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107381] = 19, - ACTIONS(7398), 1, + [107873] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8932), 4, + STATE(8663), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578955,52 +576013,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107453] = 19, - ACTIONS(115), 1, + [107945] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3388), 4, + STATE(8662), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579008,52 +576066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107525] = 19, - ACTIONS(473), 1, + [108017] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6499), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2412), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7555), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8631), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579061,52 +576119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107597] = 19, - ACTIONS(387), 1, + [108089] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1326), 4, + STATE(8661), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579114,52 +576172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107669] = 19, - ACTIONS(387), 1, + [108161] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(860), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6439), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1111), 4, + STATE(5352), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579167,52 +576225,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107741] = 19, - ACTIONS(7398), 1, + [108233] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9093), 4, + STATE(8765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579220,52 +576278,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107813] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [108305] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(860), 1, + STATE(4628), 1, sym_user_type, - STATE(6439), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9776), 1, sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1113), 4, + STATE(4731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579273,52 +576331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107885] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [108377] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9206), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9210), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + STATE(5602), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5726), 1, sym__simple_user_type, - STATE(860), 1, + STATE(5775), 1, sym_user_type, - STATE(6439), 1, + STATE(6412), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9469), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(10050), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(5773), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1119), 4, + STATE(5837), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579326,52 +576384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107957] = 19, - ACTIONS(7398), 1, + [108449] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5817), 4, + STATE(8716), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579379,105 +576437,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108029] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, - anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - 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, + [108521] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 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(3716), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1592), 7, + ACTIONS(4784), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4782), 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, - [108101] = 19, - ACTIONS(115), 1, + [108561] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3713), 4, + STATE(4998), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579485,47 +576527,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108173] = 19, - ACTIONS(473), 1, + [108633] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3840), 4, + STATE(3969), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -579538,105 +576580,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108245] = 19, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + [108705] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9258), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - STATE(2853), 1, - sym__lexical_identifier, - STATE(2926), 1, - sym_simple_identifier, - STATE(6508), 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(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(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(9262), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [108317] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4614), 4, + STATE(8712), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579644,52 +576633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108389] = 19, - ACTIONS(7398), 1, + [108777] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8793), 4, + STATE(8956), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579697,52 +576686,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108461] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [108849] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6432), 1, - sym_type_modifiers, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9549), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, - STATE(9550), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8397), 4, + STATE(5170), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579750,47 +576739,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108533] = 19, - ACTIONS(473), 1, + [108921] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3878), 4, + STATE(3977), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -579803,52 +576792,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108605] = 19, + [108993] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3728), 4, + STATE(3439), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579856,52 +576845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108677] = 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(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + [109065] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - STATE(2938), 1, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(6533), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7911), 1, sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9531), 1, + sym_parenthesized_user_type, + STATE(9806), 1, + sym_function_type_parameters, 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, + STATE(5724), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(5805), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579909,52 +576898,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [109137] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8646), 4, + STATE(4996), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579962,52 +576951,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108821] = 19, - ACTIONS(7398), 1, + [109209] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8772), 4, + STATE(8694), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580015,52 +577004,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108893] = 19, - ACTIONS(7405), 1, + [109281] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9214), 1, - sym__backtick_identifier, - STATE(6422), 1, - sym_type_modifiers, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, - sym__lexical_identifier, - STATE(8551), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(8921), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(9494), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, - STATE(9703), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8825), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8318), 4, + STATE(4981), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9210), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580068,52 +577057,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108965] = 19, - ACTIONS(7398), 1, + [109353] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8644), 4, + STATE(8699), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580121,52 +577110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109037] = 19, - ACTIONS(7398), 1, + [109425] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8648), 4, + STATE(8700), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580174,52 +577163,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109109] = 19, - ACTIONS(115), 1, + [109497] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9200), 1, anon_sym_LPAREN, ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(6425), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3732), 4, + STATE(4974), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580227,52 +577216,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109181] = 19, - ACTIONS(115), 1, + [109569] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3292), 4, + STATE(8704), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580280,52 +577269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109253] = 19, - ACTIONS(7405), 1, + [109641] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9218), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, - anon_sym_dynamic, - ACTIONS(9268), 1, - sym__alpha_identifier, ACTIONS(9272), 1, - sym__backtick_identifier, - STATE(5686), 1, + anon_sym_dynamic, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(5713), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(5718), 1, - sym__simple_user_type, - STATE(5769), 1, + STATE(856), 1, sym_user_type, - STATE(6430), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9676), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(10064), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5800), 4, + STATE(887), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9270), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580333,52 +577322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109325] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [109713] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8789), 4, + STATE(5444), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580386,52 +577375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109397] = 19, - ACTIONS(7405), 1, + [109785] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9272), 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, + STATE(814), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9645), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8334), 4, + STATE(888), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580439,52 +577428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109469] = 19, - ACTIONS(115), 1, + [109857] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3738), 4, + STATE(5445), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580492,52 +577481,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109541] = 19, - ACTIONS(557), 1, + [109929] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3060), 4, + STATE(5451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580545,52 +577534,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109613] = 19, - ACTIONS(7405), 1, + [110001] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9216), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9218), 1, - anon_sym_LPAREN, - ACTIONS(9222), 1, - anon_sym_dynamic, - ACTIONS(9224), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5685), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(6429), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7891), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(8333), 1, sym_user_type, - STATE(9645), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9819), 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5810), 4, + STATE(8723), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580598,52 +577587,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109685] = 19, - ACTIONS(211), 1, + [110073] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6414), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4771), 4, + STATE(892), 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, @@ -580651,52 +577640,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109757] = 19, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9218), 1, - anon_sym_LPAREN, - ACTIONS(9222), 1, + [110145] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9268), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5718), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(5769), 1, + STATE(8333), 1, sym_user_type, - STATE(6430), 1, - sym_type_modifiers, - STATE(9676), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(10064), 1, + STATE(9819), 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5810), 4, + STATE(9195), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9270), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580704,105 +577693,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109829] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + [110217] = 4, + ACTIONS(9284), 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(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(4580), 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(4761), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9287), 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, - [109901] = 19, - ACTIONS(7398), 1, + [110259] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9264), 4, + STATE(8727), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580810,52 +577784,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109973] = 19, - ACTIONS(7405), 1, + [110331] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9248), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9250), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9254), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - ACTIONS(9256), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(5748), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(6426), 1, + sym_type_modifiers, + STATE(7911), 1, sym__simple_user_type, - STATE(5784), 1, + STATE(8324), 1, sym_user_type, - STATE(6449), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(10117), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5785), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5828), 4, + STATE(8344), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9252), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580863,52 +577837,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110045] = 19, - ACTIONS(7398), 1, + [110403] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8845), 4, + STATE(8728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580916,52 +577890,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110117] = 19, - ACTIONS(557), 1, + [110475] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(3045), 1, sym_user_type, - STATE(6433), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3951), 4, + STATE(3551), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580969,52 +577943,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110189] = 19, + [110547] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3855), 4, + STATE(893), 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, @@ -581022,52 +577996,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110261] = 19, - ACTIONS(115), 1, + [110619] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6425), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3389), 4, + STATE(5201), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581075,52 +578049,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110333] = 19, - ACTIONS(473), 1, + [110691] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3613), 4, + STATE(8679), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581128,52 +578102,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110405] = 19, - ACTIONS(7398), 1, + [110763] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8651), 4, + STATE(8678), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581181,52 +578155,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110477] = 19, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [110835] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(6426), 1, + sym_type_modifiers, + STATE(7911), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2840), 1, + STATE(8324), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9531), 1, sym_parenthesized_user_type, + STATE(9806), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3869), 4, + STATE(9244), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581234,52 +578208,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110549] = 19, - ACTIONS(473), 1, + [110907] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3615), 4, + STATE(8731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581287,52 +578261,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110621] = 19, - ACTIONS(473), 1, + [110979] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3673), 4, + STATE(4115), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581340,52 +578314,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110693] = 19, - ACTIONS(473), 1, + [111051] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6518), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2656), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7390), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8682), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581393,52 +578367,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110765] = 19, - ACTIONS(115), 1, + [111123] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(856), 1, sym_user_type, - STATE(6425), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3369), 4, + STATE(925), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581446,52 +578420,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110837] = 19, - ACTIONS(387), 1, + [111195] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(6590), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8338), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9513), 1, sym_parenthesized_user_type, + STATE(9520), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1139), 4, + STATE(8321), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581499,52 +578473,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110909] = 19, - ACTIONS(7398), 1, + [111267] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8684), 4, + STATE(8702), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581552,52 +578526,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110981] = 19, - ACTIONS(473), 1, + [111339] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6521), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2602), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7384), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8942), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581605,52 +578579,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111053] = 19, - ACTIONS(473), 1, + [111411] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3669), 4, + STATE(3381), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581658,52 +578632,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111125] = 19, - ACTIONS(557), 1, + [111483] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3708), 4, + STATE(8665), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581711,52 +578685,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111197] = 19, - ACTIONS(473), 1, + [111555] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3616), 4, + STATE(8666), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581764,89 +578738,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [111627] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 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, - [111309] = 19, - ACTIONS(557), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3706), 4, + STATE(8667), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581854,89 +578791,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111381] = 3, + [111699] = 19, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9280), 1, + anon_sym_dynamic, + ACTIONS(9282), 1, + sym__backtick_identifier, + STATE(6431), 1, + sym_type_modifiers, + STATE(8323), 1, + sym__lexical_identifier, + STATE(8326), 1, + sym_simple_identifier, + STATE(8622), 1, + sym__simple_user_type, + STATE(8806), 1, + sym_user_type, + STATE(9663), 1, + sym_function_type_parameters, + STATE(10126), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5163), 28, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9027), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8587), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9278), 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, - [111421] = 19, + [111771] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9230), 1, - anon_sym_LPAREN, - STATE(2938), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6454), 1, + STATE(6522), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2664), 2, + STATE(2464), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7373), 2, + STATE(7418), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581944,52 +578897,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111493] = 19, - ACTIONS(7398), 1, + [111843] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8686), 4, + STATE(8669), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581997,52 +578950,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111565] = 19, + [111915] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9230), 1, - anon_sym_LPAREN, - STATE(2938), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6521), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2661), 2, + STATE(2431), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7457), 2, + STATE(7536), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582050,52 +579003,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111637] = 19, - ACTIONS(7), 1, + [111987] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4815), 1, + STATE(3572), 1, sym_user_type, - STATE(6447), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5182), 4, + STATE(3759), 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, @@ -582103,52 +579056,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111709] = 19, - ACTIONS(7398), 1, + [112059] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8338), 1, sym_user_type, - STATE(9735), 1, + STATE(9513), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8752), 4, + STATE(8292), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582156,52 +579109,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111781] = 19, - ACTIONS(473), 1, + [112131] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3663), 4, + STATE(3709), 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, @@ -582209,105 +579162,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111853] = 19, - ACTIONS(473), 1, + [112203] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, - anon_sym_LPAREN, - 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(3392), 1, - sym_user_type, - STATE(6419), 1, - sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3393), 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(4102), 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [111925] = 19, - ACTIONS(7398), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6533), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(453), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7370), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8754), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582315,52 +579215,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111997] = 19, - ACTIONS(473), 1, + [112275] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4104), 4, + STATE(3706), 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, @@ -582368,52 +579268,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112069] = 19, - ACTIONS(7398), 1, + [112347] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8755), 4, + STATE(8753), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582421,52 +579321,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112141] = 19, - ACTIONS(473), 1, + [112419] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3655), 4, + STATE(3700), 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, @@ -582474,52 +579374,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112213] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [112491] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, + STATE(4536), 1, + sym__lexical_identifier, STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, sym_user_type, - STATE(6414), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9776), 1, sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4579), 4, + STATE(5264), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582527,52 +579427,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112285] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [112563] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6531), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(456), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7372), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8757), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582580,52 +579480,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112357] = 19, - ACTIONS(211), 1, + [112635] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, - sym_user_type, - STATE(6414), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(6529), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(603), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7386), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, sym__type_reference, + sym_user_type, sym_parenthesized_type, - STATE(7848), 2, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [112707] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(6527), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7387), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4576), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582633,52 +579586,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112429] = 19, - ACTIONS(7398), 1, + [112779] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6432), 1, sym_type_modifiers, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(8333), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8296), 4, + STATE(8757), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582686,52 +579639,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112501] = 19, - ACTIONS(7398), 1, + [112851] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8670), 4, + STATE(8762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582739,52 +579692,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112573] = 19, - ACTIONS(473), 1, + [112923] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3643), 4, + STATE(4122), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582792,52 +579745,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112645] = 19, - ACTIONS(211), 1, + [112995] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4572), 4, + STATE(8756), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582845,52 +579798,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112717] = 19, - ACTIONS(473), 1, + [113067] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4105), 4, + STATE(3680), 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, @@ -582898,52 +579851,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112789] = 19, - ACTIONS(211), 1, + [113139] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4570), 4, + STATE(9621), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582951,52 +579904,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112861] = 19, - ACTIONS(115), 1, + [113211] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3282), 4, + STATE(9619), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583004,52 +579957,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112933] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [113283] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8324), 1, sym_user_type, - STATE(9735), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9806), 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, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8669), 4, + STATE(5770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583057,52 +580010,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113005] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [113355] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9566), 4, + STATE(3430), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583110,52 +580063,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113077] = 19, - ACTIONS(7398), 1, + [113427] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8338), 1, sym_user_type, - STATE(9735), 1, + STATE(9513), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9567), 4, + STATE(8358), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583163,52 +580116,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113149] = 19, - ACTIONS(7398), 1, + [113499] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8588), 4, + STATE(8785), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583216,52 +580169,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113221] = 19, - ACTIONS(7405), 1, + [113571] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9218), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9268), 1, - sym__alpha_identifier, - ACTIONS(9272), 1, - sym__backtick_identifier, - STATE(5686), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(5713), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(5718), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(5769), 1, + STATE(3572), 1, sym_user_type, - STATE(6430), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9676), 1, - sym_parenthesized_user_type, - STATE(10064), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5819), 4, + STATE(3789), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9270), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583269,52 +580222,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113293] = 19, - ACTIONS(387), 1, + [113643] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6526), 1, + STATE(6516), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, + STATE(2612), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7472), 2, + STATE(7450), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583322,52 +580275,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113365] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [113715] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8318), 4, + STATE(3667), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583375,52 +580328,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113437] = 19, - ACTIONS(7), 1, + [113787] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6447), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5224), 4, + STATE(1003), 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, @@ -583428,52 +580381,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113509] = 19, - ACTIONS(473), 1, + [113859] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8029), 1, + sym__simple_user_type, + STATE(8338), 1, + sym_user_type, + STATE(9513), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3740), 4, + STATE(8387), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583481,52 +580434,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113581] = 19, - ACTIONS(7405), 1, + [113931] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9232), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9234), 1, - anon_sym_LPAREN, - ACTIONS(9238), 1, - anon_sym_dynamic, - ACTIONS(9240), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(8333), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9741), 1, - sym_function_type_parameters, - STATE(9901), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5422), 4, + STATE(8722), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583534,47 +580487,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113653] = 19, - ACTIONS(211), 1, + [114003] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4571), 4, + STATE(5089), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -583587,89 +580540,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113725] = 3, + [114075] = 19, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9236), 1, + anon_sym_dynamic, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, + sym_user_type, + STATE(6440), 1, + sym_type_modifiers, + STATE(9776), 1, + sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5179), 28, + STATE(4697), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5213), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9234), 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, - [113765] = 19, - ACTIONS(115), 1, + [114147] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(856), 1, sym_user_type, - STATE(6425), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3180), 4, + STATE(975), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583677,52 +580646,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113837] = 19, - ACTIONS(7398), 1, + [114219] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8338), 1, sym_user_type, - STATE(9735), 1, + STATE(9513), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8691), 4, + STATE(8392), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583730,52 +580699,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113909] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [114291] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 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(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6511), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(2623), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7455), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8744), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583783,52 +580752,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113981] = 19, - ACTIONS(115), 1, + [114363] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6425), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3191), 4, + STATE(4231), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 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, + [114435] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(6512), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2413), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7582), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583836,52 +580858,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114053] = 19, + [114507] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3214), 4, + STATE(4129), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583889,12 +580911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114125] = 19, - ACTIONS(387), 1, + [114579] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -583902,39 +580924,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6523), 1, + STATE(6509), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(616), 2, + STATE(2622), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7505), 2, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -583942,52 +580964,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114197] = 19, - ACTIONS(7405), 1, + [114651] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9250), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9254), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9256), 1, - sym__backtick_identifier, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, - sym_simple_identifier, - STATE(5748), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(5784), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6449), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(10117), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5785), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5824), 4, + STATE(3172), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9252), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583995,52 +581017,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114269] = 19, - ACTIONS(7398), 1, + [114723] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9738), 4, + STATE(8746), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584048,48 +581070,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114341] = 19, - ACTIONS(473), 1, + [114795] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6507), 1, + STATE(6508), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2391), 2, + STATE(2412), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7598), 2, + STATE(7584), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -584101,137 +581123,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114413] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [114867] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8668), 4, + STATE(1005), 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, - [114485] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7145), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7143), 28, + 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, - [114525] = 19, - ACTIONS(473), 1, + [114939] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4109), 4, + STATE(4252), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -584244,52 +581229,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114597] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [115011] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6507), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(2656), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7472), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(9821), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584297,52 +581282,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114669] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [115083] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8666), 4, + STATE(1169), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584350,52 +581335,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114741] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [115155] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9291), 1, + anon_sym_dynamic, + STATE(2817), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(2891), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3077), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, + STATE(6447), 1, + sym_type_modifiers, STATE(9736), 1, + sym_parenthesized_user_type, + STATE(10153), 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, + STATE(3082), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9994), 4, + STATE(3523), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584403,52 +581388,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114813] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [115227] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8694), 4, + STATE(1168), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584456,52 +581441,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114885] = 19, - ACTIONS(473), 1, + [115299] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4117), 4, + STATE(1164), 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, @@ -584509,52 +581494,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114957] = 19, + [115371] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3285), 4, + STATE(3722), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584562,52 +581547,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115029] = 19, - ACTIONS(7398), 1, + [115443] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9625), 4, + STATE(5828), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584615,52 +581600,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115101] = 19, - ACTIONS(7405), 1, + [115515] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9291), 1, anon_sym_dynamic, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, + STATE(2891), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(3077), 1, sym_user_type, - STATE(9645), 1, + STATE(6447), 1, + sym_type_modifiers, + STATE(9736), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(10153), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(3082), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9432), 4, + STATE(3451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584668,52 +581653,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115173] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [115587] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8675), 4, + STATE(3723), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584721,52 +581706,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115245] = 19, - ACTIONS(7405), 1, + [115659] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4665), 1, + STATE(856), 1, sym_user_type, - STATE(6440), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9741), 1, - sym_function_type_parameters, - STATE(9901), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4720), 4, + STATE(936), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584774,52 +581759,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115317] = 19, - ACTIONS(211), 1, + [115731] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4976), 4, + STATE(8634), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584827,52 +581812,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115389] = 19, - ACTIONS(473), 1, + [115803] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3425), 4, + STATE(3725), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584880,52 +581865,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115461] = 19, - ACTIONS(7398), 1, + [115875] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8756), 4, + STATE(10073), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584933,52 +581918,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115533] = 19, - ACTIONS(473), 1, + [115947] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3427), 4, + STATE(4124), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584986,52 +581971,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115605] = 19, - ACTIONS(7398), 1, + [116019] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8734), 4, + STATE(8658), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585039,89 +582024,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115677] = 3, + [116091] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5183), 28, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8695), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [116163] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, + anon_sym_LPAREN, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, + STATE(6426), 1, + sym_type_modifiers, + STATE(7911), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9531), 1, + sym_parenthesized_user_type, + STATE(9806), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5724), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5808), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, 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, - [115717] = 19, - ACTIONS(473), 1, + [116235] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3870), 4, + STATE(3731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585129,52 +582183,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115789] = 19, - ACTIONS(387), 1, + [116307] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9200), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6498), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, + sym_user_type, + STATE(6423), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9697), 1, + sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7488), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(4564), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(5105), 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, @@ -585182,52 +582236,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115861] = 19, - ACTIONS(557), 1, + [116379] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3086), 4, + STATE(8635), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585235,52 +582289,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115933] = 19, + [116451] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3727), 4, + STATE(3734), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585288,89 +582342,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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(4181), 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, - [116045] = 19, - ACTIONS(7398), 1, + [116523] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6433), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8338), 1, sym_user_type, - STATE(9735), 1, + STATE(9513), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8712), 4, + STATE(8383), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585378,52 +582395,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116117] = 19, - ACTIONS(7405), 1, + [116595] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6440), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5377), 4, + STATE(4119), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585431,52 +582448,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116189] = 19, - ACTIONS(115), 1, + [116667] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3729), 4, + STATE(5817), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585484,52 +582501,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116261] = 19, + [116739] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2994), 4, + STATE(1027), 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, @@ -585537,52 +582554,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116333] = 19, - ACTIONS(7398), 1, + [116811] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8759), 4, + STATE(10003), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585590,47 +582607,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116405] = 19, - ACTIONS(387), 1, + [116883] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(860), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6439), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1177), 4, + STATE(1026), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -585643,52 +582660,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116477] = 19, - ACTIONS(7405), 1, + [116955] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9248), 1, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(9250), 1, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9254), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - ACTIONS(9256), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(5748), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(5784), 1, + STATE(4628), 1, sym_user_type, - STATE(6449), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9753), 1, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(10117), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5785), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5834), 4, + STATE(4945), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9252), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585696,52 +582713,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116549] = 19, - ACTIONS(115), 1, + [117027] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(2867), 1, sym_user_type, - STATE(6425), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3734), 4, + STATE(3157), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585749,52 +582766,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116621] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [117099] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9291), 1, + anon_sym_dynamic, + STATE(2817), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(2891), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3077), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, + STATE(6447), 1, + sym_type_modifiers, STATE(9736), 1, + sym_parenthesized_user_type, + STATE(10153), 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, + STATE(3082), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8788), 4, + STATE(3707), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585802,52 +582819,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116693] = 19, - ACTIONS(211), 1, + [117171] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6433), 1, + sym_type_modifiers, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8338), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9513), 1, sym_parenthesized_user_type, + STATE(9520), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4849), 4, + STATE(8359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585855,52 +582872,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116765] = 19, - ACTIONS(211), 1, + [117243] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6414), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4850), 4, + STATE(1480), 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, @@ -585908,141 +582925,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116837] = 19, - ACTIONS(211), 1, + [117315] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6414), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4858), 4, + STATE(2081), 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, - [116909] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4004), 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, - sym__alpha_identifier, - 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, + [117387] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9190), 1, - anon_sym_suspend, - STATE(3294), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6467), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2410), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7456), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(3641), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -586051,52 +583031,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117021] = 19, - ACTIONS(7405), 1, + [117459] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(3572), 1, sym_user_type, - STATE(9645), 1, - sym_parenthesized_user_type, - STATE(10143), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5800), 4, + STATE(3631), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586104,137 +583084,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117093] = 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(9192), 1, + [117531] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9194), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(5687), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(5694), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6501), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5431), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7415), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, 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, - 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, + STATE(3630), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_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, - [117205] = 19, - ACTIONS(7), 1, + [117603] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6447), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5184), 4, + STATE(2955), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -586247,47 +583190,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117277] = 19, - ACTIONS(211), 1, + [117675] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4762), 4, + STATE(4556), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -586300,52 +583243,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117349] = 19, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [117747] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9236), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + ACTIONS(9238), 1, + sym__backtick_identifier, + STATE(4535), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4628), 1, sym_user_type, - STATE(6419), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9776), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(4697), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3431), 4, + STATE(4936), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586353,52 +583296,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117421] = 19, - ACTIONS(7398), 1, + [117819] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8760), 4, + STATE(9796), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586406,52 +583349,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117493] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [117891] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8731), 4, + STATE(3911), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586459,52 +583402,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117565] = 19, - ACTIONS(473), 1, + [117963] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3432), 4, + STATE(3908), 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, @@ -586512,52 +583455,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117637] = 19, - ACTIONS(473), 1, + [118035] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3392), 1, - sym_user_type, - STATE(6419), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4189), 4, + STATE(8321), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586565,52 +583508,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117709] = 19, - ACTIONS(557), 1, + [118107] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4558), 1, sym_user_type, - STATE(6433), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3604), 4, + STATE(4553), 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, @@ -586618,52 +583561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117781] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [118179] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6490), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(2716), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7497), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8318), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586671,52 +583614,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117853] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [118251] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8697), 4, + STATE(4551), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586724,52 +583667,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117925] = 19, - ACTIONS(473), 1, + [118323] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(2867), 1, sym_user_type, - STATE(6419), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3455), 4, + STATE(3897), 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, @@ -586777,52 +583720,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117997] = 19, - ACTIONS(387), 1, + [118395] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9240), 1, anon_sym_LPAREN, - STATE(812), 1, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6492), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(443), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7483), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(3615), 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, @@ -586830,52 +583773,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118069] = 19, - ACTIONS(557), 1, + [118467] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2962), 4, + STATE(5007), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586883,52 +583826,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118141] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [118539] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(2973), 1, - sym_user_type, - STATE(6425), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8324), 1, + sym_user_type, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3911), 4, + STATE(8339), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586936,52 +583879,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118213] = 19, - ACTIONS(115), 1, + [118611] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9200), 1, anon_sym_LPAREN, ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4558), 1, sym_user_type, - STATE(6425), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3918), 4, + STATE(4550), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586989,52 +583932,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118285] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [118683] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8636), 4, + STATE(3617), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587042,52 +583985,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118357] = 19, - ACTIONS(7405), 1, + [118755] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(6429), 1, - sym_type_modifiers, - STATE(7891), 1, - sym__simple_user_type, - STATE(8324), 1, + STATE(4558), 1, sym_user_type, - STATE(9645), 1, - sym_parenthesized_user_type, - STATE(10143), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9294), 4, + STATE(4569), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587095,52 +584038,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118429] = 19, - ACTIONS(557), 1, + [118827] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3057), 4, + STATE(5175), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587148,52 +584091,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118501] = 19, - ACTIONS(115), 1, + [118899] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3980), 4, + STATE(8776), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587201,142 +584144,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118573] = 19, - ACTIONS(557), 1, + [118971] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(3045), 1, sym_user_type, - STATE(6433), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2956), 4, + STATE(3242), 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, - [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, + ACTIONS(1624), 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, - [118685] = 19, - ACTIONS(557), 1, + [119043] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2840), 1, + STATE(3572), 1, sym_user_type, - STATE(6433), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2957), 4, + STATE(3619), 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, @@ -587344,52 +584250,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118757] = 19, - ACTIONS(211), 1, + [119115] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6414), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5350), 4, + STATE(3264), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587397,89 +584303,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118829] = 3, + [119187] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7187), 28, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8771), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 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, - [118869] = 19, - ACTIONS(7), 1, + [119259] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, - anon_sym_dynamic, - STATE(4612), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6447), 1, - sym_type_modifiers, - STATE(9845), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5100), 4, + STATE(8779), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587487,52 +584409,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118941] = 19, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + [119331] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9258), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - STATE(2853), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2926), 1, - sym_simple_identifier, - STATE(6460), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2269), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7595), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9262), 7, + STATE(9670), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587540,52 +584462,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119013] = 19, + [119403] = 19, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9228), 1, anon_sym_dynamic, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6425), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3050), 4, + STATE(3268), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587593,52 +584515,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119085] = 19, - ACTIONS(211), 1, + [119475] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(3572), 1, sym_user_type, - STATE(6414), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5319), 4, + STATE(3621), 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, @@ -587646,52 +584568,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119157] = 19, - ACTIONS(7398), 1, + [119547] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8726), 4, + STATE(9913), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587699,52 +584621,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119229] = 19, - ACTIONS(115), 1, + [119619] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9240), 1, anon_sym_LPAREN, - STATE(2938), 1, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6491), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7843), 1, + STATE(3328), 1, sym__simple_user_type, + STATE(3572), 1, + sym_user_type, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2615), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7498), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(3570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(3431), 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, @@ -587752,52 +584674,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119301] = 19, - ACTIONS(115), 1, + [119691] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8718), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119763] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3045), 4, + STATE(8774), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587805,52 +584780,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119373] = 19, - ACTIONS(115), 1, + [119835] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6425), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3360), 4, + STATE(3639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587858,52 +584833,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119445] = 19, - ACTIONS(211), 1, + [119907] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(3572), 1, sym_user_type, - STATE(6414), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5320), 4, + STATE(3497), 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, @@ -587911,52 +584886,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119517] = 19, - ACTIONS(7398), 1, + [119979] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8728), 4, + STATE(8720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587964,52 +584939,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119589] = 19, - ACTIONS(557), 1, + [120051] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2951), 4, + STATE(8721), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588017,52 +584992,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119661] = 19, - ACTIONS(211), 1, + [120123] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(3572), 1, sym_user_type, - STATE(6414), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5322), 4, + STATE(3414), 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, @@ -588070,52 +585045,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119733] = 19, - ACTIONS(7398), 1, + [120195] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8729), 4, + STATE(8724), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588123,52 +585098,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119805] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [120267] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9602), 4, + STATE(3388), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588176,142 +585151,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119877] = 19, - ACTIONS(7398), 1, + [120339] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8792), 4, + STATE(8741), 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, - [119949] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5189), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5187), 28, + ACTIONS(8745), 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, - [119989] = 19, - ACTIONS(115), 1, + [120411] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6425), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3044), 4, + STATE(3375), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588319,52 +585257,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120061] = 19, - ACTIONS(557), 1, + [120483] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2949), 4, + STATE(8882), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588372,52 +585310,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120133] = 19, - ACTIONS(211), 1, + [120555] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6414), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4863), 4, + STATE(1446), 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, @@ -588425,105 +585363,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120205] = 19, + [120627] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - 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(823), 1, - sym__lexical_identifier, - STATE(6476), 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(597), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7491), 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, - [120277] = 19, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4665), 1, + STATE(2867), 1, sym_user_type, - STATE(6440), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9741), 1, - sym_function_type_parameters, - STATE(9901), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5337), 4, + STATE(2957), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588531,52 +585416,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120349] = 19, - ACTIONS(211), 1, + [120699] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6414), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5325), 4, + STATE(2958), 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, @@ -588584,52 +585469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120421] = 19, + [120771] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, - anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(2840), 1, - sym_user_type, - STATE(6433), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(6491), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(598), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7451), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2824), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588637,52 +585522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120493] = 19, - ACTIONS(557), 1, + [120843] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2840), 1, + STATE(3572), 1, sym_user_type, - STATE(6433), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9899), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3271), 4, + STATE(4258), 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, @@ -588690,52 +585575,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120565] = 19, - ACTIONS(7), 1, + [120915] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4948), 4, + STATE(2970), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588743,52 +585628,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120637] = 19, - ACTIONS(211), 1, + [120987] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4866), 4, + STATE(8646), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588796,52 +585681,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120709] = 19, - ACTIONS(473), 1, + [121059] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3987), 4, + STATE(3017), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588849,8 +585734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120781] = 19, - ACTIONS(9105), 1, + [121131] = 19, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -588858,43 +585747,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9285), 1, - sym__alpha_identifier, - ACTIONS(9287), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - ACTIONS(9291), 1, - sym__backtick_identifier, - STATE(5682), 1, - sym__lexical_identifier, - STATE(5690), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(6505), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(6481), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5513), 2, + STATE(2720), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7538), 2, + STATE(7563), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9289), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588902,52 +585787,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120853] = 19, - ACTIONS(7398), 1, + [121203] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6432), 1, sym_type_modifiers, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(8333), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8369), 4, + STATE(8650), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588955,52 +585840,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120925] = 19, - ACTIONS(557), 1, + [121275] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6433), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3257), 4, + STATE(3173), 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, @@ -589008,52 +585893,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120997] = 19, - ACTIONS(211), 1, + [121347] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5117), 4, + STATE(8651), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589061,52 +585946,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121069] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [121419] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8642), 4, + STATE(2975), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589114,52 +585999,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121141] = 19, - ACTIONS(115), 1, + [121491] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, - anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(2973), 1, - sym_user_type, - STATE(6425), 1, + STATE(6486), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9859), 1, - sym_parenthesized_user_type, - STATE(9863), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(624), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7467), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3038), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1592), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589167,52 +586052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121213] = 19, - ACTIONS(115), 1, + [121563] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, - anon_sym_dynamic, - STATE(2899), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(2973), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9859), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3054), 4, + STATE(8652), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589220,52 +586105,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121285] = 19, - ACTIONS(211), 1, + [121635] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6414), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5206), 4, + STATE(3015), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589273,52 +586158,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121357] = 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(9188), 1, + [121707] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6474), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8643), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589326,52 +586211,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121429] = 19, - ACTIONS(473), 1, + [121779] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9226), 1, anon_sym_LPAREN, ACTIONS(9228), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3392), 1, + STATE(3045), 1, sym_user_type, - STATE(6419), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4165), 4, + STATE(2976), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589379,52 +586264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121501] = 19, - ACTIONS(473), 1, + [121851] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4169), 4, + STATE(910), 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, @@ -589432,52 +586317,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121573] = 19, - ACTIONS(7405), 1, + [121923] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4665), 1, + STATE(856), 1, sym_user_type, - STATE(6440), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9741), 1, - sym_function_type_parameters, - STATE(9901), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4925), 4, + STATE(871), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589485,52 +586370,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121645] = 19, - ACTIONS(473), 1, + [121995] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4173), 4, + STATE(876), 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, @@ -589538,52 +586423,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121717] = 19, - ACTIONS(211), 1, + [122067] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5059), 4, + STATE(9648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589591,12 +586476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121789] = 19, - ACTIONS(115), 1, + [122139] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -589604,39 +586489,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6470), 1, + STATE(6482), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, + STATE(2365), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7600), 2, + STATE(7479), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589644,52 +586529,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121861] = 19, - ACTIONS(7405), 1, + [122211] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - ACTIONS(9224), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(6429), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(6426), 1, sym_type_modifiers, - STATE(7891), 1, + STATE(7911), 1, sym__simple_user_type, STATE(8324), 1, sym_user_type, - STATE(9645), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9359), 4, + STATE(8353), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589697,105 +586582,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121933] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [122283] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 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(9578), 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, - [122005] = 19, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9238), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9240), 1, - sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4665), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6440), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9901), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4663), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4937), 4, + STATE(3290), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9236), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589803,52 +586635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122077] = 19, - ACTIONS(7405), 1, + [122355] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9248), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9250), 1, - anon_sym_LPAREN, - ACTIONS(9254), 1, - anon_sym_dynamic, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5602), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(5748), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(5784), 1, + STATE(8333), 1, sym_user_type, - STATE(6449), 1, - sym_type_modifiers, - STATE(9753), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(10117), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5785), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5817), 4, + STATE(8638), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9252), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589856,12 +586688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122149] = 19, - ACTIONS(387), 1, + [122427] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -589869,39 +586701,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6466), 1, + STATE(6480), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, + STATE(2363), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7510), 2, + STATE(7482), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -589909,52 +586741,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122221] = 19, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [122499] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5717), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(5768), 1, sym_user_type, - STATE(6414), 1, + STATE(6441), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9511), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9817), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4819), 4, + STATE(5787), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589962,52 +586794,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [122571] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6464), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8637), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590015,52 +586847,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122365] = 19, + [122643] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6439), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(887), 4, + STATE(2848), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590068,52 +586900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122437] = 19, + [122715] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6439), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(900), 4, + STATE(3210), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590121,52 +586953,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122509] = 19, - ACTIONS(557), 1, + [122787] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6433), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2945), 4, + STATE(2951), 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, @@ -590174,52 +587006,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122581] = 19, - ACTIONS(7398), 1, + [122859] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8784), 4, + STATE(8737), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590227,52 +587059,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122653] = 19, + [122931] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9180), 1, anon_sym_LPAREN, - STATE(812), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(6463), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(2867), 1, + sym_user_type, + STATE(6444), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9797), 1, + sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7490), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(2865), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 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, + STATE(2836), 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, @@ -590280,52 +587112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122725] = 19, - ACTIONS(211), 1, + [123003] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5034), 4, + STATE(8738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590333,52 +587165,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122797] = 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, + [123075] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6453), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8739), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590386,52 +587218,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122869] = 19, - ACTIONS(7405), 1, + [123147] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, anon_sym_dynamic, - ACTIONS(9214), 1, - sym__backtick_identifier, - STATE(6422), 1, - sym_type_modifiers, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(8551), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8921), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9494), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, - STATE(9703), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8825), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8296), 4, + STATE(3284), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9210), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590439,52 +587271,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122941] = 19, - ACTIONS(7405), 1, + [123219] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9260), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9264), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9266), 1, - sym__backtick_identifier, - STATE(2826), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(2853), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(3064), 1, + STATE(2867), 1, sym_user_type, - STATE(6448), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9673), 1, - sym_function_type_parameters, - STATE(9910), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3066), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3446), 4, + STATE(2815), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9262), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590492,52 +587324,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123013] = 19, - ACTIONS(7405), 1, + [123291] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9260), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9264), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9266), 1, - sym__backtick_identifier, - STATE(2826), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(2853), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(3064), 1, + STATE(2867), 1, sym_user_type, - STATE(6448), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9673), 1, - sym_function_type_parameters, - STATE(9910), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3066), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3518), 4, + STATE(3028), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9262), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590545,52 +587377,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123085] = 19, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, + [123363] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9285), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9287), 1, - anon_sym_LPAREN, - ACTIONS(9291), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5682), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5690), 1, - sym_simple_identifier, - STATE(6475), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5519), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7593), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9289), 7, + STATE(8740), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590598,47 +587430,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123157] = 19, - ACTIONS(7), 1, + [123435] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6447), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4913), 4, + STATE(2858), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -590651,52 +587483,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123229] = 19, + [123507] = 19, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(860), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6439), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(901), 4, + STATE(2873), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590704,52 +587536,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123301] = 19, - ACTIONS(7), 1, + [123579] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(2890), 1, sym_simple_identifier, - STATE(4815), 1, - sym_user_type, - STATE(6447), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6476), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(1898), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7503), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5427), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590757,52 +587589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123373] = 19, - ACTIONS(7398), 1, + [123651] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6432), 1, sym_type_modifiers, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8354), 1, + STATE(8333), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9550), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8380), 4, + STATE(8735), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590810,52 +587642,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123445] = 19, - ACTIONS(7), 1, + [123723] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, - anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(4815), 1, - sym_user_type, - STATE(6447), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(6524), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2402), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7383), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4914), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590863,52 +587695,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123517] = 19, - ACTIONS(7398), 1, + [123795] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8672), 4, + STATE(8633), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590916,52 +587748,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123589] = 19, - ACTIONS(473), 1, + [123867] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4257), 4, + STATE(845), 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, @@ -590969,52 +587801,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123661] = 19, - ACTIONS(115), 1, + [123939] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9200), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9202), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, + sym_user_type, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, + sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2865), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(2994), 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, + [124011] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(2973), 1, + STATE(2867), 1, sym_user_type, - STATE(6425), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9859), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2977), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4208), 4, + STATE(3243), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591022,52 +587907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123733] = 19, - ACTIONS(7398), 1, + [124083] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8667), 4, + STATE(8755), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591075,52 +587960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123805] = 19, - ACTIONS(7), 1, + [124155] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6447), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5451), 4, + STATE(846), 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, @@ -591128,52 +588013,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123877] = 19, + [124227] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4717), 1, sym_user_type, - STATE(6447), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5433), 4, + STATE(5476), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591181,52 +588066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123949] = 19, - ACTIONS(473), 1, + [124299] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6515), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2350), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7361), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8758), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591234,52 +588119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124021] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [124371] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9291), 1, anon_sym_dynamic, - STATE(823), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(825), 1, + STATE(2891), 1, sym__simple_user_type, - STATE(860), 1, + STATE(3077), 1, sym_user_type, - STATE(6439), 1, + STATE(6447), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9736), 1, sym_parenthesized_user_type, + STATE(10153), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(3082), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(973), 4, + STATE(3606), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591287,52 +588172,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124093] = 19, - ACTIONS(473), 1, + [124443] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6455), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2727), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7444), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, + STATE(8759), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [124515] = 19, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, + sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(855), 2, + sym__type_reference, sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(843), 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, @@ -591340,52 +588278,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124165] = 19, - ACTIONS(7398), 1, + [124587] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8676), 4, + STATE(8760), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591393,52 +588331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124237] = 19, - ACTIONS(473), 1, + [124659] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4195), 4, + STATE(851), 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, @@ -591446,52 +588384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124309] = 19, - ACTIONS(7405), 1, + [124731] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9260), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9264), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - ACTIONS(9266), 1, - sym__backtick_identifier, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2881), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(3064), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(6448), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9673), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9910), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3066), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3606), 4, + STATE(5454), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9262), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591499,51 +588437,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124381] = 19, - ACTIONS(387), 1, + [124803] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, - ACTIONS(9190), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9270), 1, anon_sym_LPAREN, - STATE(812), 1, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6465), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(856), 1, + sym_user_type, + STATE(6416), 1, sym_type_modifiers, - STATE(7843), 1, - sym__simple_user_type, + STATE(9629), 1, + sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(614), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7512), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(855), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, + STATE(839), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -591552,52 +588490,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124453] = 19, - ACTIONS(7398), 1, + [124875] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8640), 4, + STATE(8770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591605,52 +588543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124525] = 19, - ACTIONS(387), 1, + [124947] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(991), 4, + STATE(8769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591658,52 +588596,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124597] = 19, - ACTIONS(557), 1, + [125019] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3205), 4, + STATE(8632), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591711,52 +588649,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124669] = 19, - ACTIONS(473), 1, + [125091] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9059), 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, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6528), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9818), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2346), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7363), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 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, + STATE(8791), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591764,52 +588702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124741] = 19, - ACTIONS(7), 1, + [125163] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5396), 4, + STATE(3892), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591817,52 +588755,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124813] = 19, - ACTIONS(211), 1, + [125235] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(6414), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5098), 4, + STATE(3283), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591870,52 +588808,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124885] = 19, - ACTIONS(7), 1, + [125307] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5042), 4, + STATE(5255), 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, @@ -591923,52 +588861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124957] = 19, - ACTIONS(557), 1, + [125379] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6433), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9797), 1, sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3067), 4, + STATE(2939), 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, @@ -591976,52 +588914,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125029] = 19, - ACTIONS(7398), 1, + [125451] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9826), 4, + STATE(8763), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592029,52 +588967,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125101] = 19, - ACTIONS(7405), 1, + [125523] = 19, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9222), 1, + ACTIONS(9182), 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, + STATE(2778), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9645), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(10143), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5762), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8356), 4, + STATE(3258), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9220), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592082,105 +589020,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125173] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [125595] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9226), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_dynamic, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3045), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6449), 1, + sym_type_modifiers, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [125245] = 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8679), 4, + STATE(3912), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592188,52 +589073,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125317] = 19, - ACTIONS(7), 1, + [125667] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(3045), 1, sym_user_type, - STATE(6447), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9849), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4917), 4, + STATE(3367), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592241,52 +589126,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125389] = 19, + [125739] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4717), 1, sym_user_type, - STATE(6447), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5389), 4, + STATE(5469), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592294,52 +589179,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125461] = 19, - ACTIONS(557), 1, + [125811] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, - anon_sym_dynamic, - STATE(2791), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(8229), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6433), 1, - sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3269), 4, + STATE(8768), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592347,52 +589232,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125533] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [125883] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9291), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2891), 1, + sym__simple_user_type, + STATE(3077), 1, sym_user_type, STATE(6447), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9736), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10153), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(3082), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5383), 4, + STATE(3636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592400,47 +589285,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125605] = 19, - ACTIONS(7), 1, + [125955] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6447), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5379), 4, + STATE(2925), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -592453,52 +589338,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125677] = 19, - ACTIONS(557), 1, + [126027] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(3045), 1, sym_user_type, - STATE(6433), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3152), 4, + STATE(3932), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592506,52 +589391,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125749] = 19, - ACTIONS(7398), 1, + [126099] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8634), 4, + STATE(8775), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592559,137 +589444,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125821] = 19, - ACTIONS(557), 1, + [126171] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2901), 4, + STATE(5468), 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, - [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, + ACTIONS(1908), 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, - [125933] = 19, - ACTIONS(7), 1, + [126243] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9180), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(6447), 1, + STATE(6444), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4765), 4, + STATE(2907), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -592702,52 +589550,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126005] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [126315] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9180), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + STATE(2778), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2867), 1, sym_user_type, - STATE(9735), 1, + STATE(6444), 1, + sym_type_modifiers, + STATE(9797), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9974), 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, + STATE(2865), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8745), 4, + STATE(2901), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592755,47 +589603,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126077] = 19, - ACTIONS(211), 1, + [126387] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4639), 4, + STATE(5349), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -592808,52 +589656,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126149] = 19, - ACTIONS(7), 1, + [126459] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(6473), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(440), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7520), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 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, + [126531] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5371), 4, + STATE(5343), 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, @@ -592861,52 +589762,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126221] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [126603] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9250), 1, + anon_sym_dynamic, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8324), 1, sym_user_type, - STATE(9735), 1, + STATE(9531), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9806), 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, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8742), 4, + STATE(8336), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592914,52 +589815,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126293] = 19, - ACTIONS(7), 1, + [126675] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4747), 4, + STATE(5322), 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, @@ -592967,52 +589868,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126365] = 19, - ACTIONS(557), 1, + [126747] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9228), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(3045), 1, sym_user_type, - STATE(6433), 1, + STATE(6449), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9849), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(3049), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2830), 4, + STATE(3338), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593020,47 +589921,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126437] = 19, - ACTIONS(211), 1, + [126819] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5067), 4, + STATE(5359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -593073,52 +589974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126509] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [126891] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8768), 4, + STATE(1366), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593126,52 +590027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126581] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [126963] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5834), 4, + STATE(5414), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593179,52 +590080,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126653] = 19, - ACTIONS(7), 1, + [127035] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9184), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(2890), 1, sym_simple_identifier, - STATE(4815), 1, - sym_user_type, - STATE(6447), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(6457), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2662), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7566), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4743), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593232,52 +590133,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126725] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [127107] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9662), 4, + STATE(5464), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593285,52 +590186,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126797] = 19, - ACTIONS(7398), 1, + [127179] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9665), 4, + STATE(9636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593338,52 +590239,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126869] = 19, - ACTIONS(7398), 1, + [127251] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8771), 4, + STATE(9644), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593391,52 +590292,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126941] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [127323] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 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(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6526), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(7850), 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, + STATE(2603), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7573), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 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(8773), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593444,52 +590345,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127013] = 19, + [127395] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3188), 4, + STATE(1119), 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, @@ -593497,52 +590398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127085] = 19, - ACTIONS(557), 1, + [127467] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, - anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(2840), 1, - sym_user_type, - STATE(6433), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(6455), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2689), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7529), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2819), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1910), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593550,52 +590451,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127157] = 19, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + [127539] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 3, anon_sym_AT, - ACTIONS(9258), 1, + anon_sym_LBRACE, + sym_label, + ACTIONS(4894), 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, + [127579] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9260), 1, - anon_sym_LPAREN, - ACTIONS(9264), 1, - anon_sym_dynamic, - ACTIONS(9266), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(2826), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(2853), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(3064), 1, - sym_user_type, - STATE(6448), 1, + STATE(6519), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9673), 1, - sym_function_type_parameters, - STATE(9910), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3066), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(2685), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7521), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3617), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9262), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593603,52 +590541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127229] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [127651] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8774), 4, + STATE(1132), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593656,47 +590594,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127301] = 19, - ACTIONS(211), 1, + [127723] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4854), 4, + STATE(4829), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -593709,52 +590647,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127373] = 19, - ACTIONS(557), 1, + [127795] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4558), 1, sym_user_type, - STATE(6433), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2825), 4, + STATE(5482), 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, @@ -593762,52 +590700,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127445] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [127867] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + anon_sym_dynamic, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8138), 1, - sym__simple_user_type, - STATE(8332), 1, + STATE(4558), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6423), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8794), 4, + STATE(5515), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593815,52 +590753,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127517] = 19, - ACTIONS(557), 1, + [127939] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4558), 1, sym_user_type, - STATE(6433), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2847), 4, + STATE(4826), 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, @@ -593868,52 +590806,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127589] = 19, - ACTIONS(7398), 1, + [128011] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9685), 4, + STATE(10039), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593921,105 +590859,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127661] = 19, - ACTIONS(7398), 1, + [128083] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9686), 4, + STATE(9885), 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, - [127733] = 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(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(6487), 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(1747), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7527), 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, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594027,47 +590912,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127805] = 19, - ACTIONS(211), 1, + [128155] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5064), 4, + STATE(5501), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -594080,12 +590965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127877] = 19, - ACTIONS(115), 1, + [128227] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -594093,39 +590978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(822), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6468), 1, + STATE(6528), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1746), 2, + STATE(451), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7545), 2, + STATE(7541), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594133,52 +591018,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127949] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [128299] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + ACTIONS(9222), 1, + anon_sym_LPAREN, + ACTIONS(9224), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - STATE(8138), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4717), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8791), 4, + STATE(5582), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594186,52 +591071,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128021] = 19, - ACTIONS(7), 1, + [128371] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6447), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4899), 4, + STATE(1004), 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, @@ -594239,105 +591124,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128093] = 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, + [128443] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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(837), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + ACTIONS(4030), 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, - [128165] = 19, - ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(4035), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + 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_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(7405), 1, + [128483] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(4717), 1, sym_user_type, - STATE(6433), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, - STATE(9877), 1, + STATE(9526), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(4718), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3238), 4, + STATE(5568), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594345,52 +591214,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128237] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [128555] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6420), 1, - sym_type_modifiers, - STATE(7893), 1, + ACTIONS(9240), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(3572), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8779), 4, + STATE(4027), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594398,52 +591267,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128309] = 19, - ACTIONS(473), 1, + [128627] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3885), 4, + STATE(1380), 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, @@ -594451,52 +591320,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128381] = 19, - ACTIONS(387), 1, + [128699] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 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(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(4192), 17, anon_sym_AT, - ACTIONS(9180), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(9182), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [128739] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - STATE(823), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(844), 4, + STATE(8684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594504,52 +591410,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128453] = 19, - ACTIONS(7398), 1, + [128811] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9725), 4, + STATE(10075), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594557,52 +591463,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128525] = 19, - ACTIONS(7398), 1, + [128883] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9726), 4, + STATE(10071), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594610,52 +591516,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128597] = 19, - ACTIONS(473), 1, + [128955] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(856), 1, sym_user_type, - STATE(6419), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9794), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3880), 4, + STATE(1353), 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, @@ -594663,47 +591569,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128669] = 19, - ACTIONS(473), 1, + [129027] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3756), 4, + STATE(3854), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -594716,52 +591622,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128741] = 19, - ACTIONS(7398), 1, + [129099] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8781), 4, + STATE(8681), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594769,47 +591675,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128813] = 19, - ACTIONS(473), 1, + [129171] = 19, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9226), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9242), 1, anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3392), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3572), 1, sym_user_type, - STATE(6419), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9794), 1, - sym_parenthesized_user_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, + STATE(9899), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3393), 2, + STATE(3570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3850), 4, + STATE(3891), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -594822,105 +591728,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128885] = 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(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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [128957] = 19, + [129243] = 19, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9281), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2840), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6433), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9877), 1, + STATE(9629), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2812), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2916), 4, + STATE(1378), 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, @@ -594928,52 +591781,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129029] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [129315] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9454), 4, + STATE(1153), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594981,52 +591834,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129101] = 19, - ACTIONS(7), 1, + [129387] = 19, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4558), 1, sym_user_type, - STATE(6447), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, + STATE(9775), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4704), 4, + STATE(4756), 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, @@ -595034,52 +591887,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129173] = 19, - ACTIONS(7398), 1, + [129459] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8782), 4, + STATE(8683), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595087,52 +591940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129245] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(8672), 1, + [129531] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(9100), 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, + ACTIONS(9270), 1, + anon_sym_LPAREN, + ACTIONS(9272), 1, + anon_sym_dynamic, + STATE(814), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(9735), 1, + STATE(6416), 1, + sym_type_modifiers, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(10109), 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, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9777), 4, + STATE(1173), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595140,52 +591993,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129317] = 19, - ACTIONS(7398), 1, + [129603] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9778), 4, + STATE(9987), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595193,52 +592046,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129389] = 19, - ACTIONS(7398), 1, + [129675] = 19, + ACTIONS(7434), 1, anon_sym_dynamic, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6420), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(8333), 1, sym_user_type, - STATE(9735), 1, + STATE(9818), 1, sym_parenthesized_user_type, - STATE(9736), 1, + STATE(9819), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8790), 4, + STATE(9986), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595246,105 +592099,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129461] = 19, - ACTIONS(211), 1, + [129747] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_dynamic, - STATE(4534), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(4578), 1, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9535), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [129533] = 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, - STATE(4816), 2, + STATE(8209), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4707), 4, + STATE(8717), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595352,52 +592152,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129605] = 19, - ACTIONS(7), 1, + [129819] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9272), 1, anon_sym_dynamic, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(856), 1, sym_user_type, - STATE(6447), 1, + STATE(6416), 1, sym_type_modifiers, - STATE(9845), 1, + STATE(9629), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(855), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5146), 4, + STATE(1382), 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, @@ -595405,52 +592205,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129677] = 19, - ACTIONS(387), 1, + [129891] = 19, + ACTIONS(7434), 1, + anon_sym_dynamic, + ACTIONS(7441), 1, + anon_sym_suspend, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9100), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8229), 1, sym__simple_user_type, - STATE(860), 1, + STATE(8333), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9916), 1, + STATE(9818), 1, sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(8209), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(845), 4, + STATE(9843), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595458,105 +592258,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129749] = 19, + [129963] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - ACTIONS(9206), 1, + ACTIONS(9224), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4815), 1, + STATE(4717), 1, sym_user_type, - STATE(6447), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9845), 1, - sym_parenthesized_user_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, + STATE(9526), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4816), 2, + STATE(4718), 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(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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [129821] = 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8216), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8785), 4, + STATE(5554), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595564,47 +592311,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129893] = 19, - ACTIONS(211), 1, + [130035] = 19, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(7405), 1, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9242), 1, + ACTIONS(9200), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(9202), 1, anon_sym_dynamic, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4578), 1, + STATE(4558), 1, sym_user_type, - STATE(6414), 1, + STATE(6423), 1, sym_type_modifiers, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, - STATE(9535), 1, + STATE(9775), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4564), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4890), 4, + STATE(4760), 4, sym__type, sym_not_nullable_type, sym_nullable_type, @@ -595617,52 +592364,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129965] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(7405), 1, + [130107] = 19, + ACTIONS(7441), 1, anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9250), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, + sym__backtick_identifier, + STATE(5687), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5717), 1, sym__simple_user_type, - STATE(860), 1, + STATE(5768), 1, sym_user_type, - STATE(6439), 1, + STATE(6441), 1, sym_type_modifiers, - STATE(9593), 1, + STATE(9511), 1, sym_function_type_parameters, - STATE(9916), 1, + STATE(9817), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(851), 2, + STATE(5724), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7213), 3, + STATE(7221), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(848), 4, + STATE(5830), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595670,52 +592417,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130037] = 19, - ACTIONS(387), 1, + [130179] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(7405), 1, - anon_sym_suspend, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, anon_sym_dynamic, - STATE(823), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9293), 1, + anon_sym_LPAREN, + STATE(3008), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6552), 1, + sym_type_parameters, + STATE(7216), 1, + sym_type_modifiers, + STATE(7535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8002), 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(851), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, + STATE(7916), 2, + sym__receiver_type, + sym_nullable_type, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(849), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595723,52 +592469,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130109] = 19, - ACTIONS(7398), 1, - anon_sym_dynamic, - ACTIONS(7405), 1, + [130250] = 19, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(8672), 1, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9206), 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, + ACTIONS(9212), 1, + sym__backtick_identifier, + ACTIONS(9295), 1, + anon_sym_dynamic, + STATE(5602), 1, sym_simple_identifier, - STATE(8138), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5726), 1, sym__simple_user_type, - STATE(8332), 1, + STATE(5776), 1, sym_user_type, - STATE(9735), 1, - sym_parenthesized_user_type, - STATE(9736), 1, + STATE(7476), 1, + sym_type_modifiers, + STATE(9469), 1, sym_function_type_parameters, + STATE(10030), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8216), 2, + STATE(5771), 2, sym__type_reference, sym_parenthesized_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(5831), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8787), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8682), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595776,51 +592521,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130181] = 19, - ACTIONS(8672), 1, + [130321] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9222), 1, anon_sym_LPAREN, - STATE(4983), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(9297), 1, + anon_sym_dynamic, + STATE(4619), 1, sym__lexical_identifier, - STATE(6568), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7599), 1, - sym_simple_identifier, - STATE(7903), 1, + STATE(4624), 1, sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4725), 1, + sym_user_type, + STATE(7500), 1, + sym_type_modifiers, + STATE(9525), 1, + sym_function_type_parameters, + STATE(9569), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(4728), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8002), 2, - sym__receiver_type, + STATE(5041), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7217), 3, + sym_function_type, + STATE(7213), 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, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595828,12 +592573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130252] = 19, - ACTIONS(8672), 1, + [130392] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -595841,38 +592586,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(4741), 1, + STATE(3495), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6567), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7383), 1, + STATE(7458), 1, sym_simple_identifier, - STATE(7871), 1, + STATE(7997), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7917), 2, + STATE(7954), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595880,12 +592625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130323] = 19, - ACTIONS(8672), 1, + [130463] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -595893,38 +592638,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9295), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(978), 1, + STATE(4994), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6579), 1, + STATE(6582), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7494), 1, + STATE(7428), 1, sym_simple_identifier, - STATE(7942), 1, + STATE(7934), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7898), 2, + STATE(7996), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595932,51 +592677,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130394] = 19, - ACTIONS(211), 1, + [130534] = 19, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9242), 1, + ACTIONS(9270), 1, anon_sym_LPAREN, - ACTIONS(9297), 1, + ACTIONS(9303), 1, anon_sym_dynamic, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4573), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(833), 1, sym_user_type, - STATE(7425), 1, + STATE(7420), 1, sym_type_modifiers, - STATE(9487), 1, - sym_function_type_parameters, - STATE(9574), 1, + STATE(9643), 1, sym_parenthesized_user_type, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4574), 2, + STATE(844), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(4631), 3, + STATE(1013), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595984,12 +592729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130465] = 19, - ACTIONS(8672), 1, + [130605] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -595997,38 +592742,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9299), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(4919), 1, + STATE(3676), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6559), 1, + STATE(6562), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7442), 1, + STATE(7567), 1, sym_simple_identifier, - STATE(8016), 1, + STATE(7890), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7938), 2, + STATE(7955), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596036,12 +592781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130536] = 19, - ACTIONS(8672), 1, + [130676] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596049,38 +592794,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9301), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3676), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6575), 1, + STATE(6554), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7578), 1, + STATE(7437), 1, sym_simple_identifier, - STATE(7925), 1, + STATE(7890), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7973), 2, + STATE(7967), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596088,12 +592833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130607] = 19, - ACTIONS(8672), 1, + [130747] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596101,38 +592846,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9299), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(4563), 1, + STATE(4994), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6586), 1, + STATE(6571), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7532), 1, + STATE(7388), 1, sym_simple_identifier, - STATE(7884), 1, + STATE(7934), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8009), 2, + STATE(7938), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596140,12 +592885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130678] = 19, - ACTIONS(8672), 1, + [130818] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596153,38 +592898,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9301), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(3042), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6543), 1, + STATE(6578), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7405), 1, + STATE(7494), 1, sym_simple_identifier, - STATE(7925), 1, + STATE(7985), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7901), 2, + STATE(7886), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596192,103 +592937,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130749] = 19, - ACTIONS(473), 1, + [130889] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9226), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - ACTIONS(9303), 1, - anon_sym_dynamic, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + STATE(4908), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3371), 1, - sym_user_type, - STATE(7569), 1, + STATE(6572), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9801), 1, - sym_parenthesized_user_type, - STATE(9976), 1, - sym_function_type_parameters, + STATE(7597), 1, + sym_simple_identifier, + STATE(7907), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3558), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(3819), 3, - sym_not_nullable_type, + STATE(7898), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [130820] = 19, - 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(9190), 1, - anon_sym_suspend, - ACTIONS(9305), 1, - anon_sym_dynamic, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7374), 1, - sym_type_modifiers, - STATE(7893), 1, - sym_simple_identifier, - 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(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8185), 2, + STATE(7845), 3, sym__type_reference, + sym_user_type, 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(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596296,12 +592989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130891] = 19, - ACTIONS(8672), 1, + [130960] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596311,36 +593004,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(3059), 1, + STATE(4857), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6570), 1, + STATE(6547), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7421), 1, + STATE(7550), 1, sym_simple_identifier, - STATE(8001), 1, + STATE(8026), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7906), 2, + STATE(7922), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596348,51 +593041,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130962] = 19, - ACTIONS(9057), 1, - anon_sym_LPAREN, - ACTIONS(9105), 1, + [131031] = 19, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9100), 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, + ACTIONS(9200), 1, + anon_sym_LPAREN, + ACTIONS(9309), 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, + STATE(4533), 1, sym__simple_user_type, - STATE(8915), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4561), 1, sym_user_type, - STATE(9494), 1, + STATE(7548), 1, + sym_type_modifiers, + STATE(9697), 1, sym_function_type_parameters, - STATE(9829), 1, + STATE(9725), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9016), 2, + STATE(4565), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8290), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4651), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9210), 7, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596400,12 +593093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131033] = 19, - ACTIONS(8672), 1, + [131102] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596413,38 +593106,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9309), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(3730), 1, + STATE(4908), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6560), 1, + STATE(6573), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7559), 1, + STATE(7488), 1, sym_simple_identifier, - STATE(7992), 1, + STATE(7907), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7950), 2, + STATE(7943), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596452,12 +593145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131104] = 19, - ACTIONS(8672), 1, + [131173] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596465,38 +593158,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9311), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - STATE(3026), 1, + STATE(2818), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6541), 1, + STATE(6546), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7565), 1, + STATE(7415), 1, sym_simple_identifier, - STATE(7880), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7957), 2, + STATE(7978), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596504,51 +593197,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131175] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [131244] = 19, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9200), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9313), 1, + ACTIONS(9252), 1, + sym__backtick_identifier, + ACTIONS(9311), 1, anon_sym_dynamic, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(2979), 1, - sym_user_type, - STATE(7590), 1, + STATE(7557), 1, sym_type_modifiers, - STATE(9862), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8328), 1, + sym_user_type, + STATE(9537), 1, sym_parenthesized_user_type, - STATE(9863), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3037), 2, + STATE(5725), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(3359), 3, + STATE(5772), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596556,12 +593249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131246] = 19, - ACTIONS(8672), 1, + [131315] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596569,38 +593262,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9299), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - STATE(4563), 1, + STATE(4994), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6581), 1, + STATE(6588), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7543), 1, + STATE(7527), 1, sym_simple_identifier, - STATE(7884), 1, + STATE(7934), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7983), 2, + STATE(7882), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596608,12 +593301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131317] = 19, - ACTIONS(8672), 1, + [131386] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596621,38 +593314,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9295), 1, + ACTIONS(9313), 1, anon_sym_LPAREN, - STATE(978), 1, + STATE(858), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6554), 1, + STATE(6540), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7517), 1, + STATE(7405), 1, sym_simple_identifier, - STATE(7942), 1, + STATE(8005), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7969), 2, + STATE(7989), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596660,51 +593353,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131388] = 19, - ACTIONS(8672), 1, + [131457] = 19, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9301), 1, + ACTIONS(9240), 1, anon_sym_LPAREN, - STATE(3059), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6561), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7602), 1, + ACTIONS(9315), 1, + anon_sym_dynamic, + STATE(3314), 1, sym_simple_identifier, - STATE(8001), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, + STATE(3577), 1, + sym_user_type, + STATE(7462), 1, + sym_type_modifiers, + STATE(9630), 1, + sym_function_type_parameters, + STATE(9882), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(3456), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7993), 2, - sym__receiver_type, + STATE(3726), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7217), 3, + sym_function_type, + STATE(7213), 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, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596712,51 +593405,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131459] = 19, - ACTIONS(9105), 1, + [131528] = 19, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9218), 1, + ACTIONS(9301), 1, anon_sym_LPAREN, - ACTIONS(9224), 1, - sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_dynamic, - STATE(5685), 1, + STATE(4857), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7466), 1, + STATE(6561), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(7891), 1, + STATE(7471), 1, + sym_simple_identifier, + STATE(8026), 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(5745), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(5786), 3, - sym_not_nullable_type, + STATE(7889), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9220), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596764,51 +593457,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131530] = 19, - ACTIONS(9105), 1, + [131599] = 19, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9218), 1, - anon_sym_LPAREN, - ACTIONS(9268), 1, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9317), 1, anon_sym_dynamic, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(7495), 1, + sym_type_modifiers, + STATE(8323), 1, sym__lexical_identifier, - STATE(5718), 1, + STATE(8326), 1, + sym_simple_identifier, + STATE(8622), 1, sym__simple_user_type, - STATE(5767), 1, + STATE(8945), 1, sym_user_type, - STATE(7489), 1, - sym_type_modifiers, - STATE(9680), 1, - sym_parenthesized_user_type, - STATE(10064), 1, + STATE(9663), 1, sym_function_type_parameters, + STATE(10105), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5745), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(5786), 3, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - STATE(7217), 3, + STATE(8998), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9270), 7, + STATE(8299), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596816,51 +593509,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131601] = 19, - ACTIONS(8672), 1, + [131670] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9059), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9311), 1, - anon_sym_LPAREN, - STATE(3671), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(9319), 1, + anon_sym_dynamic, + STATE(6386), 1, sym__lexical_identifier, - STATE(6569), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(7599), 1, sym_type_modifiers, - STATE(7484), 1, - sym_simple_identifier, STATE(7980), 1, + sym_simple_identifier, + STATE(8229), 1, sym__simple_user_type, + STATE(8327), 1, + sym_user_type, + STATE(9566), 1, + sym_parenthesized_user_type, + STATE(9819), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7918), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7217), 3, + STATE(8036), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7213), 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, + STATE(8299), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596868,51 +593561,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131672] = 19, - ACTIONS(8672), 1, + [131741] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9057), 1, + ACTIONS(9059), 1, anon_sym_LPAREN, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9305), 1, + ACTIONS(9319), 1, anon_sym_dynamic, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(7427), 1, + STATE(7389), 1, sym_type_modifiers, - STATE(8125), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8347), 1, + STATE(8348), 1, sym_user_type, - STATE(9549), 1, - sym_function_type_parameters, - STATE(9579), 1, + STATE(9504), 1, sym_parenthesized_user_type, + STATE(9520), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8185), 2, + STATE(8036), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8290), 3, + STATE(8299), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596920,51 +593613,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131743] = 19, - ACTIONS(557), 1, + [131812] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9279), 1, + ACTIONS(9313), 1, anon_sym_LPAREN, - ACTIONS(9317), 1, - anon_sym_dynamic, - STATE(2791), 1, + STATE(930), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2811), 1, - sym_user_type, - STATE(7552), 1, + STATE(6565), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9798), 1, - sym_function_type_parameters, - STATE(9885), 1, - sym_parenthesized_user_type, + STATE(7433), 1, + sym_simple_identifier, + STATE(7897), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2842), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(3033), 3, - sym_not_nullable_type, + STATE(7998), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596972,12 +593665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131814] = 19, - ACTIONS(8672), 1, + [131883] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -596985,38 +593678,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(4983), 1, + STATE(3816), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6534), 1, + STATE(6549), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7548), 1, + STATE(7515), 1, sym_simple_identifier, - STATE(7903), 1, + STATE(7947), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7902), 2, + STATE(7904), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597024,12 +593717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131885] = 19, - ACTIONS(8672), 1, + [131954] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597037,38 +593730,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9309), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - STATE(3730), 1, + STATE(3042), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6578), 1, + STATE(6550), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7462), 1, + STATE(7531), 1, sym_simple_identifier, - STATE(7992), 1, + STATE(7985), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7944), 2, + STATE(7913), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597076,12 +593769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131956] = 19, - ACTIONS(8672), 1, + [132025] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597089,38 +593782,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9295), 1, + ACTIONS(9293), 1, anon_sym_LPAREN, - STATE(831), 1, + STATE(3008), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6553), 1, + STATE(6537), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7596), 1, + STATE(7504), 1, sym_simple_identifier, - STATE(7878), 1, + STATE(8002), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7984), 2, + STATE(7966), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597128,12 +593821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132027] = 19, - ACTIONS(8672), 1, + [132096] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597141,38 +593834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - STATE(4741), 1, + STATE(2818), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6551), 1, + STATE(6581), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7380), 1, + STATE(7507), 1, sym_simple_identifier, - STATE(7871), 1, + STATE(7884), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7885), 2, + STATE(7983), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597180,12 +593873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132098] = 19, - ACTIONS(8672), 1, + [132167] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597193,38 +593886,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(4983), 1, + STATE(4567), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6576), 1, + STATE(6587), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7441), 1, + STATE(7460), 1, sym_simple_identifier, - STATE(7903), 1, + STATE(7988), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7924), 2, + STATE(7903), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597232,51 +593925,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132169] = 19, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [132238] = 19, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9319), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9232), 1, + anon_sym_LPAREN, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9321), 1, anon_sym_dynamic, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(833), 1, + STATE(4669), 1, sym_user_type, - STATE(7445), 1, + STATE(7417), 1, sym_type_modifiers, - STATE(9593), 1, - sym_function_type_parameters, - STATE(9919), 1, + STATE(9768), 1, sym_parenthesized_user_type, + STATE(10058), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(827), 2, + STATE(4621), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(1012), 3, + STATE(4928), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597284,51 +593977,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132240] = 19, - ACTIONS(9105), 1, + [132309] = 19, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9234), 1, + ACTIONS(9246), 1, anon_sym_LPAREN, - ACTIONS(9240), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9321), 1, + ACTIONS(9311), 1, anon_sym_dynamic, - STATE(4544), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(5717), 1, sym__simple_user_type, - STATE(4668), 1, + STATE(5767), 1, sym_user_type, - STATE(7481), 1, + STATE(7509), 1, sym_type_modifiers, - STATE(9741), 1, + STATE(9511), 1, sym_function_type_parameters, - STATE(9903), 1, + STATE(9844), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4645), 2, + STATE(5725), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(4918), 3, + STATE(5772), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9236), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597336,12 +594029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132311] = 19, - ACTIONS(8672), 1, + [132380] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597349,38 +594042,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9311), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - STATE(3671), 1, + STATE(3042), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6587), 1, + STATE(6534), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7536), 1, + STATE(7444), 1, sym_simple_identifier, - STATE(7980), 1, + STATE(7985), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7962), 2, + STATE(7948), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597388,12 +594081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132382] = 19, - ACTIONS(8672), 1, + [132451] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597401,38 +594094,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9309), 1, + ACTIONS(9313), 1, anon_sym_LPAREN, - STATE(3429), 1, + STATE(858), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6577), 1, + STATE(6586), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7480), 1, + STATE(7511), 1, sym_simple_identifier, - STATE(7882), 1, + STATE(8005), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7868), 2, + STATE(7992), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597440,103 +594133,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132453] = 19, - ACTIONS(8672), 1, + [132522] = 19, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(9188), 1, - anon_sym_dynamic, + ACTIONS(9180), 1, + anon_sym_LPAREN, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9311), 1, - anon_sym_LPAREN, - STATE(3026), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(9323), 1, + anon_sym_dynamic, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(6564), 1, - sym_type_parameters, - STATE(7216), 1, + STATE(2853), 1, + sym_user_type, + STATE(7442), 1, sym_type_modifiers, - STATE(7528), 1, - sym_simple_identifier, - STATE(7880), 1, - sym__simple_user_type, + STATE(9792), 1, + sym_parenthesized_user_type, + STATE(9974), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7920), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(2830), 2, sym__type_reference, - sym_user_type, sym_parenthesized_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, - [132524] = 19, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - 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(9295), 1, - anon_sym_LPAREN, - STATE(831), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6544), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7551), 1, - sym_simple_identifier, - STATE(7878), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7933), 2, - sym__receiver_type, + STATE(2990), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7217), 3, + sym_function_type, + STATE(7213), 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, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597544,12 +594185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132595] = 19, - ACTIONS(8672), 1, + [132593] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597557,38 +594198,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9309), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(3429), 1, + STATE(4567), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6574), 1, + STATE(6541), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7502), 1, + STATE(7553), 1, sym_simple_identifier, - STATE(7882), 1, + STATE(7988), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7949), 2, + STATE(7892), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597596,12 +594237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132666] = 19, - ACTIONS(8672), 1, + [132664] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597611,36 +594252,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9299), 1, anon_sym_LPAREN, - STATE(4919), 1, + STATE(3816), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6547), 1, + STATE(6558), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7589), 1, + STATE(7501), 1, sym_simple_identifier, - STATE(8016), 1, + STATE(7947), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8014), 2, + STATE(7895), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597648,51 +594289,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132737] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [132735] = 19, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9204), 1, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9323), 1, + ACTIONS(9325), 1, anon_sym_dynamic, - STATE(4612), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(4722), 1, + STATE(2891), 1, + sym__simple_user_type, + STATE(3265), 1, sym_user_type, - STATE(7588), 1, + STATE(7410), 1, sym_type_modifiers, - STATE(9784), 1, + STATE(9728), 1, sym_parenthesized_user_type, - STATE(9846), 1, + STATE(10153), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4723), 2, + STATE(3083), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(4975), 3, + STATE(3412), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597700,51 +594341,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132808] = 19, - ACTIONS(9105), 1, + [132806] = 19, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9100), 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(9260), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(9266), 1, - sym__backtick_identifier, - ACTIONS(9325), 1, - anon_sym_dynamic, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(3495), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(2881), 1, - sym__simple_user_type, - STATE(3199), 1, - sym_user_type, - STATE(7458), 1, + STATE(6574), 1, + sym_type_parameters, + STATE(7216), 1, sym_type_modifiers, - STATE(9673), 1, - sym_function_type_parameters, - STATE(9912), 1, - sym_parenthesized_user_type, + STATE(7480), 1, + sym_simple_identifier, + STATE(7997), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3176), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(3407), 3, - sym_not_nullable_type, + STATE(7959), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9262), 7, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597752,51 +594393,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132879] = 19, - ACTIONS(9105), 1, + [132877] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9250), 1, + ACTIONS(9226), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - sym__backtick_identifier, ACTIONS(9327), 1, anon_sym_dynamic, - STATE(5602), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5617), 1, - sym_simple_identifier, - STATE(5748), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(5777), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(2989), 1, sym_user_type, - STATE(7537), 1, + STATE(7448), 1, sym_type_modifiers, - STATE(9768), 1, - sym_parenthesized_user_type, - STATE(10117), 1, + STATE(9835), 1, sym_function_type_parameters, + STATE(9838), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5772), 2, + STATE(3044), 2, sym__type_reference, sym_parenthesized_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(5829), 3, + STATE(3315), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9252), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597804,12 +594445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132950] = 19, - ACTIONS(8672), 1, + [132948] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597817,38 +594458,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9299), 1, + ACTIONS(9307), 1, anon_sym_LPAREN, - STATE(4919), 1, + STATE(4908), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6580), 1, + STATE(6536), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7455), 1, + STATE(7532), 1, sym_simple_identifier, - STATE(8016), 1, + STATE(7907), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7939), 2, + STATE(7868), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597856,12 +594497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133021] = 19, - ACTIONS(8672), 1, + [133019] = 19, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -597869,38 +594510,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9301), 1, + ACTIONS(9313), 1, anon_sym_LPAREN, - STATE(3059), 1, + STATE(930), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6537), 1, + STATE(6589), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7542), 1, + STATE(7466), 1, sym_simple_identifier, - STATE(8001), 1, + STATE(7897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7961), 2, + STATE(7885), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597908,48 +594549,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133092] = 17, - ACTIONS(387), 1, + [133090] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6570), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7486), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7367), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7946), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597957,48 +594599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133158] = 17, - ACTIONS(387), 1, + [133158] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6555), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7404), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7470), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7991), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598006,48 +594649,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133224] = 17, - ACTIONS(115), 1, + [133226] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6538), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7578), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2661), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7457), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7908), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598055,44 +594699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133290] = 17, - ACTIONS(473), 1, + [133294] = 17, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, + STATE(2731), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7439), 2, + STATE(7560), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -598104,48 +594748,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133356] = 17, - ACTIONS(387), 1, + [133360] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6560), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7517), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7365), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7901), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598153,12 +594798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133422] = 17, - ACTIONS(473), 1, + [133428] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -598166,85 +594811,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2364), 2, + STATE(2603), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7422), 2, + STATE(7573), 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, - [133488] = 18, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - 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(6585), 1, - sym_type_parameters, - STATE(7216), 1, - sym_type_modifiers, - STATE(7394), 1, - sym_simple_identifier, - STATE(7843), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7905), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598252,49 +594847,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133556] = 18, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [133494] = 17, + ACTIONS(9100), 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, + ACTIONS(9192), 1, + sym__alpha_identifier, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5686), 1, + sym_simple_identifier, + STATE(5691), 1, sym__lexical_identifier, - STATE(6589), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7547), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7965), 2, + STATE(5479), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7453), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598302,48 +594896,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133624] = 17, - ACTIONS(9105), 1, + [133560] = 17, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9258), 1, + ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(9266), 1, - sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9194), 1, anon_sym_LPAREN, - STATE(2853), 1, - sym__lexical_identifier, - STATE(2926), 1, + ACTIONS(9198), 1, + sym__backtick_identifier, + STATE(5686), 1, sym_simple_identifier, + STATE(5691), 1, + sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2287), 2, + STATE(5459), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7410), 2, + STATE(7547), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9262), 7, + ACTIONS(9196), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598351,48 +594945,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133690] = 17, - ACTIONS(473), 1, + [133626] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6386), 1, sym__lexical_identifier, + STATE(6553), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7598), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2695), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7529), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7900), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598400,12 +594995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133756] = 18, - ACTIONS(8672), 1, + [133694] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -598415,34 +595010,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6566), 1, + STATE(6568), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7448), 1, + STATE(7533), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7911), 2, + STATE(7918), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598450,48 +595045,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133824] = 17, - ACTIONS(387), 1, + [133762] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(431), 2, + STATE(2337), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7473), 2, + STATE(7579), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -598499,48 +595094,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133890] = 17, - ACTIONS(387), 1, + [133828] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6559), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7445), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7493), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7972), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598548,48 +595144,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133956] = 17, - ACTIONS(387), 1, + [133896] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, + STATE(2346), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7546), 2, + STATE(7577), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -598597,48 +595193,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134022] = 17, - ACTIONS(387), 1, + [133962] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6575), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7461), 1, + sym_simple_identifier, + STATE(7850), 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, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7953), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598646,44 +595243,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134088] = 17, - ACTIONS(473), 1, + [134030] = 17, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2395), 2, + STATE(2643), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7389), 2, + STATE(7447), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -598695,48 +595292,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134154] = 17, - ACTIONS(115), 1, + [134096] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6564), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7540), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2135), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7524), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7928), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598744,48 +595342,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134220] = 17, - ACTIONS(115), 1, + [134164] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6580), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7523), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2381), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7414), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7872), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598793,48 +595392,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134286] = 17, - ACTIONS(115), 1, + [134232] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6577), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7514), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2180), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7583), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7993), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598842,48 +595442,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134352] = 17, - ACTIONS(387), 1, + [134300] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, + STATE(2424), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7409), 2, + STATE(7530), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598891,12 +595491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134418] = 18, - ACTIONS(8672), 1, + [134366] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -598906,34 +595506,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6588), 1, + STATE(6585), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7413), 1, + STATE(7508), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7926), 2, + STATE(7984), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598941,48 +595541,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134486] = 17, - ACTIONS(115), 1, + [134434] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6584), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7412), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2377), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7404), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7877), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598990,48 +595591,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134552] = 17, - ACTIONS(115), 1, + [134502] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(822), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, + STATE(457), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7600), 2, + STATE(7498), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599039,48 +595640,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134618] = 17, - ACTIONS(9105), 1, + [134568] = 18, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9186), 1, + anon_sym_LT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9285), 1, - sym__alpha_identifier, - ACTIONS(9287), 1, + ACTIONS(9329), 1, anon_sym_LPAREN, - ACTIONS(9291), 1, - sym__backtick_identifier, - STATE(5682), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5690), 1, - sym_simple_identifier, + STATE(6583), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7477), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5513), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7538), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7936), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9289), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599088,48 +595690,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134684] = 17, - ACTIONS(387), 1, + [134636] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(614), 2, + STATE(2323), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7512), 2, + STATE(7568), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599137,12 +595739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134750] = 17, - ACTIONS(473), 1, + [134702] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -599150,35 +595752,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2734), 2, + STATE(1897), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7407), 2, + STATE(7411), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599186,49 +595788,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134816] = 18, - ACTIONS(8672), 1, + [134768] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9329), 1, - anon_sym_LPAREN, - STATE(6224), 1, + STATE(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7540), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8010), 2, + STATE(2368), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7571), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599236,12 +595837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134884] = 18, - ACTIONS(8672), 1, + [134834] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -599251,34 +595852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6534), 1, + STATE(6579), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7548), 1, + STATE(7549), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7902), 2, + STATE(7926), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599286,48 +595887,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134952] = 17, - ACTIONS(115), 1, + [134902] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6566), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7483), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2460), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7479), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8011), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599335,48 +595937,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135018] = 17, - ACTIONS(9105), 1, + [134970] = 17, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, - sym__backtick_identifier, - STATE(5687), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(5694), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5431), 2, + STATE(2373), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7415), 2, + STATE(7490), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9196), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599384,44 +595986,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135084] = 17, - ACTIONS(473), 1, + [135036] = 17, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2659), 2, + STATE(2684), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7516), 2, + STATE(7534), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -599433,49 +596035,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135150] = 18, - ACTIONS(8672), 1, + [135102] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6573), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7523), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7897), 2, + STATE(2363), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7482), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599483,44 +596084,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135218] = 17, - ACTIONS(473), 1, + [135168] = 17, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, + anon_sym_LPAREN, + STATE(3278), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, + STATE(2391), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7503), 2, + STATE(7376), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -599532,49 +596133,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135284] = 18, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [135234] = 17, + ACTIONS(9100), 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, + ACTIONS(9214), 1, + sym__alpha_identifier, + ACTIONS(9216), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9220), 1, + sym__backtick_identifier, + STATE(5683), 1, sym__lexical_identifier, - STATE(6583), 1, - sym_type_parameters, + STATE(5695), 1, + sym_simple_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7508), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7953), 2, + STATE(5490), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7542), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599582,49 +596182,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135352] = 18, - ACTIONS(8672), 1, + [135300] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9329), 1, - anon_sym_LPAREN, - STATE(6224), 1, + STATE(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6582), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7443), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7999), 2, + STATE(2374), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7569), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599632,48 +596231,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135420] = 17, - ACTIONS(115), 1, + [135366] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(822), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1746), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7545), 2, + STATE(7451), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599681,12 +596280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135486] = 18, - ACTIONS(8672), 1, + [135432] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -599696,34 +596295,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6572), 1, + STATE(6576), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7377), 1, + STATE(7505), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8004), 2, + STATE(7974), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599731,48 +596330,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135554] = 17, - ACTIONS(473), 1, + [135500] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6386), 1, sym__lexical_identifier, + STATE(6543), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7484), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7587), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7962), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599780,49 +596380,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135620] = 18, - ACTIONS(8672), 1, + [135568] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_LT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9329), 1, - anon_sym_LPAREN, - STATE(6224), 1, + STATE(2890), 1, + sym_simple_identifier, + STATE(2892), 1, sym__lexical_identifier, - STATE(6556), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7573), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7978), 2, + STATE(2319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7565), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599830,48 +596429,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135688] = 17, - ACTIONS(115), 1, + [135634] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2609), 2, + STATE(2720), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7449), 2, + STATE(7563), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599879,44 +596478,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135754] = 17, - ACTIONS(387), 1, + [135700] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(822), 1, sym_simple_identifier, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, + STATE(613), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7469), 2, + STATE(7440), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -599928,48 +596527,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135820] = 17, - ACTIONS(115), 1, + [135766] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2435), 2, + STATE(2638), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7577), 2, + STATE(7457), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599977,12 +596576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135886] = 18, - ACTIONS(8672), 1, + [135832] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -599992,34 +596591,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6571), 1, + STATE(6563), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7601), 1, + STATE(7468), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7986), 2, + STATE(7896), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600027,49 +596626,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135954] = 18, - ACTIONS(8672), 1, + [135900] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6565), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7476), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8007), 2, + STATE(427), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7392), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600077,48 +596675,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136022] = 17, + [135966] = 17, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, - anon_sym_LPAREN, - STATE(2938), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2330), 2, + STATE(2422), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7391), 2, + STATE(7423), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600126,48 +596724,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136088] = 17, - ACTIONS(473), 1, + [136032] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2728), 2, + STATE(432), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7430), 2, + STATE(7395), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -600175,44 +596773,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136154] = 17, - ACTIONS(387), 1, + [136098] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(812), 1, + STATE(822), 1, sym_simple_identifier, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(443), 2, + STATE(568), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7483), 2, + STATE(7562), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, @@ -600224,48 +596822,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136220] = 17, - ACTIONS(473), 1, + [136164] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2403), 2, + STATE(433), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7575), 2, + STATE(7397), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -600273,12 +596871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136286] = 18, - ACTIONS(8672), 1, + [136230] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -600288,34 +596886,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6562), 1, + STATE(6556), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7463), 1, + STATE(7452), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7945), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600323,48 +596921,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136354] = 17, - ACTIONS(9105), 1, + [136298] = 17, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, - sym__backtick_identifier, - STATE(5687), 1, + STATE(822), 1, sym_simple_identifier, - STATE(5694), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5436), 2, + STATE(546), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7509), 2, + STATE(7556), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9196), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600372,49 +596970,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136420] = 18, - ACTIONS(8672), 1, + [136364] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6557), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7435), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7929), 2, + STATE(428), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7400), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600422,48 +597019,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136488] = 17, - ACTIONS(115), 1, + [136430] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6548), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7436), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7417), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7970), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600471,48 +597069,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136554] = 17, - ACTIONS(387), 1, + [136498] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, + STATE(1688), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7382), 2, + STATE(7407), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600520,48 +597118,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136620] = 17, - ACTIONS(9105), 1, + [136564] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, 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(5690), 1, + STATE(2890), 1, sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5494), 2, + STATE(1830), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7440), 2, + STATE(7416), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9289), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600569,12 +597167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136686] = 18, - ACTIONS(8672), 1, + [136630] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -600584,34 +597182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6544), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7450), 1, + STATE(7519), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7941), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600619,12 +597217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136754] = 17, - ACTIONS(473), 1, + [136698] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -600632,35 +597230,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2410), 2, + STATE(1839), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7456), 2, + STATE(7424), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600668,48 +597266,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136820] = 17, - ACTIONS(9105), 1, + [136764] = 17, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9266), 1, - sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2853), 1, - sym__lexical_identifier, - STATE(2926), 1, + STATE(3278), 1, sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2314), 2, + STATE(2622), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7396), 2, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9262), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600717,48 +597315,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136886] = 17, - ACTIONS(115), 1, + [136830] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(3278), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2323), 2, + STATE(2413), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7399), 2, + STATE(7582), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600766,49 +597364,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136952] = 18, - ACTIONS(8672), 1, + [136896] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6539), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7521), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7989), 2, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7464), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600816,49 +597413,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137020] = 18, - ACTIONS(8672), 1, + [136962] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6545), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7591), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7951), 2, + STATE(582), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7528), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600866,48 +597462,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137088] = 17, - ACTIONS(387), 1, + [137028] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(450), 2, + STATE(2612), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7397), 2, + STATE(7450), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600915,49 +597511,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137154] = 18, - ACTIONS(8672), 1, + [137094] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6558), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7513), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7971), 2, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7558), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600965,12 +597560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137222] = 18, - ACTIONS(8672), 1, + [137160] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -600980,34 +597575,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6546), 1, + STATE(6545), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7580), 1, + STATE(7432), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7976), 2, + STATE(7982), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601015,48 +597610,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137290] = 17, - ACTIONS(473), 1, + [137228] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2346), 2, + STATE(567), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7363), 2, + STATE(7518), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -601064,49 +597659,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137356] = 18, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [137294] = 17, + ACTIONS(9100), 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, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9264), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9268), 1, + sym__backtick_identifier, + STATE(2817), 1, sym__lexical_identifier, - STATE(6536), 1, - sym_type_parameters, + STATE(2895), 1, + sym_simple_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7379), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(2302), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7469), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7921), 2, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7845), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9266), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137360] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_dynamic, + ACTIONS(9190), 1, + anon_sym_suspend, + STATE(2890), 1, + sym_simple_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(7216), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2604), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7443), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601114,12 +597757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137424] = 18, - ACTIONS(8672), 1, + [137426] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -601129,34 +597772,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6542), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7554), 1, + STATE(7414), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7874), 2, + STATE(7981), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601164,48 +597807,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137492] = 17, - ACTIONS(473), 1, + [137494] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, + anon_sym_LPAREN, + STATE(6386), 1, sym__lexical_identifier, + STATE(6535), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7489), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2602), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7384), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7933), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601213,49 +597857,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137558] = 18, - ACTIONS(8672), 1, + [137562] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6555), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7531), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8020), 2, + STATE(2689), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7529), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601263,12 +597906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137626] = 18, - ACTIONS(8672), 1, + [137628] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -601278,34 +597921,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6552), 1, + STATE(6551), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7544), 1, + STATE(7576), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7935), 2, + STATE(7977), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601313,12 +597956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137694] = 17, - ACTIONS(473), 1, + [137696] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -601326,35 +597969,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2646), 2, + STATE(2464), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7526), 2, + STATE(7418), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601362,12 +598005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137760] = 17, - ACTIONS(473), 1, + [137762] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9184), 1, anon_sym_LPAREN, @@ -601375,35 +598018,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - STATE(3294), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2362), 2, + STATE(2432), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7428), 2, + STATE(7402), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601411,48 +598054,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137826] = 17, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [137828] = 17, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9264), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9268), 1, + sym__backtick_identifier, + STATE(2817), 1, sym__lexical_identifier, + STATE(2895), 1, + sym_simple_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(606), 2, + STATE(2293), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7553), 2, + STATE(7574), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601460,49 +598103,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137892] = 18, - ACTIONS(8672), 1, + [137894] = 17, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9274), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(3278), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(6548), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7539), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7967), 2, + STATE(2392), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7499), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601511,47 +598153,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [137960] = 17, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, + ACTIONS(9214), 1, + sym__alpha_identifier, + ACTIONS(9216), 1, anon_sym_LPAREN, - STATE(812), 1, - sym_simple_identifier, - STATE(823), 1, + ACTIONS(9220), 1, + sym__backtick_identifier, + STATE(5683), 1, sym__lexical_identifier, + STATE(5695), 1, + sym_simple_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(581), 2, + STATE(5496), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7378), 2, + STATE(7589), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601560,47 +598202,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [138026] = 17, - ACTIONS(387), 1, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, + ACTIONS(9184), 1, + anon_sym_LPAREN, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9246), 1, - anon_sym_LPAREN, - STATE(812), 1, + STATE(2890), 1, sym_simple_identifier, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(616), 2, + STATE(2670), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7505), 2, + STATE(7360), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601609,47 +598251,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [138092] = 17, - ACTIONS(115), 1, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(822), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2457), 2, + STATE(603), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7541), 2, + STATE(7386), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601658,47 +598300,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [138158] = 17, - ACTIONS(473), 1, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, + anon_sym_LPAREN, + STATE(822), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2335), 2, + STATE(440), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7412), 2, + STATE(7520), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 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, @@ -601706,49 +598348,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138224] = 18, - ACTIONS(8672), 1, + [138224] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7507), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7870), 2, + STATE(623), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7381), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601756,48 +598397,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138292] = 17, - ACTIONS(115), 1, + [138290] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(2938), 1, - sym_simple_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(6571), 1, + sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7388), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7400), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7938), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601805,49 +598447,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138358] = 18, - ACTIONS(8672), 1, + [138358] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 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, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(822), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(6540), 1, - sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7579), 1, - sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7914), 2, + STATE(453), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7370), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601855,12 +598496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138426] = 18, - ACTIONS(8672), 1, + [138424] = 18, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9186), 1, anon_sym_LT, @@ -601870,34 +598511,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6563), 1, + STATE(6539), 1, sym_type_parameters, STATE(7216), 1, sym_type_modifiers, - STATE(7563), 1, + STATE(7586), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7958), 2, + STATE(7920), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601905,48 +598546,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138494] = 17, - ACTIONS(115), 1, + [138492] = 17, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9230), 1, + ACTIONS(9260), 1, anon_sym_LPAREN, - STATE(2938), 1, + STATE(822), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2652), 2, + STATE(448), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7467), 2, + STATE(7362), 2, sym__receiver_type, sym_nullable_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601954,12 +598595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138560] = 16, - ACTIONS(8672), 1, + [138558] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -601967,32 +598608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7476), 1, + STATE(7477), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8007), 2, + STATE(7936), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602000,12 +598641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138622] = 16, - ACTIONS(8672), 1, + [138620] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602013,32 +598654,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7468), 1, + STATE(7539), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7946), 2, + STATE(7969), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602046,12 +598687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138684] = 16, - ACTIONS(8672), 1, + [138682] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602059,32 +598700,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7372), 1, + STATE(7586), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7927), 2, + STATE(7920), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602092,12 +598733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138746] = 16, - ACTIONS(8672), 1, + [138744] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602105,32 +598746,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7539), 1, + STATE(7505), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7967), 2, + STATE(7974), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602138,45 +598779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138808] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - sym__alpha_identifier, - [138844] = 16, - ACTIONS(8672), 1, + [138806] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602184,32 +598792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7411), 1, + STATE(7555), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7987), 2, + STATE(7912), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602217,12 +598825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138906] = 16, - ACTIONS(8672), 1, + [138868] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602230,32 +598838,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7571), 1, + STATE(7538), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7928), 2, + STATE(7944), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602263,12 +598871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138968] = 16, - ACTIONS(8672), 1, + [138930] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602276,32 +598884,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7563), 1, + STATE(7404), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7958), 2, + STATE(7991), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602309,12 +598917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139030] = 16, - ACTIONS(8672), 1, + [138992] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602322,32 +598930,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7525), 1, + STATE(7523), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7909), 2, + STATE(7872), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602355,12 +598963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139092] = 16, - ACTIONS(8672), 1, + [139054] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602368,32 +598976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7579), 1, + STATE(7408), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7914), 2, + STATE(7986), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602401,12 +599009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139154] = 16, - ACTIONS(8672), 1, + [139116] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602414,32 +599022,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7544), 1, + STATE(7491), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7935), 2, + STATE(7963), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602447,12 +599055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139216] = 16, - ACTIONS(8672), 1, + [139178] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602460,32 +599068,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7586), 1, + STATE(7537), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7954), 2, + STATE(7942), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602493,12 +599101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139278] = 16, - ACTIONS(8672), 1, + [139240] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602506,32 +599114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7581), 1, + STATE(7429), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7981), 2, + STATE(7979), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602539,12 +599147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139340] = 16, - ACTIONS(8672), 1, + [139302] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602552,32 +599160,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7531), 1, + STATE(7414), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8020), 2, + STATE(7981), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602585,12 +599193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139402] = 16, - ACTIONS(8672), 1, + [139364] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602598,78 +599206,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7530), 1, + STATE(7549), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7968), 2, + STATE(7926), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_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, - [139464] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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(4166), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8745), 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, + [139426] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - [139500] = 16, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602677,32 +599252,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7561), 1, + STATE(7427), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7899), 2, + STATE(7975), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602710,12 +599285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139562] = 16, - ACTIONS(8672), 1, + [139488] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602723,32 +599298,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7507), 1, + STATE(7578), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7870), 2, + STATE(7908), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602756,12 +599331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139624] = 16, - ACTIONS(8672), 1, + [139550] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602769,32 +599344,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7520), 1, + STATE(7517), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7963), 2, + STATE(7901), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602802,12 +599377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139686] = 16, - ACTIONS(8672), 1, + [139612] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602815,32 +599390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7601), 1, + STATE(7600), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7986), 2, + STATE(8013), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602848,12 +599423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139748] = 16, - ACTIONS(8672), 1, + [139674] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602861,32 +599436,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7513), 1, + STATE(7533), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7971), 2, + STATE(7918), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602894,12 +599469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139810] = 16, - ACTIONS(8672), 1, + [139736] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602907,32 +599482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7437), 1, + STATE(7601), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8024), 2, + STATE(7902), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602940,12 +599515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139872] = 16, - ACTIONS(8672), 1, + [139798] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602953,32 +599528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7459), 1, + STATE(7436), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7964), 2, + STATE(7970), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602986,12 +599561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139934] = 16, - ACTIONS(8672), 1, + [139860] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -602999,32 +599574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7398), 1, + STATE(7401), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7937), 2, + STATE(7995), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603032,12 +599607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139996] = 16, - ACTIONS(8672), 1, + [139922] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603045,32 +599620,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7511), 1, + STATE(7446), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7975), 2, + STATE(7964), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603078,12 +599653,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140058] = 16, - ACTIONS(8672), 1, + [139984] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4307), 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(8702), 1, + [140020] = 16, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603091,32 +599699,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7450), 1, + STATE(7519), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7941), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603124,12 +599732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140120] = 16, - ACTIONS(8672), 1, + [140082] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603137,32 +599745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7591), 1, + STATE(7377), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7951), 2, + STATE(7961), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603170,12 +599778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140182] = 16, - ACTIONS(8672), 1, + [140144] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603183,32 +599791,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7521), 1, + STATE(7496), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7989), 2, + STATE(7894), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603216,12 +599824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140244] = 16, - ACTIONS(8672), 1, + [140206] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603229,32 +599837,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7468), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7947), 2, + STATE(7896), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603262,12 +599870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140306] = 16, - ACTIONS(8672), 1, + [140268] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603275,32 +599883,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7557), 1, + STATE(7576), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7960), 2, + STATE(7977), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603308,12 +599916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140368] = 16, - ACTIONS(8672), 1, + [140330] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603321,32 +599929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7554), 1, + STATE(7463), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7874), 2, + STATE(7867), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603354,12 +599962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140430] = 16, - ACTIONS(8672), 1, + [140392] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603367,32 +599975,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7584), 1, + STATE(7561), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8021), 2, + STATE(7888), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603400,12 +600008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140492] = 16, - ACTIONS(8672), 1, + [140454] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603413,32 +600021,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7464), 1, + STATE(7432), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7910), 2, + STATE(7982), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603446,12 +600054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140554] = 16, - ACTIONS(8672), 1, + [140516] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603459,32 +600067,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7379), 1, + STATE(7454), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7921), 2, + STATE(8001), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603492,12 +600100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140616] = 16, - ACTIONS(8672), 1, + [140578] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603505,32 +600113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7443), 1, + STATE(7452), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7999), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603538,12 +600146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140678] = 16, - ACTIONS(8672), 1, + [140640] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603551,32 +600159,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7448), 1, + STATE(7522), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7911), 2, + STATE(8003), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603584,12 +600192,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140740] = 16, - ACTIONS(8672), 1, + [140702] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 13, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4171), 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(8702), 1, + [140738] = 16, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603597,32 +600238,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7394), 1, + STATE(7481), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7905), 2, + STATE(7951), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603630,12 +600271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140802] = 16, - ACTIONS(8672), 1, + [140800] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603643,32 +600284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7478), 1, + STATE(7489), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7990), 2, + STATE(7933), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603676,12 +600317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140864] = 16, - ACTIONS(8672), 1, + [140862] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603689,32 +600330,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7418), 1, + STATE(7598), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7934), 2, + STATE(7900), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603722,12 +600363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140926] = 16, - ACTIONS(8672), 1, + [140924] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603735,32 +600376,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7550), 1, + STATE(7486), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7896), 2, + STATE(7946), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603768,12 +600409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140988] = 16, - ACTIONS(8672), 1, + [140986] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603781,32 +600422,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7508), 1, + STATE(7484), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7953), 2, + STATE(7962), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603814,12 +600455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141050] = 16, - ACTIONS(8672), 1, + [141048] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603827,32 +600468,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7580), 1, + STATE(7465), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7976), 2, + STATE(7957), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603860,12 +600501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141112] = 16, - ACTIONS(8672), 1, + [141110] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603873,32 +600514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7435), 1, + STATE(7506), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7929), 2, + STATE(7976), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603906,12 +600547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141174] = 16, - ACTIONS(8672), 1, + [141172] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603919,32 +600560,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7377), 1, + STATE(7516), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8004), 2, + STATE(8000), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603952,12 +600593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141236] = 16, - ACTIONS(8672), 1, + [141234] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -603965,32 +600606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7413), 1, + STATE(7483), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7926), 2, + STATE(8011), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603998,12 +600639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141298] = 16, - ACTIONS(8672), 1, + [141296] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604011,32 +600652,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7523), 1, + STATE(7543), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7897), 2, + STATE(7932), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604044,12 +600685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141360] = 16, - ACTIONS(8672), 1, + [141358] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604057,32 +600698,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7463), 1, + STATE(7422), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7945), 2, + STATE(7871), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604090,12 +600731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141422] = 16, - ACTIONS(8672), 1, + [141420] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604103,32 +600744,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7573), 1, + STATE(7508), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7978), 2, + STATE(7984), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604136,12 +600777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141484] = 16, - ACTIONS(8672), 1, + [141482] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604149,32 +600790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7392), 1, + STATE(7445), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7996), 2, + STATE(7972), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604182,12 +600823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141546] = 16, - ACTIONS(8672), 1, + [141544] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604195,32 +600836,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7518), 1, + STATE(7575), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7959), 2, + STATE(7914), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604228,12 +600869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141608] = 16, - ACTIONS(8672), 1, + [141606] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604241,32 +600882,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7556), 1, + STATE(7439), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8025), 2, + STATE(7875), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604274,12 +600915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141670] = 16, - ACTIONS(8672), 1, + [141668] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604287,32 +600928,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7406), 1, + STATE(7510), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7900), 2, + STATE(7987), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604320,12 +600961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141732] = 16, - ACTIONS(8672), 1, + [141730] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604333,32 +600974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7540), 1, + STATE(7514), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8010), 2, + STATE(7993), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604366,12 +601007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141794] = 16, - ACTIONS(8672), 1, + [141792] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604379,32 +601020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7547), 1, + STATE(7461), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7965), 2, + STATE(7953), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604412,12 +601053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141856] = 16, - ACTIONS(8672), 1, + [141854] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604425,32 +601066,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7522), 1, + STATE(7540), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7922), 2, + STATE(7928), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604458,12 +601099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141918] = 16, - ACTIONS(8672), 1, + [141916] = 16, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9188), 1, anon_sym_dynamic, @@ -604471,32 +601112,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_suspend, ACTIONS(9329), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(7216), 1, sym_type_modifiers, - STATE(7560), 1, + STATE(7412), 1, sym_simple_identifier, - STATE(7843), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7970), 2, + STATE(7877), 2, sym__receiver_type, sym_nullable_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7852), 3, + STATE(7845), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604504,51 +601145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141980] = 5, - ACTIONS(6552), 1, + [141978] = 5, + ACTIONS(6511), 1, anon_sym_LT, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 10, + ACTIONS(4161), 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, - sym__alpha_identifier, - [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, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, @@ -604556,7 +601164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4166), 14, + ACTIONS(4159), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -604571,15 +601179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142057] = 5, - ACTIONS(9334), 1, + [142017] = 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(4155), 9, + ACTIONS(4173), 9, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -604589,7 +601197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 14, + ACTIONS(4171), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -604604,42 +601212,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142095] = 15, - ACTIONS(8672), 1, + [142055] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9081), 1, + ACTIONS(9073), 1, anon_sym_COMMA, - ACTIONS(9083), 1, + ACTIONS(9075), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9063), 1, + STATE(8811), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604647,42 +601255,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142153] = 15, - ACTIONS(8672), 1, + [142113] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9085), 1, + ACTIONS(9061), 1, anon_sym_COMMA, - ACTIONS(9087), 1, + ACTIONS(9063), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(8905), 1, + STATE(9092), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604690,42 +601298,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142211] = 15, - ACTIONS(8672), 1, + [142171] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(9336), 1, anon_sym_COMMA, - ACTIONS(9340), 1, + ACTIONS(9338), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(8949), 1, + STATE(8910), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604733,42 +601341,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142269] = 15, - ACTIONS(8672), 1, + [142229] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9077), 1, + ACTIONS(9085), 1, anon_sym_COMMA, - ACTIONS(9079), 1, + ACTIONS(9087), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8881), 1, - sym__function_value_parameter, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9513), 1, + STATE(8839), 1, + sym__function_value_parameter, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604776,42 +601384,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142327] = 15, - ACTIONS(8672), 1, + [142287] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9073), 1, + ACTIONS(9081), 1, anon_sym_COMMA, - ACTIONS(9075), 1, + ACTIONS(9083), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9094), 1, + STATE(8804), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604819,42 +601427,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142385] = 15, - ACTIONS(8672), 1, + [142345] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, - anon_sym_AT, - ACTIONS(9342), 1, + ACTIONS(9069), 1, anon_sym_COMMA, - ACTIONS(9344), 1, + ACTIONS(9071), 1, anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(9334), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9076), 1, + STATE(8857), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604862,42 +601470,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142443] = 15, - ACTIONS(8672), 1, + [142403] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, - anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9077), 1, anon_sym_COMMA, - ACTIONS(9348), 1, + ACTIONS(9079), 1, anon_sym_RPAREN, - STATE(6224), 1, + ACTIONS(9334), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9058), 1, + STATE(8896), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604905,42 +601513,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142501] = 15, - ACTIONS(8672), 1, + [142461] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9067), 1, + ACTIONS(9334), 1, + anon_sym_AT, + ACTIONS(9340), 1, anon_sym_COMMA, - ACTIONS(9069), 1, + ACTIONS(9342), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8829), 1, - sym__function_value_parameter, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9513), 1, + STATE(8862), 1, + sym__function_value_parameter, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604948,42 +601556,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142559] = 15, - ACTIONS(8672), 1, + [142519] = 15, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9059), 1, + ACTIONS(9334), 1, + anon_sym_AT, + ACTIONS(9344), 1, anon_sym_COMMA, - ACTIONS(9061), 1, + ACTIONS(9346), 1, anon_sym_RPAREN, - ACTIONS(9336), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8805), 1, - sym__function_value_parameter, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9513), 1, + STATE(8922), 1, + sym__function_value_parameter, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604991,40 +601599,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142617] = 14, - ACTIONS(8672), 1, + [142577] = 5, + ACTIONS(9348), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 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(4122), 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, + [142615] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9350), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605032,40 +601673,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142672] = 14, - ACTIONS(8672), 1, + [142670] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9352), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605073,111 +601714,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142727] = 14, - ACTIONS(8672), 1, + [142725] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9354), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_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, - [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, + ACTIONS(8745), 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, + [142780] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - [142815] = 14, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9356), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605185,40 +601796,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142870] = 14, - ACTIONS(8672), 1, + [142835] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9358), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605226,40 +601837,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142925] = 14, - ACTIONS(8672), 1, + [142890] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9360), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605267,40 +601878,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142980] = 14, - ACTIONS(8672), 1, + [142945] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4263), 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(8702), 1, + [142978] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4249), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(4247), 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, + [143011] = 14, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9362), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605308,40 +601979,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143035] = 14, - ACTIONS(8672), 1, + [143066] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9364), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605349,40 +602020,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143090] = 14, - ACTIONS(8672), 1, + [143121] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9366), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605390,40 +602061,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143145] = 14, - ACTIONS(8672), 1, + [143176] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9368), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605431,40 +602102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143200] = 14, - ACTIONS(8672), 1, + [143231] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9370), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605472,40 +602143,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143255] = 14, - ACTIONS(8672), 1, + [143286] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9372), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605513,40 +602184,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143310] = 14, - ACTIONS(8672), 1, + [143341] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9374), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605554,40 +602225,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143365] = 14, - ACTIONS(8672), 1, + [143396] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, ACTIONS(9376), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605595,40 +602266,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143420] = 14, - ACTIONS(8672), 1, + [143451] = 14, + ACTIONS(9378), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9380), 1, + anon_sym_file, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + STATE(3391), 1, + sym_simple_identifier, + STATE(3626), 1, + sym__lexical_identifier, + STATE(3689), 1, + sym__simple_user_type, + STATE(3809), 1, + sym_user_type, + STATE(7334), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9384), 2, + anon_sym_get, + anon_sym_set, + STATE(4008), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143506] = 14, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9378), 1, + ACTIONS(9392), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605636,40 +602348,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143475] = 14, - ACTIONS(8672), 1, + [143561] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9380), 1, + ACTIONS(9394), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605677,40 +602389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143530] = 14, - ACTIONS(8672), 1, + [143616] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9396), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605718,229 +602430,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143585] = 14, - ACTIONS(8672), 1, + [143671] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9384), 1, + ACTIONS(9398), 1, anon_sym_RPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8005), 1, + STATE(7930), 1, sym_parameter_modifiers, - STATE(8883), 1, + STATE(8803), 1, sym_parameter, - STATE(9438), 1, + STATE(9310), 1, sym__function_value_parameter, - STATE(9513), 1, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_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, - [143640] = 14, - ACTIONS(9386), 1, - sym__alpha_identifier, - ACTIONS(9388), 1, - anon_sym_file, - ACTIONS(9390), 1, - anon_sym_LBRACK, - ACTIONS(9398), 1, - sym__backtick_identifier, - 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(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, - 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(4319), 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(4317), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8745), 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, + [143726] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - [143728] = 14, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(7502), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(884), 1, + STATE(8314), 1, sym__simple_user_type, - STATE(7465), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(974), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8295), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [143782] = 13, - ACTIONS(9402), 1, - sym__alpha_identifier, - ACTIONS(9404), 1, - anon_sym_LBRACK, - ACTIONS(9410), 1, - sym__backtick_identifier, - STATE(5826), 1, - sym_simple_identifier, - STATE(5841), 1, - sym__simple_user_type, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5863), 1, - sym_user_type, - STATE(7329), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9406), 2, + ACTIONS(8745), 7, 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, - 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, + [143780] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9100), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8005), 1, - sym_parameter_modifiers, - STATE(8883), 1, - sym_parameter, - STATE(9438), 1, - sym__function_value_parameter, - STATE(9513), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9402), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2942), 1, sym_simple_identifier, + STATE(3176), 1, + sym__simple_user_type, + STATE(7478), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(3326), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 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, + STATE(7213), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605948,35 +602551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143886] = 14, - ACTIONS(473), 1, + [143834] = 14, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9412), 1, + ACTIONS(9404), 1, anon_sym_LPAREN, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3636), 1, + STATE(3604), 1, sym__simple_user_type, - STATE(7434), 1, + STATE(7593), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3817), 2, + STATE(3757), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -605988,78 +602591,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143940] = 13, - ACTIONS(1724), 1, + [143888] = 14, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9414), 1, - anon_sym_LBRACK, - STATE(5340), 1, + ACTIONS(9406), 1, + anon_sym_LPAREN, + STATE(5687), 1, sym_simple_identifier, - STATE(5443), 1, - sym__simple_user_type, - STATE(5458), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(5501), 1, - sym_user_type, - STATE(7355), 1, - sym_use_site_target, + STATE(5769), 1, + sym__simple_user_type, + STATE(7596), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9416), 2, + STATE(5777), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, - STATE(5568), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(3092), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - 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, + [143942] = 14, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9268), 1, - sym__alpha_identifier, - ACTIONS(9272), 1, - sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5768), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, sym__simple_user_type, - STATE(7496), 1, + STATE(7369), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5803), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8294), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9270), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606067,38 +602671,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144046] = 13, - ACTIONS(8672), 1, + [143996] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9424), 1, + ACTIONS(9412), 1, sym_reification_modifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8206), 1, + STATE(8223), 1, sym_type_parameter_modifiers, - STATE(8863), 1, - sym_simple_identifier, - STATE(9095), 1, + STATE(8815), 1, sym_type_parameter, + STATE(8820), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, + ACTIONS(9410), 2, anon_sym_in, anon_sym_out, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, + STATE(7139), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606106,79 +602710,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144098] = 14, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9258), 1, + [144048] = 13, + ACTIONS(9414), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(9416), 1, + anon_sym_LBRACK, + ACTIONS(9422), 1, sym__backtick_identifier, - ACTIONS(9426), 1, - anon_sym_LPAREN, - STATE(2826), 1, + STATE(7318), 1, sym_simple_identifier, - STATE(2853), 1, + STATE(7326), 1, + sym_use_site_target, + STATE(7409), 1, sym__lexical_identifier, - STATE(3261), 1, + STATE(7434), 1, sym__simple_user_type, - STATE(7562), 1, - sym_type_modifiers, + STATE(7788), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(9418), 2, anon_sym_get, anon_sym_set, + STATE(7863), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9420), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [144152] = 14, - ACTIONS(8672), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144100] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(7512), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(8314), 1, sym__simple_user_type, - STATE(7499), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8292), 2, + STATE(8291), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606186,79 +602789,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144206] = 14, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9268), 1, + [144154] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9418), 1, - anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, - sym__lexical_identifier, - STATE(5768), 1, - sym__simple_user_type, - STATE(7475), 1, - sym_type_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [144260] = 14, - ACTIONS(9105), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9256), 1, - sym__backtick_identifier, - ACTIONS(9430), 1, - anon_sym_LPAREN, - STATE(5602), 1, + ACTIONS(9412), 1, + sym_reification_modifier, + STATE(6386), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(8223), 1, + sym_type_parameter_modifiers, + STATE(8820), 1, sym_simple_identifier, - STATE(5653), 1, - sym__simple_user_type, - STATE(7362), 1, - sym_type_modifiers, + STATE(9061), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5823), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + ACTIONS(9410), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, + STATE(7139), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9252), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606266,39 +602828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144314] = 14, - ACTIONS(8672), 1, + [144206] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9412), 1, + sym_reification_modifier, + STATE(6386), 1, sym__lexical_identifier, - STATE(7364), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(8223), 1, + sym_type_parameter_modifiers, + STATE(8820), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, + STATE(9396), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + ACTIONS(9410), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(8287), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7217), 3, - sym__type_modifier, + STATE(7139), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606306,39 +602867,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144368] = 14, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [144258] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9432), 1, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, + sym__backtick_identifier, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4683), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4897), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5769), 1, sym__simple_user_type, - STATE(7514), 1, + STATE(7585), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5005), 2, + STATE(5799), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606346,39 +602907,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144422] = 14, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [144312] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9432), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9252), 1, + sym__backtick_identifier, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4683), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4897), 1, - sym__simple_user_type, - STATE(7366), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7380), 1, sym_type_modifiers, + STATE(8315), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4985), 2, + STATE(5799), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606386,118 +602947,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144476] = 13, - ACTIONS(9434), 1, + [144366] = 13, + ACTIONS(9424), 1, sym__alpha_identifier, - ACTIONS(9436), 1, + ACTIONS(9426), 1, anon_sym_LBRACK, - ACTIONS(9442), 1, + ACTIONS(9432), 1, sym__backtick_identifier, - STATE(5660), 1, - sym__lexical_identifier, - STATE(5684), 1, + STATE(7254), 1, sym_simple_identifier, - STATE(5692), 1, + STATE(7291), 1, + sym_use_site_target, + STATE(7298), 1, + sym__lexical_identifier, + STATE(7311), 1, sym__simple_user_type, - STATE(5705), 1, + STATE(7570), 1, sym_user_type, - STATE(7299), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9438), 2, + ACTIONS(9428), 2, anon_sym_get, anon_sym_set, - STATE(5721), 2, + STATE(7846), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9440), 5, + ACTIONS(9430), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9396), 6, + ACTIONS(9388), 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, + [144418] = 13, + ACTIONS(1724), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - ACTIONS(9426), 1, - anon_sym_LPAREN, - STATE(2826), 1, + ACTIONS(9434), 1, + anon_sym_LBRACK, + STATE(5424), 1, sym_simple_identifier, - STATE(2853), 1, - sym__lexical_identifier, - STATE(3261), 1, + STATE(5431), 1, sym__simple_user_type, - STATE(7572), 1, - sym_type_modifiers, + STATE(5441), 1, + sym__lexical_identifier, + STATE(5512), 1, + sym_user_type, + STATE(7328), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(9436), 2, anon_sym_get, anon_sym_set, + STATE(5592), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3092), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [144582] = 14, - ACTIONS(557), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144470] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9444), 1, - anon_sym_LPAREN, - STATE(2791), 1, + ACTIONS(9412), 1, + sym_reification_modifier, + STATE(6386), 1, sym__lexical_identifier, - STATE(2803), 1, + STATE(8223), 1, + sym_type_parameter_modifiers, + STATE(8802), 1, + sym_type_parameter, + STATE(8820), 1, sym_simple_identifier, - STATE(2915), 1, - sym__simple_user_type, - STATE(7395), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3029), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + ACTIONS(9410), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, + STATE(7139), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606505,39 +603064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144636] = 14, - ACTIONS(9105), 1, + [144522] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(4633), 1, - sym__simple_user_type, - STATE(7376), 1, + STATE(7384), 1, sym_type_modifiers, + STATE(8315), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4924), 2, + STATE(5777), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9236), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606545,39 +603104,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144690] = 14, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [144576] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9412), 1, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9252), 1, + sym__backtick_identifier, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(3308), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3636), 1, - sym__simple_user_type, - STATE(7426), 1, + STATE(7379), 1, sym_type_modifiers, + STATE(8315), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3793), 2, + STATE(5784), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606585,78 +603144,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144744] = 13, - ACTIONS(8672), 1, + [144630] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9424), 1, + ACTIONS(9412), 1, sym_reification_modifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8206), 1, + STATE(8223), 1, sym_type_parameter_modifiers, - STATE(8863), 1, + STATE(8820), 1, sym_simple_identifier, - STATE(9080), 1, + STATE(8824), 1, sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, + ACTIONS(9410), 2, anon_sym_in, anon_sym_out, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, + STATE(7139), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [144682] = 13, + ACTIONS(9438), 1, + sym__alpha_identifier, + ACTIONS(9440), 1, + anon_sym_LBRACK, + ACTIONS(9446), 1, + sym__backtick_identifier, + STATE(7190), 1, + sym_simple_identifier, + STATE(7211), 1, + sym__lexical_identifier, + STATE(7215), 1, + sym__simple_user_type, + STATE(7255), 1, + sym_user_type, + STATE(7285), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9442), 2, anon_sym_get, anon_sym_set, + STATE(7348), 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, - [144796] = 14, - ACTIONS(9105), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144734] = 14, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9448), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7420), 1, - sym_type_modifiers, - STATE(8314), 1, + STATE(4606), 1, sym__simple_user_type, + STATE(7399), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5803), 2, + STATE(4652), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606664,78 +603262,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144850] = 13, - ACTIONS(9448), 1, - sym__alpha_identifier, + [144788] = 13, ACTIONS(9450), 1, + sym__alpha_identifier, + ACTIONS(9452), 1, anon_sym_LBRACK, - ACTIONS(9456), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - STATE(7266), 1, - sym_simple_identifier, - STATE(7314), 1, + STATE(5666), 1, sym__lexical_identifier, - STATE(7328), 1, - sym_use_site_target, - STATE(7333), 1, + STATE(5685), 1, + sym_simple_identifier, + STATE(5689), 1, sym__simple_user_type, - STATE(7534), 1, + STATE(5702), 1, sym_user_type, + STATE(7319), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9452), 2, + ACTIONS(9454), 2, anon_sym_get, anon_sym_set, - STATE(7844), 2, + STATE(5740), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9454), 5, + ACTIONS(9456), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9396), 6, + ACTIONS(9388), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [144902] = 14, - ACTIONS(211), 1, + [144840] = 13, + ACTIONS(9378), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9382), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + STATE(3391), 1, + sym_simple_identifier, + STATE(3626), 1, + sym__lexical_identifier, + STATE(3689), 1, + sym__simple_user_type, + STATE(3809), 1, + sym_user_type, + STATE(7334), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9384), 2, + anon_sym_get, + anon_sym_set, + STATE(4008), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [144892] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9458), 1, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, + sym__backtick_identifier, + ACTIONS(9460), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(5602), 1, sym_simple_identifier, - STATE(4616), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, - STATE(7401), 1, + STATE(7559), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4692), 2, + STATE(5832), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606743,38 +603380,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144956] = 13, - ACTIONS(8672), 1, + [144946] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9424), 1, + ACTIONS(9412), 1, sym_reification_modifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8206), 1, + STATE(8223), 1, sym_type_parameter_modifiers, - STATE(8828), 1, - sym_type_parameter, - STATE(8863), 1, + STATE(8820), 1, sym_simple_identifier, + STATE(8995), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, + ACTIONS(9410), 2, anon_sym_in, anon_sym_out, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, + STATE(7139), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606782,39 +603419,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145008] = 14, - ACTIONS(9105), 1, + [144998] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9430), 1, + ACTIONS(9460), 1, anon_sym_LPAREN, STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, - STATE(7446), 1, + STATE(7552), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5821), 2, + STATE(5833), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9252), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606822,39 +603459,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145062] = 14, - ACTIONS(9105), 1, + [145052] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9214), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9402), 1, anon_sym_LPAREN, - STATE(7387), 1, - sym_type_modifiers, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3176), 1, sym__simple_user_type, + STATE(7492), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8287), 2, + STATE(3368), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9210), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606862,117 +603499,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145116] = 13, - ACTIONS(9248), 1, + [145106] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9460), 1, - anon_sym_LBRACK, - STATE(5602), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9400), 1, + anon_sym_LPAREN, + STATE(6386), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(7485), 1, + sym_type_modifiers, + STATE(7980), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(8314), 1, sym__simple_user_type, - STATE(5738), 1, - sym_user_type, - STATE(7335), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, - 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(9466), 1, - anon_sym_LBRACK, - ACTIONS(9472), 1, - sym__backtick_identifier, - STATE(7349), 1, - sym_use_site_target, - STATE(7357), 1, - sym_simple_identifier, - STATE(7388), 1, - sym__lexical_identifier, - STATE(7566), 1, - sym__simple_user_type, - STATE(7828), 1, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8294), 2, sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9468), 2, + sym_parenthesized_user_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(8745), 7, 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, - 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, + [145160] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9216), 1, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9460), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(5602), 1, sym_simple_identifier, - STATE(7519), 1, - sym_type_modifiers, - STATE(8314), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, + STATE(7546), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5795), 2, + STATE(5820), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9220), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606980,39 +603579,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145274] = 14, - ACTIONS(9105), 1, + [145214] = 14, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9266), 1, - sym__backtick_identifier, - ACTIONS(9426), 1, + ACTIONS(9402), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3261), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3176), 1, sym__simple_user_type, - STATE(7585), 1, + STATE(7474), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3445), 2, + STATE(3327), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9262), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607020,114 +603619,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145328] = 14, - ACTIONS(387), 1, + [145268] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9400), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(9462), 1, + anon_sym_LBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(884), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7495), 1, - sym_type_modifiers, + STATE(7314), 1, + sym_use_site_target, + STATE(8008), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(9464), 2, anon_sym_get, anon_sym_set, + STATE(7680), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8745), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [145382] = 13, - ACTIONS(9285), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145320] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9291), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9474), 1, + ACTIONS(9462), 1, anon_sym_LBRACK, - STATE(5682), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5787), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5813), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(5827), 1, + STATE(7342), 1, sym_user_type, - STATE(7346), 1, + STATE(7352), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9476), 2, + ACTIONS(9464), 2, anon_sym_get, anon_sym_set, - STATE(5878), 2, + STATE(7680), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9289), 5, + ACTIONS(8745), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9396), 6, + ACTIONS(9388), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [145434] = 14, - ACTIONS(211), 1, + [145372] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9458), 1, + ACTIONS(9448), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4616), 1, + STATE(4606), 1, sym__simple_user_type, - STATE(7369), 1, + STATE(7524), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4685), 2, + STATE(4678), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -607139,39 +603737,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145488] = 14, - ACTIONS(557), 1, + [145426] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9444), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2915), 1, + STATE(4899), 1, sym__simple_user_type, - STATE(7574), 1, + STATE(7406), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2993), 2, + STATE(4988), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607179,39 +603777,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145542] = 14, - ACTIONS(9105), 1, + [145480] = 14, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9256), 1, - sym__backtick_identifier, - ACTIONS(9430), 1, + ACTIONS(9468), 1, anon_sym_LPAREN, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2896), 1, sym__simple_user_type, - STATE(7436), 1, + STATE(7430), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5836), 2, + STATE(2993), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9252), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607219,38 +603817,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145596] = 13, - ACTIONS(8672), 1, + [145534] = 14, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - ACTIONS(9424), 1, - sym_reification_modifier, - STATE(6224), 1, + ACTIONS(9400), 1, + anon_sym_LPAREN, + STATE(7359), 1, + sym_type_modifiers, + STATE(8323), 1, sym__lexical_identifier, - STATE(8206), 1, - sym_type_parameter_modifiers, - STATE(8863), 1, + STATE(8326), 1, sym_simple_identifier, - STATE(8942), 1, - sym_type_parameter, + STATE(8408), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(8291), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607258,39 +603857,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145648] = 14, - ACTIONS(387), 1, + [145588] = 13, + ACTIONS(9470), 1, + sym__alpha_identifier, + ACTIONS(9472), 1, + anon_sym_LBRACK, + ACTIONS(9478), 1, + sym__backtick_identifier, + STATE(5839), 1, + sym_simple_identifier, + STATE(5845), 1, + sym__simple_user_type, + STATE(5847), 1, + sym__lexical_identifier, + STATE(5863), 1, + sym_user_type, + STATE(7312), 1, + sym_use_site_target, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9474), 2, + anon_sym_get, + anon_sym_set, + STATE(5904), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9476), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [145640] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(884), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7359), 1, + STATE(7368), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(938), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8295), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607298,38 +603936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145702] = 13, - ACTIONS(8672), 1, + [145694] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9424), 1, + ACTIONS(9412), 1, sym_reification_modifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8206), 1, + STATE(8223), 1, sym_type_parameter_modifiers, - STATE(8863), 1, + STATE(8820), 1, sym_simple_identifier, - STATE(8970), 1, + STATE(8878), 1, sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, + ACTIONS(9410), 2, anon_sym_in, anon_sym_out, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, + STATE(7139), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607337,39 +603975,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145754] = 14, - ACTIONS(8672), 1, + [145746] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9334), 1, anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7576), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(7930), 1, + sym_parameter_modifiers, + STATE(8803), 1, + sym_parameter, + STATE(9310), 1, + sym__function_value_parameter, + STATE(9625), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - STATE(8286), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7217), 3, - sym__type_modifier, + ACTIONS(9065), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7220), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607377,108 +604014,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, - ACTIONS(4195), 7, + [145798] = 14, + ACTIONS(9100), 1, 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, - sym__alpha_identifier, - [145844] = 13, - ACTIONS(9386), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(9390), 1, - anon_sym_LBRACK, - ACTIONS(9398), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - STATE(3554), 1, + ACTIONS(9406), 1, + anon_sym_LPAREN, + STATE(5687), 1, sym_simple_identifier, - STATE(3648), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(3688), 1, + STATE(5769), 1, sym__simple_user_type, - STATE(3724), 1, - sym_user_type, - STATE(7317), 1, - sym_use_site_target, + STATE(7583), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9392), 2, + STATE(5784), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9256), 7, 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, - 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, + [145852] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9424), 1, - sym_reification_modifier, - STATE(6224), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9448), 1, + anon_sym_LPAREN, + STATE(4543), 1, sym__lexical_identifier, - STATE(8206), 1, - sym_type_parameter_modifiers, - STATE(8860), 1, - sym_type_parameter, - STATE(8863), 1, + STATE(4547), 1, sym_simple_identifier, + STATE(4606), 1, + sym__simple_user_type, + STATE(7363), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, + STATE(4657), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7213), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607486,38 +604094,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145948] = 13, - ACTIONS(8672), 1, + [145906] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9424), 1, - sym_reification_modifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8206), 1, - sym_type_parameter_modifiers, - STATE(8801), 1, - sym_type_parameter, - STATE(8863), 1, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9468), 1, + anon_sym_LPAREN, + STATE(2782), 1, sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2896), 1, + sym__simple_user_type, + STATE(7421), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, + STATE(3036), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7213), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607525,35 +604134,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146000] = 14, - ACTIONS(473), 1, + [145960] = 14, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9412), 1, + ACTIONS(9404), 1, anon_sym_LPAREN, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3636), 1, + STATE(3604), 1, sym__simple_user_type, - STATE(7452), 1, + STATE(7587), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3800), 2, + STATE(3780), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -607565,39 +604174,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146054] = 14, - ACTIONS(115), 1, + [146014] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9478), 1, + ACTIONS(9404), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3222), 1, + STATE(3604), 1, sym__simple_user_type, - STATE(7433), 1, + STATE(7551), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3307), 2, + STATE(3779), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607605,78 +604214,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146108] = 13, - ACTIONS(8672), 1, + [146068] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9480), 1, - anon_sym_LBRACK, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(6662), 1, - sym__simple_user_type, - STATE(7294), 1, - sym_use_site_target, - STATE(7888), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - 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, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, - sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9468), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4633), 1, + STATE(2896), 1, sym__simple_user_type, - STATE(7370), 1, + STATE(7419), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4936), 2, + STATE(3034), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607684,117 +604254,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146214] = 13, - ACTIONS(9484), 1, + [146122] = 13, + ACTIONS(9214), 1, sym__alpha_identifier, - ACTIONS(9486), 1, - anon_sym_LBRACK, - ACTIONS(9492), 1, + ACTIONS(9220), 1, sym__backtick_identifier, - STATE(7150), 1, - sym_simple_identifier, - STATE(7215), 1, + ACTIONS(9480), 1, + anon_sym_LBRACK, + STATE(5683), 1, sym__lexical_identifier, - STATE(7220), 1, + STATE(5783), 1, + sym_simple_identifier, + STATE(5806), 1, sym__simple_user_type, - STATE(7229), 1, + STATE(5829), 1, sym_user_type, - STATE(7300), 1, + STATE(7325), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9488), 2, + ACTIONS(9482), 2, anon_sym_get, anon_sym_set, - STATE(7322), 2, + STATE(5883), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9490), 5, + ACTIONS(9218), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9396), 6, + ACTIONS(9388), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [146266] = 14, - ACTIONS(9105), 1, + [146174] = 14, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, - sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4633), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4899), 1, sym__simple_user_type, - STATE(7371), 1, + STATE(7385), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [146320] = 13, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - ACTIONS(9424), 1, - sym_reification_modifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8206), 1, - sym_type_parameter_modifiers, - STATE(8863), 1, - sym_simple_identifier, - STATE(9457), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9422), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, + sym_line_comment, + STATE(5003), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7163), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7213), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607802,39 +604333,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146372] = 14, - ACTIONS(8672), 1, + [146228] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7477), 1, - sym_type_modifiers, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(6681), 1, sym__simple_user_type, + STATE(7374), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(8292), 2, + STATE(8291), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607842,39 +604373,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146426] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [146282] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9478), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(3222), 1, + STATE(4625), 1, sym__simple_user_type, - STATE(7474), 1, + STATE(7393), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3281), 2, + STATE(4935), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607882,39 +604413,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146480] = 14, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [146336] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4625), 1, sym__simple_user_type, - STATE(7492), 1, + STATE(7391), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8286), 2, + STATE(4940), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607922,79 +604453,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146534] = 14, - ACTIONS(9105), 1, + [146390] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9216), 1, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9484), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(7485), 1, - sym_type_modifiers, - STATE(8314), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4625), 1, sym__simple_user_type, + STATE(7390), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5794), 2, + STATE(4938), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9220), 7, + ACTIONS(9234), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146444] = 13, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9486), 1, + anon_sym_LBRACK, + STATE(7355), 1, + sym_use_site_target, + STATE(8323), 1, + sym__lexical_identifier, + STATE(8326), 1, + sym_simple_identifier, + STATE(8408), 1, + sym__simple_user_type, + STATE(8668), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9488), 2, anon_sym_get, anon_sym_set, + STATE(9333), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9278), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [146588] = 14, - ACTIONS(9105), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146496] = 13, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9208), 1, + ACTIONS(9412), 1, + sym_reification_modifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8223), 1, + sym_type_parameter_modifiers, + STATE(8820), 1, + sym_simple_identifier, + STATE(8890), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9410), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7139), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [146548] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9490), 1, anon_sym_LPAREN, - STATE(7393), 1, - sym_type_modifiers, - STATE(8325), 1, + STATE(818), 1, sym_simple_identifier, - STATE(8333), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(917), 1, sym__simple_user_type, + STATE(7366), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8286), 2, + STATE(973), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9210), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608002,39 +604611,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146642] = 14, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [146602] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9458), 1, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(7456), 1, + sym_type_modifiers, + STATE(8323), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(8326), 1, sym_simple_identifier, - STATE(4616), 1, + STATE(8408), 1, sym__simple_user_type, - STATE(7402), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4638), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8294), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608042,39 +604651,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146696] = 14, + [146656] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9432), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4897), 1, + STATE(4899), 1, sym__simple_user_type, - STATE(7582), 1, + STATE(7375), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5006), 2, + STATE(4966), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608082,79 +604691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146750] = 14, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9190), 1, - anon_sym_suspend, - ACTIONS(9208), 1, + [146710] = 13, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(7451), 1, - sym_type_modifiers, - STATE(8325), 1, + ACTIONS(9492), 1, + anon_sym_LBRACK, + STATE(5602), 1, sym_simple_identifier, - STATE(8333), 1, + STATE(5616), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(5658), 1, sym__simple_user_type, + STATE(5739), 1, + sym_user_type, + STATE(7353), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(9494), 2, anon_sym_get, anon_sym_set, + STATE(5795), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9208), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [146804] = 14, - ACTIONS(115), 1, + ACTIONS(9388), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146762] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9478), 1, + ACTIONS(9490), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3222), 1, + STATE(917), 1, sym__simple_user_type, - STATE(7454), 1, + STATE(7364), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3320), 2, + STATE(1006), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608162,39 +604770,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146858] = 14, - ACTIONS(8672), 1, + [146816] = 5, + ACTIONS(9348), 1, + anon_sym_DOT, + STATE(6601), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 7, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4139), 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(8702), 1, + [146852] = 14, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9105), 1, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9428), 1, + ACTIONS(9490), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(818), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(917), 1, sym__simple_user_type, - STATE(7486), 1, + STATE(7361), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7848), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8287), 2, + STATE(926), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7217), 3, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608202,39 +604841,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146912] = 14, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9105), 1, + [146906] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9444), 1, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(2803), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(2915), 1, + STATE(3235), 1, sym__simple_user_type, - STATE(7597), 1, + STATE(7365), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3031), 2, + STATE(3489), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1910), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608242,39 +604881,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146966] = 14, - ACTIONS(9105), 1, + [146960] = 14, + ACTIONS(9100), 1, anon_sym_AT, ACTIONS(9190), 1, anon_sym_suspend, - ACTIONS(9268), 1, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(5768), 1, + STATE(2868), 1, + sym_simple_identifier, + STATE(3235), 1, sym__simple_user_type, - STATE(7432), 1, + STATE(7367), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5794), 2, + STATE(3491), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7213), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9270), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608282,114 +604921,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147020] = 13, - ACTIONS(8672), 1, + [147014] = 14, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9480), 1, - anon_sym_LBRACK, - STATE(6224), 1, + ACTIONS(9496), 1, + anon_sym_LPAREN, + STATE(2817), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(3235), 1, sym__simple_user_type, - STATE(7289), 1, - sym_use_site_target, - STATE(7307), 1, - sym_user_type, + STATE(7371), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9482), 2, + STATE(3450), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9266), 7, 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, - 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, + [147068] = 14, + ACTIONS(9100), 1, + anon_sym_AT, + ACTIONS(9190), 1, + anon_sym_suspend, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9494), 1, - anon_sym_LBRACK, - STATE(7286), 1, - sym_use_site_target, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, + ACTIONS(9400), 1, + anon_sym_LPAREN, + STATE(7475), 1, + sym_type_modifiers, + STATE(8323), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(8326), 1, + sym_simple_identifier, + STATE(8408), 1, sym__simple_user_type, - STATE(8743), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9496), 2, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8295), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7213), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9278), 7, 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, - 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, + [147122] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9624), 1, + STATE(9853), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608397,25 +605038,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147173] = 5, + [147171] = 5, ACTIONS(9498), 1, sym__quest, - STATE(6688), 1, + STATE(6729), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4224), 9, + ACTIONS(4206), 9, + anon_sym_DOT, 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, + ACTIONS(4204), 11, anon_sym_by, anon_sym_where, anon_sym_get, @@ -608427,36 +605068,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147208] = 12, - ACTIONS(8672), 1, + [147206] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9730), 1, + STATE(9604), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608464,36 +605105,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147257] = 12, - ACTIONS(8672), 1, + [147255] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9832), 1, + STATE(10014), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608501,36 +605142,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147306] = 12, - ACTIONS(8672), 1, + [147304] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9541), 1, + STATE(9533), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608538,36 +605179,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147355] = 12, - ACTIONS(8672), 1, + [147353] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9805), 1, + STATE(9703), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608575,36 +605216,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147404] = 12, - ACTIONS(8672), 1, + [147402] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9799), 1, + STATE(10010), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608612,36 +605253,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147453] = 12, - ACTIONS(8672), 1, + [147451] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9843), 1, + STATE(9478), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608649,36 +605290,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147502] = 12, - ACTIONS(8672), 1, + [147500] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9581), 1, + STATE(9741), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608686,36 +605327,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147551] = 12, - ACTIONS(8672), 1, + [147549] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9713), 1, + STATE(9965), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608723,36 +605364,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147600] = 12, - ACTIONS(8672), 1, + [147598] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9844), 1, + STATE(9642), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608760,36 +605401,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147649] = 12, - ACTIONS(8672), 1, + [147647] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9765), 1, + STATE(9544), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608797,36 +605438,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147698] = 12, - ACTIONS(8672), 1, + [147696] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9865), 1, + STATE(9732), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608834,36 +605475,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147747] = 12, - ACTIONS(8672), 1, + [147745] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9559), 1, + STATE(9712), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608871,36 +605512,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147796] = 12, - ACTIONS(8672), 1, + [147794] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9872), 1, + STATE(9671), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608908,36 +605549,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147845] = 12, - ACTIONS(8672), 1, + [147843] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9830), 1, + STATE(9912), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608945,36 +605586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147894] = 12, - ACTIONS(8672), 1, + [147892] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9822), 1, + STATE(9889), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608982,36 +605623,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147943] = 12, - ACTIONS(8672), 1, + [147941] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9594), 1, + STATE(9883), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609019,36 +605660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147992] = 12, - ACTIONS(8672), 1, + [147990] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9638), 1, + STATE(9854), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609056,36 +605697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148041] = 12, - ACTIONS(8672), 1, + [148039] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9758), 1, + STATE(9834), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609093,36 +605734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148090] = 12, - ACTIONS(8672), 1, + [148088] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9610), 1, + STATE(9514), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609130,36 +605771,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148139] = 12, - ACTIONS(8672), 1, + [148137] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9889), 1, + STATE(9745), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609167,36 +605808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148188] = 12, - ACTIONS(8672), 1, + [148186] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9605), 1, + STATE(9738), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609204,36 +605845,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148237] = 12, - ACTIONS(8672), 1, + [148235] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9988), 1, + STATE(9737), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609241,36 +605882,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148286] = 12, - ACTIONS(8672), 1, + [148284] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9927), 1, + STATE(9624), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609278,36 +605919,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148335] = 12, - ACTIONS(8672), 1, + [148333] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9538), 1, + STATE(9665), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609315,36 +605956,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148384] = 12, - ACTIONS(8672), 1, + [148382] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9743), 1, + STATE(9781), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609352,36 +605993,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148433] = 12, - ACTIONS(8672), 1, + [148431] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(10056), 1, + STATE(9505), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609389,36 +606030,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148482] = 12, - ACTIONS(8672), 1, + [148480] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9547), 1, + STATE(9675), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609426,36 +606067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148531] = 12, - ACTIONS(8672), 1, + [148529] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9772), 1, + STATE(9767), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609463,36 +606104,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148580] = 12, - ACTIONS(8672), 1, + [148578] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9761), 1, + STATE(9772), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609500,36 +606141,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148629] = 12, - ACTIONS(8672), 1, + [148627] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9780), 1, + STATE(9845), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609537,36 +606178,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148678] = 12, - ACTIONS(8672), 1, + [148676] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(10125), 1, + STATE(9696), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609574,36 +606215,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148727] = 12, - ACTIONS(8672), 1, + [148725] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9472), 1, + STATE(9821), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609611,36 +606252,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148776] = 12, - ACTIONS(8672), 1, + [148774] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9930), 1, + STATE(9774), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609648,36 +606289,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148825] = 12, - ACTIONS(8672), 1, + [148823] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9555), 1, + STATE(9571), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609685,36 +606326,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148874] = 12, - ACTIONS(8672), 1, + [148872] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9678), 1, + STATE(9756), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609722,36 +606363,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148923] = 12, - ACTIONS(8672), 1, + [148921] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9509), 1, + STATE(9467), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609759,36 +606400,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148972] = 12, - ACTIONS(8672), 1, + [148970] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9967), 1, + STATE(9814), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609796,36 +606437,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149021] = 12, - ACTIONS(8672), 1, + [149019] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9921), 1, + STATE(9711), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609833,36 +606474,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149070] = 12, - ACTIONS(8672), 1, + [149068] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9970), 1, + STATE(9597), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609870,36 +606511,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149119] = 12, - ACTIONS(8672), 1, + [149117] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9918), 1, + STATE(9650), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609907,36 +606548,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149168] = 12, - ACTIONS(8672), 1, + [149166] = 5, + ACTIONS(9500), 1, + sym__quest, + STATE(6729), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 9, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4234), 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, sym__alpha_identifier, - ACTIONS(8702), 1, + [149201] = 12, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9896), 1, + STATE(9641), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609944,36 +606615,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149217] = 12, - ACTIONS(8672), 1, + [149250] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9690), 1, + STATE(9543), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609981,36 +606652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149266] = 12, - ACTIONS(8672), 1, + [149299] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(10119), 1, + STATE(10076), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610018,36 +606689,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149315] = 12, - ACTIONS(8672), 1, + [149348] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9707), 1, + STATE(9570), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610055,36 +606726,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149364] = 12, - ACTIONS(8672), 1, + [149397] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9933), 1, + STATE(9757), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610092,36 +606763,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149413] = 12, - ACTIONS(8672), 1, + [149446] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(10068), 1, + STATE(9764), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610129,36 +606800,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149462] = 12, - ACTIONS(8672), 1, + [149495] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9488), 1, + STATE(9718), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610166,36 +606837,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149511] = 12, - ACTIONS(8672), 1, + [149544] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9983), 1, + STATE(9734), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610203,36 +606874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149560] = 12, - ACTIONS(8672), 1, + [149593] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9827), 1, + STATE(9558), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610240,66 +606911,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149609] = 5, - ACTIONS(9501), 1, - sym__quest, - STATE(6688), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - sym__alpha_identifier, - [149644] = 12, - ACTIONS(8672), 1, + [149642] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9710), 1, + STATE(9522), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610307,36 +606948,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149693] = 12, - ACTIONS(8672), 1, + [149691] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9762), 1, + STATE(9498), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610344,36 +606985,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149742] = 12, - ACTIONS(8672), 1, + [149740] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(9908), 1, + STATE(9658), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610381,36 +607022,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149791] = 12, - ACTIONS(8672), 1, + [149789] = 12, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9336), 1, + ACTIONS(9334), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8103), 1, + STATE(8196), 1, sym_parameter_modifiers, - STATE(9372), 1, + STATE(9230), 1, sym_simple_identifier, - STATE(10039), 1, + STATE(9710), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7223), 3, + STATE(7220), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610418,11 +607059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149840] = 3, + [149838] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 8, + ACTIONS(4796), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -610431,7 +607072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5183), 13, + ACTIONS(4794), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -610445,11 +607086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149870] = 3, + [149868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 8, + ACTIONS(4860), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -610458,7 +607099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5159), 13, + ACTIONS(4858), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -610472,11 +607113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149900] = 3, + [149898] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 8, + ACTIONS(4888), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -610485,7 +607126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5163), 13, + ACTIONS(4886), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -610499,11 +607140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149930] = 3, + [149928] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 8, + ACTIONS(4784), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -610512,7 +607153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5179), 13, + ACTIONS(4782), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -610526,36 +607167,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149960] = 14, - ACTIONS(115), 1, + [149958] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(3142), 1, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(4896), 1, sym__delegation_specifiers, - STATE(4049), 1, + STATE(5521), 1, sym_user_type, - STATE(4132), 1, + STATE(5573), 1, sym_function_type, - STATE(4217), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610563,36 +607204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150011] = 14, - ACTIONS(387), 1, + [150009] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(907), 1, + STATE(4591), 1, sym__delegation_specifiers, - STATE(1397), 1, + STATE(5269), 1, sym_user_type, - STATE(1684), 1, + STATE(5356), 1, sym_function_type, - STATE(1868), 1, + STATE(5530), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610600,35 +607241,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150062] = 13, - ACTIONS(557), 1, + [150060] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, + STATE(4248), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2933), 2, + STATE(3614), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610636,72 +607277,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150111] = 14, - ACTIONS(7), 1, + [150109] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 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, + STATE(3314), 1, sym_simple_identifier, - STATE(4900), 1, - sym__delegation_specifiers, - STATE(4951), 1, - sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, - sym_function_type, - STATE(9846), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5153), 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, - [150162] = 13, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(2791), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, + STATE(4248), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2936), 2, + STATE(3818), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610709,71 +607313,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150211] = 13, - ACTIONS(557), 1, + [150158] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 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, + STATE(3314), 1, sym_simple_identifier, - 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(2942), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - 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, - [150260] = 13, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(2791), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, + STATE(4248), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2946), 2, + STATE(3628), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610781,71 +607349,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150309] = 13, - ACTIONS(557), 1, + [150207] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 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, + STATE(3314), 1, sym_simple_identifier, - 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(2947), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - 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, - [150358] = 13, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(2791), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, + STATE(4248), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2950), 2, + STATE(3674), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610853,32 +607385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150407] = 13, - ACTIONS(473), 1, + [150256] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3605), 2, + STATE(3792), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -610889,36 +607421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150456] = 14, - ACTIONS(211), 1, + [150305] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4602), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(5324), 1, + STATE(5573), 1, sym_function_type, - STATE(5524), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4897), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610926,32 +607457,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150507] = 13, - ACTIONS(473), 1, + [150354] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3731), 2, + STATE(3654), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -610962,70 +607493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150556] = 14, - ACTIONS(9232), 1, + [150403] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4221), 1, sym_user_type, - STATE(5021), 1, - sym__delegation_specifiers, - STATE(5032), 1, + STATE(4248), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(9741), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(9236), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [150607] = 14, - ACTIONS(473), 1, - sym__alpha_identifier, - 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(3801), 1, + STATE(3651), 2, sym__delegation_specifiers, - STATE(4199), 1, - sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, sym_delegation_specifier, - STATE(9976), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -611036,72 +607529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150658] = 14, - ACTIONS(9216), 1, + [150452] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8345), 1, - sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, - sym_function_type, - STATE(9069), 1, - sym__delegation_specifiers, - STATE(10143), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8525), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(9220), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [150709] = 13, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(5273), 1, + STATE(5521), 1, sym_user_type, - STATE(5324), 1, + STATE(5573), 1, sym_function_type, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4690), 2, + STATE(4965), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611109,36 +607565,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150758] = 14, - ACTIONS(9232), 1, + [150501] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4221), 1, sym_user_type, - STATE(5022), 1, - sym__delegation_specifiers, - STATE(5032), 1, + STATE(4248), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(9741), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3645), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611146,32 +607601,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150809] = 13, - ACTIONS(473), 1, + [150550] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3666), 2, + STATE(3644), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -611182,32 +607637,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150858] = 13, - ACTIONS(473), 1, + [150599] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3661), 2, + STATE(3665), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -611218,35 +607673,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150907] = 13, - ACTIONS(473), 1, + [150648] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(2916), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3635), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611254,32 +607710,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150956] = 13, - ACTIONS(473), 1, + [150699] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3801), 2, + STATE(3622), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -611290,35 +607746,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151005] = 13, - ACTIONS(473), 1, + [150748] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(2956), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3608), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611326,35 +607783,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151054] = 13, - ACTIONS(557), 1, + [150799] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(3939), 1, + STATE(3962), 1, sym_function_type, - STATE(9798), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2924), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611362,35 +607819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151103] = 13, - ACTIONS(473), 1, + [150848] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3051), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3660), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611398,35 +607856,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151152] = 13, - ACTIONS(473), 1, + [150899] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(2912), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3607), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611434,32 +607893,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151201] = 13, - ACTIONS(473), 1, + [150950] = 13, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, + STATE(4248), 1, sym_function_type, - STATE(9976), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3614), 2, + STATE(3647), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -611470,35 +607929,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151250] = 13, - ACTIONS(473), 1, + [150999] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(2904), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3622), 2, + STATE(3158), 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, + [151050] = 14, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4594), 1, sym__delegation_specifiers, + STATE(5269), 1, + sym_user_type, + STATE(5356), 1, + sym_function_type, + STATE(5530), 1, sym_delegation_specifier, - STATE(3888), 2, + STATE(9697), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611506,36 +608003,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151299] = 14, - ACTIONS(9232), 1, + [151101] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4221), 1, sym_user_type, - STATE(5032), 1, + STATE(4248), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(5058), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3701), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611543,35 +608039,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151350] = 13, - ACTIONS(473), 1, + [151150] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3624), 2, + STATE(2912), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611579,35 +608075,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151399] = 13, - ACTIONS(473), 1, + [151199] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3962), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3650), 2, + STATE(2916), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611615,35 +608111,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151448] = 13, - ACTIONS(387), 1, + [151248] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(1684), 1, + STATE(5573), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, + STATE(5013), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611651,35 +608147,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151497] = 13, + [151297] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(3939), 1, + STATE(1730), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3011), 2, + STATE(885), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611687,36 +608183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151546] = 14, - ACTIONS(9232), 1, + [151346] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(3776), 1, sym_user_type, - STATE(5032), 1, + STATE(3962), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(5061), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(2882), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611724,35 +608219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151597] = 13, + [151395] = 13, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(1684), 1, + STATE(3962), 1, sym_function_type, - STATE(9593), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(932), 2, + STATE(2934), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611760,36 +608255,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151646] = 14, - ACTIONS(473), 1, + [151444] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3610), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3962), 1, sym_function_type, - STATE(4243), 1, - sym_delegation_specifier, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(2881), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611797,36 +608291,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151697] = 14, - ACTIONS(9232), 1, + [151493] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(2981), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(5032), 1, - sym_function_type, - STATE(5040), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(5060), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(3962), 1, + sym_function_type, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611834,36 +608328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151748] = 14, - ACTIONS(7), 1, + [151544] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(4955), 1, - sym__delegation_specifiers, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(1730), 1, sym_function_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(946), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611871,36 +608364,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151799] = 14, - ACTIONS(9216), 1, + [151593] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7891), 1, - sym__simple_user_type, - STATE(8345), 1, + STATE(4585), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(5356), 1, sym_function_type, - STATE(8445), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611908,35 +608401,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151850] = 13, + [151644] = 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(885), 1, + sym__delegation_specifiers, + STATE(905), 1, sym_user_type, - STATE(3939), 1, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2917), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611944,36 +608438,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151899] = 14, - ACTIONS(9232), 1, + [151695] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(5019), 1, + STATE(4951), 1, sym__delegation_specifiers, - STATE(5032), 1, - sym_function_type, - STATE(5040), 1, + STATE(5020), 1, sym_delegation_specifier, - STATE(9741), 1, + STATE(5063), 1, + sym_function_type, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611981,36 +608475,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151950] = 14, - ACTIONS(473), 1, + [151746] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3608), 1, + STATE(2959), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(3962), 1, + sym_function_type, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612018,36 +608512,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152001] = 14, - ACTIONS(473), 1, + [151797] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, + sym_user_type, + STATE(5573), 1, + sym_function_type, + STATE(9525), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4954), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1908), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [151846] = 13, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3731), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, + STATE(3962), 1, sym_function_type, - STATE(4243), 1, - sym_delegation_specifier, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(2956), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612055,35 +608584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152052] = 13, - ACTIONS(557), 1, + [151895] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(3939), 1, + STATE(3962), 1, sym_function_type, - STATE(9798), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2904), 2, + STATE(2953), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612091,35 +608620,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152101] = 13, + [151944] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(3939), 1, + STATE(1730), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2902), 2, + STATE(867), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612127,36 +608656,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152150] = 14, - ACTIONS(211), 1, + [151993] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4690), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(5324), 1, + STATE(1730), 1, sym_function_type, - STATE(5524), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(864), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612164,36 +608692,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152201] = 14, - ACTIONS(9216), 1, + [152042] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3962), 1, sym_function_type, - STATE(9088), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(2959), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612201,35 +608728,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152252] = 13, - ACTIONS(387), 1, + [152091] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(1684), 1, + STATE(5573), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(868), 2, + STATE(4896), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612237,35 +608764,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152301] = 13, - ACTIONS(387), 1, + [152140] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4221), 1, sym_user_type, - STATE(1684), 1, + STATE(4248), 1, sym_function_type, - STATE(9593), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(871), 2, + STATE(3672), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612273,36 +608800,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152350] = 14, - ACTIONS(9232), 1, + [152189] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(2921), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(5032), 1, - sym_function_type, - STATE(5040), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(5048), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(3962), 1, + sym_function_type, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612310,36 +608837,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152401] = 14, - ACTIONS(9232), 1, + [152240] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(2953), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(5032), 1, - sym_function_type, - STATE(5040), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(5044), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(3962), 1, + sym_function_type, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612347,36 +608874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152452] = 14, - ACTIONS(7), 1, + [152291] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(4952), 1, + STATE(946), 1, sym__delegation_specifiers, - STATE(5025), 1, + STATE(976), 1, sym_delegation_specifier, - STATE(5041), 1, + STATE(981), 1, sym_function_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612384,35 +608911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152503] = 13, + [152342] = 13, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(1684), 1, + STATE(3962), 1, sym_function_type, - STATE(9593), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, + STATE(2981), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612420,35 +608947,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152552] = 13, - ACTIONS(387), 1, + [152391] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(1684), 1, + STATE(4104), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(930), 2, + STATE(3091), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612456,35 +608983,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152601] = 13, - ACTIONS(387), 1, + [152440] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4903), 1, + sym__delegation_specifiers, + STATE(4911), 1, sym_user_type, - STATE(1684), 1, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(920), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612492,36 +609020,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152650] = 14, - ACTIONS(9232), 1, + [152491] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(1401), 1, sym_user_type, - STATE(5032), 1, + STATE(1730), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(5297), 1, - sym__delegation_specifiers, - STATE(9741), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(909), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612529,35 +609056,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152701] = 13, - ACTIONS(387), 1, + [152540] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4944), 1, sym_user_type, - STATE(1684), 1, + STATE(4973), 1, + sym__delegation_specifiers, + STATE(4993), 1, sym_function_type, - STATE(9593), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(919), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612565,36 +609093,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152750] = 14, - ACTIONS(473), 1, + [152591] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3660), 1, + STATE(867), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(905), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(976), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(981), 1, + sym_function_type, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612602,35 +609130,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152801] = 13, + [152642] = 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(864), 1, + sym__delegation_specifiers, + STATE(905), 1, sym_user_type, - STATE(3939), 1, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612638,32 +609167,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152850] = 13, - ACTIONS(387), 1, + [152693] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(1397), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(1684), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(908), 2, + STATE(998), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -612674,35 +609203,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152899] = 13, - ACTIONS(387), 1, + [152742] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(1684), 1, + STATE(4946), 1, + sym__delegation_specifiers, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(907), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612710,35 +609240,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152948] = 13, - ACTIONS(387), 1, + [152793] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(1684), 1, + STATE(5573), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(886), 2, + STATE(5019), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612746,36 +609276,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152997] = 14, - ACTIONS(473), 1, + [152842] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3607), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(1401), 1, sym_user_type, - STATE(4236), 1, + STATE(1730), 1, sym_function_type, - STATE(4243), 1, - sym_delegation_specifier, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612783,35 +609312,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153048] = 13, - ACTIONS(557), 1, + [152891] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4578), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(3796), 1, + STATE(4944), 1, sym_user_type, - STATE(3939), 1, + STATE(4993), 1, sym_function_type, - STATE(9798), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5270), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2898), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612819,32 +609349,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153097] = 13, - ACTIONS(387), 1, + [152942] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(1397), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(1684), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(869), 2, + STATE(922), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -612855,35 +609385,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153146] = 13, + [152991] = 14, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2897), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(1684), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9593), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(910), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612891,35 +609422,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153195] = 13, - ACTIONS(115), 1, + [153042] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(4132), 1, + STATE(4993), 1, sym_function_type, - STATE(9863), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5025), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3096), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612927,36 +609459,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153244] = 14, - ACTIONS(473), 1, + [153093] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(3605), 1, - sym__delegation_specifiers, - STATE(3609), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(4993), 1, sym_function_type, - STATE(9976), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5029), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612964,35 +609496,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153295] = 13, + [153144] = 13, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(1397), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(3776), 1, sym_user_type, - STATE(1684), 1, + STATE(3962), 1, sym_function_type, - STATE(9593), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(915), 2, + STATE(2887), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613000,35 +609532,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153344] = 13, - ACTIONS(115), 1, + [153193] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(3776), 1, sym_user_type, - STATE(4132), 1, + STATE(3962), 1, sym_function_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3081), 2, + STATE(2897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613036,36 +609568,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153393] = 14, - ACTIONS(9232), 1, + [153242] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(905), 1, sym_user_type, - STATE(5026), 1, + STATE(909), 1, sym__delegation_specifiers, - STATE(5032), 1, - sym_function_type, - STATE(5040), 1, + STATE(976), 1, sym_delegation_specifier, - STATE(9741), 1, + STATE(981), 1, + sym_function_type, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613073,36 +609605,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153444] = 14, - ACTIONS(473), 1, + [153293] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3614), 1, + STATE(2881), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(3776), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(3962), 1, + sym_function_type, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613110,35 +609642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153495] = 13, - ACTIONS(115), 1, + [153344] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(1401), 1, sym_user_type, - STATE(4132), 1, + STATE(1730), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3078), 2, + STATE(884), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613146,33 +609678,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153544] = 14, - ACTIONS(7), 1, + [153393] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4951), 1, - sym_user_type, - STATE(5020), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2934), 1, sym__delegation_specifiers, - STATE(5025), 1, + STATE(3776), 1, + sym_user_type, + STATE(3909), 1, sym_delegation_specifier, - STATE(5041), 1, + STATE(3962), 1, sym_function_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -613183,35 +609715,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153595] = 13, - ACTIONS(115), 1, + [153444] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(4132), 1, + STATE(4993), 1, sym_function_type, - STATE(9863), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5038), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3068), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613219,35 +609752,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153644] = 13, - ACTIONS(115), 1, + [153495] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(4132), 1, + STATE(4993), 1, sym_function_type, - STATE(9863), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5028), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3139), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613255,35 +609789,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153693] = 13, - ACTIONS(473), 1, + [153546] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4199), 1, + STATE(1401), 1, sym_user_type, - STATE(4236), 1, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3610), 2, + STATE(882), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613291,36 +609825,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153742] = 14, - ACTIONS(9232), 1, + [153595] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(4578), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4944), 1, sym_user_type, - STATE(5002), 1, - sym__delegation_specifiers, - STATE(5032), 1, + STATE(4993), 1, sym_function_type, - STATE(5040), 1, + STATE(5006), 1, sym_delegation_specifier, - STATE(9741), 1, + STATE(5024), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613328,36 +609862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153793] = 14, - ACTIONS(9232), 1, + [153646] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(1401), 1, sym_user_type, - STATE(5000), 1, - sym__delegation_specifiers, - STATE(5032), 1, + STATE(1730), 1, sym_function_type, - STATE(5040), 1, - sym_delegation_specifier, - STATE(9741), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(865), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613365,35 +609898,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153844] = 13, - ACTIONS(115), 1, + [153695] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(905), 1, sym_user_type, - STATE(4132), 1, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(998), 1, + sym__delegation_specifiers, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3142), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613401,35 +609935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153893] = 13, - ACTIONS(211), 1, + [153746] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(4944), 1, sym_user_type, - STATE(5324), 1, + STATE(4976), 1, + sym__delegation_specifiers, + STATE(4993), 1, sym_function_type, - STATE(9487), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4601), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613437,36 +609972,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153942] = 14, - ACTIONS(473), 1, + [153797] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(1401), 1, sym_user_type, - STATE(3731), 1, - sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(880), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613474,35 +610008,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153993] = 13, - ACTIONS(115), 1, + [153846] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(3776), 1, sym_user_type, - STATE(4132), 1, + STATE(3962), 1, sym_function_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3202), 2, + STATE(3051), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613510,35 +610044,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154042] = 13, - ACTIONS(115), 1, + [153895] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(4132), 1, + STATE(4978), 1, + sym__delegation_specifiers, + STATE(4993), 1, sym_function_type, - STATE(9863), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3208), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613546,35 +610081,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154091] = 13, - ACTIONS(211), 1, + [153946] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(1401), 1, sym_user_type, - STATE(5324), 1, + STATE(1730), 1, sym_function_type, - STATE(9487), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4600), 2, + STATE(883), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613582,36 +610117,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154140] = 14, - ACTIONS(473), 1, + [153995] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3622), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(905), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(920), 1, + sym__delegation_specifiers, + STATE(976), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(981), 1, + sym_function_type, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613619,35 +610154,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154191] = 13, - ACTIONS(115), 1, + [154046] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(2887), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(4132), 1, + STATE(3909), 1, + sym_delegation_specifier, + STATE(3962), 1, sym_function_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3341), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613655,36 +610191,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154240] = 14, - ACTIONS(473), 1, + [154097] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 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, + STATE(6386), 1, sym__lexical_identifier, - STATE(3624), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(4236), 1, + STATE(8599), 1, sym_function_type, - STATE(4243), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(9217), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613692,35 +610228,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154291] = 13, - ACTIONS(115), 1, + [154148] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(1401), 1, sym_user_type, - STATE(4132), 1, + STATE(1730), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3253), 2, + STATE(924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613728,36 +610264,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154340] = 14, - ACTIONS(9216), 1, + [154197] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(7891), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(4944), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(4993), 1, sym_function_type, - STATE(8810), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5057), 1, sym__delegation_specifiers, - STATE(10143), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613765,35 +610301,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154391] = 13, - ACTIONS(211), 1, + [154248] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(5324), 1, + STATE(922), 1, + sym__delegation_specifiers, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9487), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4681), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613801,35 +610338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154440] = 13, - ACTIONS(115), 1, + [154299] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(3776), 1, sym_user_type, - STATE(4132), 1, + STATE(3962), 1, sym_function_type, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3125), 2, + STATE(2921), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613837,36 +610374,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154489] = 14, - ACTIONS(473), 1, + [154348] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3666), 1, + STATE(884), 1, sym__delegation_specifiers, - STATE(3754), 1, + STATE(905), 1, + sym_user_type, + STATE(976), 1, sym_delegation_specifier, - STATE(3825), 1, + STATE(981), 1, sym_function_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613874,35 +610411,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154540] = 13, - ACTIONS(115), 1, + [154399] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(4132), 1, + STATE(4993), 1, sym_function_type, - STATE(9863), 1, + STATE(5006), 1, + sym_delegation_specifier, + STATE(5037), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3117), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613910,36 +610448,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154589] = 14, - ACTIONS(9232), 1, + [154450] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(4578), 1, sym__simple_user_type, - STATE(4939), 1, + STATE(4944), 1, sym_user_type, - STATE(5032), 1, + STATE(4993), 1, sym_function_type, - STATE(5040), 1, + STATE(5006), 1, sym_delegation_specifier, - STATE(5291), 1, + STATE(5018), 1, sym__delegation_specifiers, - STATE(9741), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613947,36 +610485,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154640] = 14, - ACTIONS(9216), 1, + [154501] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(5573), 1, sym_function_type, - STATE(8451), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4917), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613984,36 +610521,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154691] = 14, + [154550] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4944), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(5521), 1, sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(4904), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614021,36 +610557,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154742] = 14, - ACTIONS(473), 1, + [154599] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3661), 1, + STATE(882), 1, sym__delegation_specifiers, - STATE(3754), 1, + STATE(905), 1, + sym_user_type, + STATE(976), 1, sym_delegation_specifier, - STATE(3825), 1, + STATE(981), 1, sym_function_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614058,36 +610594,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154793] = 14, - ACTIONS(9216), 1, + [154650] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3107), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3294), 1, sym_function_type, - STATE(9073), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614095,36 +610631,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154844] = 14, - ACTIONS(473), 1, + [154701] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3650), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(4093), 1, sym_user_type, - STATE(4236), 1, + STATE(4104), 1, sym_function_type, - STATE(4243), 1, - sym_delegation_specifier, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3107), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614132,36 +610667,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154895] = 14, - ACTIONS(7), 1, + [154750] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4907), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(4093), 1, sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(4104), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3094), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614169,35 +610703,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154946] = 13, - ACTIONS(211), 1, + [154799] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(5324), 1, + STATE(4104), 1, sym_function_type, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4589), 2, + STATE(3088), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614205,36 +610739,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154995] = 14, - ACTIONS(9216), 1, + [154848] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3094), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3294), 1, sym_function_type, - STATE(8457), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614242,35 +610776,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155046] = 13, - ACTIONS(115), 1, + [154899] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(865), 1, + sym__delegation_specifiers, + STATE(905), 1, sym_user_type, - STATE(4132), 1, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3312), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614278,36 +610813,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155095] = 14, - ACTIONS(9232), 1, + [154950] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4548), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4939), 1, - sym_user_type, - STATE(4977), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3091), 1, sym__delegation_specifiers, - STATE(5032), 1, + STATE(3229), 1, + sym_user_type, + STATE(3294), 1, sym_function_type, - STATE(5040), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(9741), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614315,36 +610850,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155146] = 14, - ACTIONS(8672), 1, + [155001] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3088), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(3294), 1, sym_function_type, - STATE(9219), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614352,35 +610887,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155197] = 13, - ACTIONS(115), 1, + [155052] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(4049), 1, + STATE(880), 1, + sym__delegation_specifiers, + STATE(905), 1, sym_user_type, - STATE(4132), 1, + STATE(976), 1, + sym_delegation_specifier, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3070), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614388,36 +610924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155246] = 14, - ACTIONS(9216), 1, + [155103] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(4104), 1, sym_function_type, - STATE(8738), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3060), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614425,36 +610960,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155297] = 14, - ACTIONS(387), 1, + [155152] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(915), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(1684), 1, + STATE(4104), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3076), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614462,36 +610996,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155348] = 14, - ACTIONS(387), 1, + [155201] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(910), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(1684), 1, - sym_function_type, - STATE(1868), 1, + STATE(4957), 1, + sym__delegation_specifiers, + STATE(5020), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(5063), 1, + sym_function_type, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614499,36 +611033,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155399] = 14, - ACTIONS(387), 1, + [155252] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(869), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(1684), 1, + STATE(4104), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3072), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614536,36 +611069,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155450] = 14, - ACTIONS(387), 1, + [155301] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(886), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(8399), 1, sym_user_type, - STATE(1684), 1, + STATE(8566), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(1868), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614573,36 +611106,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155501] = 14, - ACTIONS(473), 1, + [155352] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(4093), 1, sym_user_type, - STATE(3635), 1, - sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(4104), 1, sym_function_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3069), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614610,36 +611142,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155552] = 14, - ACTIONS(473), 1, + [155401] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3801), 1, + STATE(3060), 1, sym__delegation_specifiers, - STATE(3825), 1, + STATE(3229), 1, + sym_user_type, + STATE(3294), 1, sym_function_type, - STATE(9976), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614647,36 +611179,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155603] = 14, + [155452] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4928), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5025), 1, + STATE(4937), 1, + sym__delegation_specifiers, + STATE(5020), 1, sym_delegation_specifier, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614684,35 +611216,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155654] = 13, - ACTIONS(557), 1, + [155503] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3796), 1, + STATE(4911), 1, sym_user_type, - STATE(3939), 1, + STATE(4931), 1, + sym__delegation_specifiers, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614720,36 +611253,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155703] = 14, - ACTIONS(387), 1, + [155554] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(908), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(1684), 1, + STATE(4104), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3366), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614757,36 +611289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155754] = 14, - ACTIONS(9216), 1, + [155603] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(8416), 1, - sym__delegation_specifiers, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(4104), 1, sym_function_type, - STATE(10143), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3119), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614794,36 +611325,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155805] = 14, - ACTIONS(7), 1, + [155652] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4896), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(4093), 1, sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(4104), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3122), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614831,36 +611361,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155856] = 14, - ACTIONS(473), 1, + [155701] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(4093), 1, sym_user_type, - STATE(3610), 1, - sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(4104), 1, sym_function_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3124), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614868,36 +611397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155907] = 14, - ACTIONS(7), 1, + [155750] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(883), 1, sym__delegation_specifiers, - STATE(4951), 1, + STATE(905), 1, sym_user_type, - STATE(5025), 1, + STATE(976), 1, sym_delegation_specifier, - STATE(5041), 1, + STATE(981), 1, sym_function_type, - STATE(9846), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614905,36 +611434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155958] = 14, - ACTIONS(9216), 1, + [155801] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(4104), 1, sym_function_type, - STATE(8428), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3310), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614942,36 +611470,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156009] = 14, - ACTIONS(473), 1, + [155850] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3608), 1, - sym__delegation_specifiers, - STATE(3609), 1, + STATE(905), 1, sym_user_type, - STATE(3754), 1, + STATE(924), 1, + sym__delegation_specifiers, + STATE(976), 1, sym_delegation_specifier, - STATE(3825), 1, + STATE(981), 1, sym_function_type, - STATE(9976), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614979,36 +611507,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156060] = 14, - ACTIONS(387), 1, + [155901] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(919), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(4093), 1, sym_user_type, - STATE(1684), 1, + STATE(4104), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3163), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615016,36 +611543,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156111] = 14, - ACTIONS(387), 1, + [155950] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(920), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3076), 1, sym__delegation_specifiers, - STATE(1397), 1, + STATE(3229), 1, sym_user_type, - STATE(1684), 1, + STATE(3294), 1, sym_function_type, - STATE(1868), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615053,36 +611580,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156162] = 14, - ACTIONS(211), 1, + [156001] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4597), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4904), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(4911), 1, sym_user_type, - STATE(5324), 1, - sym_function_type, - STATE(5524), 1, + STATE(5020), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(5063), 1, + sym_function_type, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615090,36 +611617,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156213] = 14, - ACTIONS(473), 1, + [156052] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(4911), 1, sym_user_type, - STATE(3660), 1, + STATE(4917), 1, sym__delegation_specifiers, - STATE(3754), 1, + STATE(5020), 1, sym_delegation_specifier, - STATE(3825), 1, + STATE(5063), 1, sym_function_type, - STATE(9976), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615127,36 +611654,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156264] = 14, + [156103] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4923), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(5521), 1, sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(4931), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615164,35 +611690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156315] = 13, - ACTIONS(211), 1, + [156152] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(5324), 1, + STATE(5019), 1, + sym__delegation_specifiers, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4590), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615200,36 +611727,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156364] = 14, + [156203] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4922), 1, - sym__delegation_specifiers, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5025), 1, + STATE(4954), 1, + sym__delegation_specifiers, + STATE(5020), 1, sym_delegation_specifier, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615237,36 +611764,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156415] = 14, - ACTIONS(473), 1, + [156254] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3607), 1, - sym__delegation_specifiers, - STATE(3609), 1, + STATE(3229), 1, sym_user_type, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(3294), 1, sym_function_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3163), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615274,32 +611800,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156466] = 13, - ACTIONS(387), 1, + [156303] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + sym__lexical_identifier, + STATE(924), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(929), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(915), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615310,33 +611837,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156515] = 14, - ACTIONS(387), 1, + [156354] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(930), 1, + sym__lexical_identifier, + STATE(883), 1, sym__delegation_specifiers, - STATE(1397), 1, + STATE(1401), 1, sym_user_type, - STATE(1684), 1, + STATE(1730), 1, sym_function_type, - STATE(1868), 1, + STATE(2058), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615347,33 +611874,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156566] = 14, - ACTIONS(387), 1, + [156405] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(924), 1, + sym__lexical_identifier, + STATE(880), 1, sym__delegation_specifiers, - STATE(1397), 1, + STATE(1401), 1, sym_user_type, - STATE(1684), 1, + STATE(1730), 1, sym_function_type, - STATE(1868), 1, + STATE(2058), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615384,35 +611911,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156617] = 13, - ACTIONS(387), 1, + [156456] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(910), 2, + STATE(3310), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615420,36 +611947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156666] = 14, - ACTIONS(473), 1, + [156505] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3614), 1, + STATE(865), 1, sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(1401), 1, + sym_user_type, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615457,36 +611984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156717] = 14, - ACTIONS(211), 1, + [156556] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(4589), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(8399), 1, sym_user_type, - STATE(5324), 1, + STATE(8550), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(5524), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615494,36 +612021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156768] = 14, - ACTIONS(473), 1, + [156607] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3622), 1, + STATE(882), 1, sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(1401), 1, + sym_user_type, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615531,36 +612058,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156819] = 14, - ACTIONS(473), 1, + [156658] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3624), 1, + STATE(884), 1, sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(1401), 1, + sym_user_type, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615568,36 +612095,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156870] = 14, - ACTIONS(211), 1, + [156709] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4601), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3072), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(3229), 1, sym_user_type, - STATE(5324), 1, + STATE(3294), 1, sym_function_type, - STATE(5524), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615605,35 +612132,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156921] = 13, - ACTIONS(387), 1, + [156760] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(869), 2, + STATE(3124), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615641,35 +612168,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156970] = 13, - ACTIONS(387), 1, + [156809] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(925), 1, + STATE(8399), 1, sym_user_type, - STATE(929), 1, + STATE(8546), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9593), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(886), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615677,32 +612205,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157019] = 13, - ACTIONS(387), 1, + [156860] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + sym__lexical_identifier, + STATE(922), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(929), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(907), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615713,32 +612242,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157068] = 13, - ACTIONS(387), 1, + [156911] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + sym__lexical_identifier, + STATE(920), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(929), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(908), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615749,36 +612279,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157117] = 14, - ACTIONS(387), 1, + [156962] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(871), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(1684), 1, + STATE(3294), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3122), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615786,32 +612315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157168] = 13, - ACTIONS(387), 1, + [157011] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + sym__lexical_identifier, + STATE(998), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(929), 1, + STATE(1730), 1, sym_function_type, - STATE(9593), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(919), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -615822,35 +612352,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157217] = 13, - ACTIONS(7), 1, + [157062] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(909), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(5041), 1, + STATE(1730), 1, sym_function_type, - STATE(9846), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4958), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615858,35 +612389,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157266] = 13, - ACTIONS(7), 1, + [157113] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(3229), 1, sym_user_type, - STATE(5041), 1, + STATE(3294), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5062), 2, + STATE(3119), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615894,36 +612425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157315] = 14, - ACTIONS(387), 1, + [157162] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(868), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(1684), 1, + STATE(5573), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4957), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615931,36 +612461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157366] = 14, - ACTIONS(473), 1, + [157211] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, - sym_user_type, - STATE(3650), 1, + STATE(864), 1, sym__delegation_specifiers, - STATE(3754), 1, - sym_delegation_specifier, - STATE(3825), 1, + STATE(1401), 1, + sym_user_type, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615968,35 +612498,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157417] = 13, - ACTIONS(7), 1, + [157262] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(867), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(5041), 1, + STATE(1730), 1, sym_function_type, - STATE(9846), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4894), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616004,35 +612535,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157466] = 13, - ACTIONS(7), 1, + [157313] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(3229), 1, sym_user_type, - STATE(5041), 1, + STATE(3294), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4896), 2, + STATE(3366), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616040,35 +612571,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157515] = 13, - ACTIONS(387), 1, + [157362] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(920), 2, + STATE(3069), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616076,35 +612607,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157564] = 13, - ACTIONS(387), 1, + [157411] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(925), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(929), 1, + STATE(4965), 1, + sym__delegation_specifiers, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(930), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616112,35 +612644,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157613] = 13, + [157462] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4900), 2, + STATE(4896), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616148,35 +612680,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157662] = 13, + [157511] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5020), 2, + STATE(5013), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616184,35 +612716,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157711] = 13, - ACTIONS(387), 1, + [157560] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, + STATE(3072), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616220,35 +612752,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157760] = 13, - ACTIONS(7), 1, + [157609] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(3069), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(5041), 1, + STATE(3294), 1, sym_function_type, - STATE(9846), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4955), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616256,35 +612789,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157809] = 13, + [157660] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4952), 2, + STATE(4897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616292,35 +612825,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157858] = 13, - ACTIONS(387), 1, + [157709] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(925), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(929), 1, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(871), 2, + STATE(4965), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616328,36 +612861,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157907] = 14, - ACTIONS(473), 1, + [157758] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3605), 1, + STATE(4897), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(4911), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(5020), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(5063), 1, + sym_function_type, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616365,35 +612898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157958] = 13, - ACTIONS(387), 1, + [157809] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(868), 2, + STATE(3076), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616401,35 +612934,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158007] = 13, + [157858] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4944), 2, + STATE(4954), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616437,35 +612970,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158056] = 13, + [157907] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4907), 2, + STATE(5019), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616473,35 +613006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158105] = 13, - ACTIONS(387), 1, + [157956] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(925), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(929), 1, + STATE(3294), 1, sym_function_type, - STATE(9593), 1, + STATE(3366), 1, + sym__delegation_specifiers, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(932), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616509,35 +613043,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158154] = 13, + [158007] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4928), 2, + STATE(4917), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616545,35 +613079,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158203] = 13, - ACTIONS(387), 1, + [158056] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(925), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(929), 1, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, + STATE(4904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616581,35 +613115,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158252] = 13, - ACTIONS(7), 1, + [158105] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(5500), 1, + STATE(8335), 1, sym_user_type, - STATE(5557), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8437), 1, + sym__delegation_specifiers, + STATE(8441), 1, sym_function_type, - STATE(9846), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4911), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616617,35 +613152,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158301] = 13, - ACTIONS(473), 1, + [158156] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(814), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(818), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(885), 1, + sym__delegation_specifiers, + STATE(1401), 1, sym_user_type, - STATE(3825), 1, + STATE(1730), 1, sym_function_type, - STATE(9976), 1, + STATE(2058), 1, + sym_delegation_specifier, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3650), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616653,35 +613189,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158350] = 13, - ACTIONS(7), 1, + [158207] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(3229), 1, sym_user_type, - STATE(5041), 1, + STATE(3294), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4923), 2, + STATE(3060), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616689,35 +613225,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158399] = 13, + [158256] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4922), 2, + STATE(4931), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616725,35 +613261,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158448] = 13, + [158305] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(4911), 1, sym_user_type, - STATE(5557), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4922), 2, + STATE(4937), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616761,35 +613297,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158497] = 13, - ACTIONS(7), 1, + [158354] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(3229), 1, sym_user_type, - STATE(5557), 1, + STATE(3294), 1, sym_function_type, - STATE(9846), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4923), 2, + STATE(3088), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616797,35 +613333,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158546] = 13, + [158403] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4911), 2, + STATE(4957), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616833,35 +613369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158595] = 13, - ACTIONS(473), 1, + [158452] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(3229), 1, sym_user_type, - STATE(3825), 1, + STATE(3294), 1, sym_function_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3624), 2, + STATE(3091), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616869,33 +613405,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158644] = 14, - ACTIONS(387), 1, + [158501] = 14, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, STATE(825), 1, - sym__simple_user_type, - STATE(932), 1, + sym__lexical_identifier, + STATE(946), 1, sym__delegation_specifiers, - STATE(1397), 1, + STATE(1401), 1, sym_user_type, - STATE(1684), 1, + STATE(1730), 1, sym_function_type, - STATE(1868), 1, + STATE(2058), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1664), 7, @@ -616906,35 +613442,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158695] = 13, - ACTIONS(473), 1, + [158552] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(3229), 1, sym_user_type, - STATE(3825), 1, + STATE(3294), 1, sym_function_type, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3622), 2, + STATE(3094), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616942,35 +613478,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158744] = 13, - ACTIONS(473), 1, + [158601] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(4911), 1, sym_user_type, - STATE(3825), 1, + STATE(5063), 1, sym_function_type, - STATE(9976), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3614), 2, + STATE(4946), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616978,35 +613514,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158793] = 13, + [158650] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(4911), 1, sym_user_type, - STATE(5557), 1, + STATE(5063), 1, sym_function_type, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4928), 2, + STATE(4903), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617014,36 +613550,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158842] = 14, - ACTIONS(387), 1, + [158699] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(894), 1, - sym__delegation_specifiers, - STATE(1397), 1, + STATE(5269), 1, sym_user_type, - STATE(1684), 1, + STATE(5356), 1, sym_function_type, - STATE(1868), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4610), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617051,35 +613586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158893] = 13, - ACTIONS(473), 1, + [158748] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(3119), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(3825), 1, + STATE(3294), 1, sym_function_type, - STATE(9976), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3607), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617087,36 +613623,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158942] = 14, + [158799] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4951), 1, + STATE(4911), 1, sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(5063), 1, sym_function_type, - STATE(5062), 1, - sym__delegation_specifiers, - STATE(9846), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(4951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617124,36 +613659,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158993] = 14, - ACTIONS(557), 1, + [158848] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(2924), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(8599), 1, sym_function_type, - STATE(9798), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9420), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617161,35 +613696,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159044] = 13, - ACTIONS(211), 1, + [158899] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, sym_user_type, - STATE(5324), 1, + STATE(3294), 1, sym_function_type, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4592), 2, + STATE(3107), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617197,35 +613732,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159093] = 13, - ACTIONS(473), 1, + [158948] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3660), 2, + STATE(2921), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617233,35 +613768,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159142] = 13, - ACTIONS(211), 1, + [158997] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(8399), 1, sym_user_type, - STATE(5324), 1, + STATE(8538), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9487), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4617), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617269,35 +613805,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159191] = 13, - ACTIONS(211), 1, + [159048] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(5324), 1, + STATE(5573), 1, sym_function_type, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4581), 2, + STATE(4946), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617305,35 +613841,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159240] = 13, - ACTIONS(473), 1, + [159097] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3608), 2, + STATE(3051), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617341,35 +613877,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159289] = 13, - ACTIONS(473), 1, + [159146] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3610), 2, + STATE(2897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617377,72 +613913,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159338] = 13, - ACTIONS(473), 1, + [159195] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(4578), 1, + sym__simple_user_type, + STATE(4944), 1, sym_user_type, - STATE(3825), 1, + STATE(4993), 1, sym_function_type, - STATE(9976), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3801), 2, - sym__delegation_specifiers, + STATE(5006), 1, sym_delegation_specifier, - STATE(3888), 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, - [159387] = 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(4911), 1, + STATE(5285), 1, sym__delegation_specifiers, - STATE(4951), 1, - sym_user_type, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, - sym_function_type, - STATE(9846), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617450,36 +613950,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159438] = 14, - ACTIONS(557), 1, + [159246] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(2950), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(3000), 1, sym_function_type, - STATE(9798), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(2887), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617487,36 +613986,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159489] = 14, - ACTIONS(115), 1, + [159295] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(3069), 1, - sym_user_type, - STATE(3070), 1, + STATE(2904), 1, sym__delegation_specifiers, - STATE(3363), 1, + STATE(2937), 1, + sym_user_type, + STATE(3000), 1, sym_function_type, - STATE(3629), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617524,32 +614023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159540] = 13, - ACTIONS(7), 1, + [159346] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2912), 1, + sym__delegation_specifiers, + STATE(2937), 1, sym_user_type, - STATE(5557), 1, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4907), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -617560,32 +614060,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159589] = 13, - ACTIONS(7), 1, + [159397] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(5557), 1, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4944), 2, + STATE(2956), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -617596,32 +614096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159638] = 13, - ACTIONS(211), 1, + [159446] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(5273), 1, + STATE(5269), 1, sym_user_type, - STATE(5324), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4615), 2, + STATE(4662), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -617632,35 +614132,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159687] = 13, - ACTIONS(473), 1, + [159495] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2916), 1, + sym__delegation_specifiers, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3635), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617668,36 +614169,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159736] = 14, - ACTIONS(557), 1, + [159546] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2900), 1, - sym_user_type, - STATE(2947), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2882), 1, sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(2937), 1, + sym_user_type, + STATE(3000), 1, sym_function_type, - STATE(9798), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617705,36 +614206,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159787] = 14, - ACTIONS(9216), 1, + [159597] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(8409), 1, - sym__delegation_specifiers, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3000), 1, sym_function_type, - STATE(10143), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(2981), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617742,36 +614242,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159838] = 14, - ACTIONS(115), 1, + [159646] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(3070), 1, + STATE(2934), 1, sym__delegation_specifiers, - STATE(4049), 1, + STATE(2937), 1, sym_user_type, - STATE(4132), 1, + STATE(3000), 1, sym_function_type, - STATE(4217), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617779,35 +614279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159889] = 13, - ACTIONS(7), 1, + [159697] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(5500), 1, + STATE(8335), 1, sym_user_type, - STATE(5557), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8441), 1, sym_function_type, - STATE(9846), 1, + STATE(8636), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4952), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617815,32 +614316,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159938] = 13, - ACTIONS(7), 1, + [159748] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2881), 1, + sym__delegation_specifiers, + STATE(2937), 1, sym_user_type, - STATE(5557), 1, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4955), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -617851,36 +614353,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159987] = 14, - ACTIONS(557), 1, + [159799] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(2946), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(3000), 1, sym_function_type, - STATE(9798), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(2959), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617888,36 +614389,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160038] = 14, - ACTIONS(211), 1, + [159848] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(4600), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(8399), 1, sym_user_type, - STATE(5324), 1, + STATE(8599), 1, sym_function_type, - STATE(5524), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9320), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617925,35 +614426,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160089] = 13, - ACTIONS(211), 1, + [159899] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(5324), 1, + STATE(5573), 1, sym_function_type, - STATE(9487), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4583), 2, + STATE(4937), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617961,36 +614462,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160138] = 14, - ACTIONS(473), 1, + [159948] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3635), 1, - sym__delegation_specifiers, - STATE(4199), 1, + STATE(2937), 1, sym_user_type, - STATE(4236), 1, + STATE(2953), 1, + sym__delegation_specifiers, + STATE(3000), 1, sym_function_type, - STATE(4243), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617998,36 +614499,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160189] = 14, - ACTIONS(115), 1, + [159999] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(2937), 1, sym_user_type, - STATE(3312), 1, + STATE(2959), 1, sym__delegation_specifiers, - STATE(3363), 1, + STATE(3000), 1, sym_function_type, - STATE(3629), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618035,36 +614536,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160240] = 14, - ACTIONS(115), 1, + [160050] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(2937), 1, sym_user_type, - STATE(3117), 1, - sym__delegation_specifiers, - STATE(3363), 1, + STATE(3000), 1, sym_function_type, - STATE(3629), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(2953), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618072,36 +614572,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160291] = 14, - ACTIONS(211), 1, + [160099] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4681), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(5324), 1, + STATE(3000), 1, sym_function_type, - STATE(5524), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(2881), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618109,36 +614608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160342] = 14, - ACTIONS(8672), 1, + [160148] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(3000), 1, sym_function_type, - STATE(9452), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(2934), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618146,36 +614644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160393] = 14, - ACTIONS(9216), 1, + [160197] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, - sym_function_type, - STATE(8700), 1, + STATE(2981), 1, sym__delegation_specifiers, - STATE(10143), 1, + STATE(3000), 1, + sym_function_type, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618183,35 +614681,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160444] = 13, - ACTIONS(473), 1, + [160248] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3661), 2, + STATE(2882), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618219,32 +614717,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160493] = 13, - ACTIONS(7), 1, + [160297] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2937), 1, + sym_user_type, + STATE(2956), 1, + sym__delegation_specifiers, + STATE(3000), 1, + sym_function_type, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3158), 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, + [160348] = 13, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(5557), 1, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5020), 2, + STATE(2916), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -618255,36 +614790,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160542] = 14, + [160397] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3069), 1, - sym_user_type, - STATE(3125), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3122), 1, sym__delegation_specifiers, - STATE(3363), 1, + STATE(3229), 1, + sym_user_type, + STATE(3294), 1, sym_function_type, - STATE(3629), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618292,35 +614827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160593] = 13, - ACTIONS(473), 1, + [160448] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(2937), 1, sym_user_type, - STATE(3825), 1, + STATE(3000), 1, sym_function_type, - STATE(9976), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3666), 2, + STATE(2912), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3888), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618328,32 +614863,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160642] = 13, - ACTIONS(211), 1, + [160497] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(5273), 1, + STATE(5269), 1, sym_user_type, - STATE(5324), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4606), 2, + STATE(4609), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -618364,35 +614899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160691] = 13, - ACTIONS(7), 1, + [160546] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(5269), 1, sym_user_type, - STATE(5557), 1, + STATE(5356), 1, sym_function_type, - STATE(9846), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4900), 2, + STATE(4607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618400,36 +614935,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160740] = 14, - ACTIONS(473), 1, + [160595] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3666), 1, + STATE(3124), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(3229), 1, sym_user_type, - STATE(4236), 1, + STATE(3294), 1, sym_function_type, - STATE(4243), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618437,35 +614972,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160791] = 13, - ACTIONS(473), 1, + [160646] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(3825), 1, + STATE(5356), 1, sym_function_type, - STATE(9976), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3731), 2, + STATE(4800), 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, + [160697] = 14, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2887), 1, sym__delegation_specifiers, + STATE(2937), 1, + sym_user_type, + STATE(3000), 1, + sym_function_type, + STATE(3053), 1, sym_delegation_specifier, - STATE(3888), 2, + STATE(9974), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618473,33 +615046,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160840] = 14, - ACTIONS(7), 1, + [160748] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(4951), 1, - sym_user_type, - STATE(4958), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2897), 1, sym__delegation_specifiers, - STATE(5025), 1, - sym_delegation_specifier, - STATE(5041), 1, + STATE(2937), 1, + sym_user_type, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -618510,36 +615083,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160891] = 14, - ACTIONS(557), 1, + [160799] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(3229), 1, sym_user_type, - STATE(2942), 1, + STATE(3294), 1, + sym_function_type, + STATE(3310), 1, sym__delegation_specifiers, - STATE(2981), 1, + STATE(3690), 1, sym_delegation_specifier, - STATE(3042), 1, - sym_function_type, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618547,36 +615120,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160942] = 14, - ACTIONS(557), 1, + [160850] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(2936), 1, + STATE(8526), 1, sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(8599), 1, sym_function_type, - STATE(9798), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618584,36 +615157,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160993] = 14, - ACTIONS(557), 1, + [160901] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(2933), 1, + STATE(8525), 1, sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(8599), 1, sym_function_type, - STATE(9798), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618621,32 +615194,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161044] = 13, - ACTIONS(7), 1, + [160952] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(5557), 1, + STATE(3000), 1, sym_function_type, - STATE(9846), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4896), 2, + STATE(2904), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1920), 7, @@ -618657,36 +615230,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161093] = 14, - ACTIONS(115), 1, + [161001] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(2937), 1, sym_user_type, - STATE(3253), 1, - sym__delegation_specifiers, - STATE(3363), 1, + STATE(3000), 1, sym_function_type, - STATE(3629), 1, + STATE(3051), 1, + sym__delegation_specifiers, + STATE(3053), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618694,35 +615267,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161144] = 13, - ACTIONS(473), 1, + [161052] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, sym__simple_user_type, - STATE(3308), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3609), 1, + STATE(4911), 1, sym_user_type, - STATE(3825), 1, + STATE(5013), 1, + sym__delegation_specifiers, + STATE(5020), 1, + sym_delegation_specifier, + STATE(5063), 1, sym_function_type, - STATE(9976), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3605), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3888), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618730,35 +615304,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161193] = 13, - ACTIONS(557), 1, + [161103] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2950), 2, + STATE(3628), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618766,36 +615340,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161242] = 14, - ACTIONS(211), 1, + [161152] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4590), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2921), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(2937), 1, sym_user_type, - STATE(5324), 1, + STATE(3000), 1, sym_function_type, - STATE(5524), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618803,35 +615377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161293] = 13, - ACTIONS(7), 1, + [161203] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(5500), 1, + STATE(3688), 1, sym_user_type, - STATE(5557), 1, + STATE(3808), 1, sym_function_type, - STATE(9846), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4894), 2, + STATE(3818), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618839,35 +615413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161342] = 13, - ACTIONS(7), 1, + [161252] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(5557), 1, + STATE(8483), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9846), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5062), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618875,35 +615450,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161391] = 13, - ACTIONS(7), 1, + [161303] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5500), 1, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(5557), 1, + STATE(8479), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9846), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4958), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5153), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618911,36 +615487,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161440] = 14, - ACTIONS(557), 1, + [161354] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(5521), 1, sym_user_type, - STATE(2925), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(5573), 1, sym_function_type, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(4951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618948,35 +615523,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161491] = 13, - ACTIONS(557), 1, + [161403] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2947), 2, + STATE(3672), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618984,36 +615559,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161540] = 14, - ACTIONS(115), 1, + [161452] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3208), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(8399), 1, sym_user_type, - STATE(4132), 1, + STATE(8599), 1, sym_function_type, - STATE(4217), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9006), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619021,35 +615596,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161591] = 13, - ACTIONS(557), 1, + [161503] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2946), 2, + STATE(3614), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619057,36 +615632,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161640] = 14, - ACTIONS(8672), 1, + [161552] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(8399), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8591), 1, + STATE(8461), 1, sym__delegation_specifiers, - STATE(8625), 1, + STATE(8599), 1, sym_function_type, - STATE(9549), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619094,36 +615669,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161691] = 14, - ACTIONS(8672), 1, + [161603] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(3688), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(3808), 1, sym_function_type, - STATE(9193), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3674), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619131,36 +615705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161742] = 14, + [161652] = 14, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3069), 1, - sym_user_type, - STATE(3341), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3107), 1, sym__delegation_specifiers, - STATE(3363), 1, + STATE(4093), 1, + sym_user_type, + STATE(4104), 1, sym_function_type, - STATE(3629), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619168,35 +615742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161793] = 13, - ACTIONS(557), 1, + [161703] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(3094), 1, + sym__delegation_specifiers, + STATE(4093), 1, sym_user_type, - STATE(3042), 1, + STATE(4104), 1, sym_function_type, - STATE(9798), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2942), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619204,36 +615779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161842] = 14, - ACTIONS(557), 1, + [161754] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2900), 1, - sym_user_type, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3011), 1, + STATE(3091), 1, sym__delegation_specifiers, - STATE(3042), 1, + STATE(4093), 1, + sym_user_type, + STATE(4104), 1, sym_function_type, - STATE(9798), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619241,36 +615816,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161893] = 14, - ACTIONS(115), 1, + [161805] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3688), 1, sym_user_type, - STATE(3208), 1, - sym__delegation_specifiers, - STATE(3363), 1, + STATE(3808), 1, sym_function_type, - STATE(3629), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3792), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619278,36 +615852,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161944] = 14, - ACTIONS(557), 1, + [161854] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(2917), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3654), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619315,36 +615888,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161995] = 14, - ACTIONS(115), 1, + [161903] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3312), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3688), 1, sym_user_type, - STATE(4132), 1, + STATE(3808), 1, sym_function_type, - STATE(4217), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3651), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619352,35 +615924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162046] = 13, - ACTIONS(557), 1, + [161952] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2936), 2, + STATE(3645), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619388,35 +615960,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162095] = 13, - ACTIONS(211), 1, + [162001] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(5273), 1, + STATE(3688), 1, sym_user_type, - STATE(5324), 1, + STATE(3808), 1, sym_function_type, - STATE(9487), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4597), 2, + STATE(3644), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619424,35 +615996,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162144] = 13, - ACTIONS(557), 1, + [162050] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(3163), 1, + sym__delegation_specifiers, + STATE(3229), 1, sym_user_type, - STATE(3042), 1, + STATE(3294), 1, sym_function_type, - STATE(9798), 1, + STATE(3690), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2933), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619460,35 +616033,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162193] = 13, - ACTIONS(557), 1, + [162101] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, + STATE(3665), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619496,36 +616069,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162242] = 14, - ACTIONS(8672), 1, + [162150] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(3688), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8604), 1, - sym__delegation_specifiers, - STATE(8625), 1, + STATE(3808), 1, sym_function_type, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3622), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619533,35 +616105,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162293] = 13, - ACTIONS(557), 1, + [162199] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2924), 2, + STATE(3647), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619569,36 +616141,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162342] = 14, - ACTIONS(8672), 1, + [162248] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(3688), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8620), 1, - sym__delegation_specifiers, - STATE(8625), 1, + STATE(3808), 1, sym_function_type, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3701), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619606,35 +616177,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162393] = 13, - ACTIONS(557), 1, + [162297] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(3042), 1, + STATE(3701), 1, + sym__delegation_specifiers, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3011), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619642,36 +616214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162442] = 14, - ACTIONS(8672), 1, + [162348] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(814), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(981), 1, sym_function_type, - STATE(9111), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(885), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619679,35 +616250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162493] = 13, + [162397] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2917), 2, + STATE(946), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619715,36 +616286,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162542] = 14, - ACTIONS(8672), 1, + [162446] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(814), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8605), 1, - sym__delegation_specifiers, - STATE(8625), 1, + STATE(981), 1, sym_function_type, - STATE(9549), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(867), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619752,35 +616322,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162593] = 13, + [162495] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2904), 2, + STATE(864), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619788,36 +616358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162642] = 14, - ACTIONS(211), 1, + [162544] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(814), 1, sym__simple_user_type, - STATE(4592), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(5324), 1, + STATE(981), 1, sym_function_type, - STATE(5524), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(909), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619825,35 +616394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162693] = 13, + [162593] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2902), 2, + STATE(998), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619861,36 +616430,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162742] = 14, + [162642] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(2904), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619898,35 +616466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162793] = 13, + [162691] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, + STATE(922), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619934,36 +616502,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162842] = 14, + [162740] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(2902), 1, - sym__delegation_specifiers, - STATE(2981), 1, - sym_delegation_specifier, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(884), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619971,36 +616538,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162893] = 14, - ACTIONS(8672), 1, + [162789] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(814), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(981), 1, sym_function_type, - STATE(8629), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(882), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620008,35 +616574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162944] = 13, + [162838] = 13, 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, + STATE(814), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(818), 1, sym_simple_identifier, - STATE(2900), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(905), 1, sym_user_type, - STATE(3042), 1, + STATE(981), 1, sym_function_type, - STATE(9798), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2898), 2, + STATE(865), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3153), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620044,35 +616610,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162993] = 13, - ACTIONS(115), 1, + [162887] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(905), 1, sym_user_type, - STATE(3363), 1, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3096), 2, + STATE(880), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620080,35 +616646,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163042] = 13, - ACTIONS(115), 1, + [162936] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(905), 1, sym_user_type, - STATE(3363), 1, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3081), 2, + STATE(883), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620116,35 +616682,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163091] = 13, - ACTIONS(115), 1, + [162985] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(814), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(818), 1, + sym_simple_identifier, + STATE(825), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(905), 1, sym_user_type, - STATE(3363), 1, + STATE(981), 1, sym_function_type, - STATE(9863), 1, + STATE(10109), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3078), 2, + STATE(924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(1044), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620152,35 +616718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163140] = 13, - ACTIONS(115), 1, + [163034] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3647), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(3363), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3068), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620188,36 +616755,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163189] = 14, - ACTIONS(9216), 1, + [163085] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7891), 1, - sym__simple_user_type, - STATE(8345), 1, + STATE(4673), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(5356), 1, sym_function_type, - STATE(8440), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620225,36 +616792,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163240] = 14, - ACTIONS(8672), 1, + [163136] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(3622), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(8587), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(8625), 1, + STATE(3808), 1, sym_function_type, - STATE(8632), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620262,36 +616829,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163291] = 14, - ACTIONS(211), 1, + [163187] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(4617), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(8335), 1, sym_user_type, - STATE(5324), 1, - sym_function_type, - STATE(5524), 1, + STATE(8404), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620299,33 +616866,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163342] = 14, - ACTIONS(211), 1, + [163238] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4581), 1, + STATE(4597), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(5269), 1, sym_user_type, - STATE(5324), 1, + STATE(5356), 1, sym_function_type, - STATE(5524), 1, + STATE(5530), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -620336,35 +616903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163393] = 13, - ACTIONS(115), 1, + [163289] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3665), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(3363), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3139), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620372,35 +616940,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163442] = 13, - ACTIONS(115), 1, + [163340] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(5269), 1, sym_user_type, - STATE(3363), 1, + STATE(5356), 1, sym_function_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3142), 2, + STATE(4597), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620408,35 +616976,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163491] = 13, - ACTIONS(115), 1, + [163389] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(3363), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8441), 1, sym_function_type, - STATE(9863), 1, + STATE(8442), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3202), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620444,36 +617013,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163540] = 14, - ACTIONS(211), 1, + [163440] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4615), 1, + STATE(3644), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(3688), 1, sym_user_type, - STATE(5324), 1, - sym_function_type, - STATE(5524), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(3808), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620481,35 +617050,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163591] = 13, - ACTIONS(115), 1, + [163491] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3069), 1, + STATE(8399), 1, sym_user_type, - STATE(3363), 1, + STATE(8543), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9863), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3208), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620517,33 +617087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163640] = 14, - ACTIONS(211), 1, + [163542] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4583), 1, - sym__delegation_specifiers, - STATE(5273), 1, + STATE(5269), 1, sym_user_type, - STATE(5324), 1, + STATE(5356), 1, sym_function_type, - STATE(5524), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4673), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -620554,35 +617123,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163691] = 13, - ACTIONS(115), 1, + [163591] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3645), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(3363), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3341), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620590,36 +617160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163740] = 14, - ACTIONS(211), 1, + [163642] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4606), 1, + STATE(3651), 1, sym__delegation_specifiers, - STATE(5273), 1, + STATE(3688), 1, sym_user_type, - STATE(5324), 1, - sym_function_type, - STATE(5524), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(3808), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620627,35 +617197,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163791] = 13, - ACTIONS(115), 1, + [163693] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3654), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(3363), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3253), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620663,35 +617234,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163840] = 13, - ACTIONS(115), 1, + [163744] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3069), 1, + STATE(8399), 1, sym_user_type, - STATE(3363), 1, + STATE(8519), 1, + sym__delegation_specifiers, + STATE(8599), 1, sym_function_type, - STATE(9863), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3125), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620699,36 +617271,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163889] = 14, - ACTIONS(115), 1, + [163795] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3688), 1, sym_user_type, - STATE(3202), 1, + STATE(3792), 1, sym__delegation_specifiers, - STATE(3363), 1, - sym_function_type, - STATE(3629), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(3808), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620736,36 +617308,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163940] = 14, - ACTIONS(557), 1, + [163846] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2900), 1, + STATE(3674), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(2981), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(3028), 1, - sym__delegation_specifiers, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620773,32 +617345,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163991] = 13, - ACTIONS(211), 1, + [163897] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4607), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4602), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -620809,36 +617382,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164040] = 14, - ACTIONS(9216), 1, + [163948] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7891), 1, - sym__simple_user_type, - STATE(8345), 1, + STATE(4609), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(5356), 1, sym_function_type, - STATE(8443), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620846,35 +617419,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164091] = 13, - ACTIONS(211), 1, + [163999] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(3614), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(4680), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9487), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4690), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620882,36 +617456,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164140] = 14, - ACTIONS(8672), 1, + [164050] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(3672), 1, + sym__delegation_specifiers, + STATE(3688), 1, sym_user_type, - STATE(8587), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(8622), 1, - sym__delegation_specifiers, - STATE(8625), 1, + STATE(3808), 1, sym_function_type, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620919,35 +617493,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164191] = 13, - ACTIONS(115), 1, + [164101] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(5269), 1, sym_user_type, - STATE(3363), 1, + STATE(5356), 1, sym_function_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3117), 2, + STATE(4585), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620955,35 +617529,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164240] = 13, - ACTIONS(115), 1, + [164150] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3688), 1, sym_user_type, - STATE(3363), 1, + STATE(3804), 1, + sym_delegation_specifier, + STATE(3808), 1, sym_function_type, - STATE(9863), 1, + STATE(3818), 1, + sym__delegation_specifiers, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3312), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620991,32 +617566,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164289] = 13, - ACTIONS(211), 1, + [164201] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4589), 2, + STATE(4594), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621027,32 +617602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164338] = 13, - ACTIONS(211), 1, + [164250] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4601), 2, + STATE(4610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621063,36 +617638,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164387] = 14, - ACTIONS(557), 1, + [164299] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2898), 1, + STATE(3628), 1, sym__delegation_specifiers, - STATE(2900), 1, + STATE(3688), 1, sym_user_type, - STATE(2981), 1, + STATE(3804), 1, sym_delegation_specifier, - STATE(3042), 1, + STATE(3808), 1, sym_function_type, - STATE(9798), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621100,36 +617675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164438] = 14, - ACTIONS(8672), 1, + [164350] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8125), 1, - sym__simple_user_type, - STATE(8394), 1, + STATE(4584), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8619), 1, - sym__delegation_specifiers, - STATE(8625), 1, + STATE(4695), 1, sym_function_type, - STATE(9549), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(4662), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621137,36 +617711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164489] = 14, - ACTIONS(9216), 1, + [164399] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7891), 1, - sym__simple_user_type, - STATE(8345), 1, + STATE(4583), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(5356), 1, sym_function_type, - STATE(8435), 1, - sym__delegation_specifiers, - STATE(10143), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621174,35 +617748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164540] = 13, - ACTIONS(115), 1, + [164450] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4616), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(3363), 1, + STATE(5356), 1, sym_function_type, - STATE(9863), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3070), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621210,36 +617785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164589] = 14, - ACTIONS(115), 1, + [164501] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3096), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(8399), 1, sym_user_type, - STATE(4132), 1, + STATE(8599), 1, sym_function_type, - STATE(4217), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9424), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621247,36 +617822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164640] = 14, - ACTIONS(387), 1, + [164552] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(915), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(4584), 1, sym_user_type, - STATE(929), 1, + STATE(4695), 1, sym_function_type, - STATE(975), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4609), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621284,32 +617858,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164691] = 13, - ACTIONS(211), 1, + [164601] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4600), 2, + STATE(4607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621320,32 +617894,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164740] = 13, - ACTIONS(211), 1, + [164650] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4590), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4681), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621356,36 +617931,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164789] = 14, - ACTIONS(8672), 1, + [164701] = 14, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2882), 1, + sym__delegation_specifiers, + STATE(3776), 1, sym_user_type, - STATE(8587), 1, + STATE(3909), 1, sym_delegation_specifier, - STATE(8625), 1, + STATE(3962), 1, sym_function_type, - STATE(9442), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621393,32 +617968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164840] = 13, - ACTIONS(211), 1, + [164752] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4582), 1, + sym__delegation_specifiers, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4590), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621429,35 +618005,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164889] = 13, - ACTIONS(211), 1, + [164803] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(8335), 1, sym_user_type, - STATE(4680), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8426), 1, + sym__delegation_specifiers, + STATE(8441), 1, sym_function_type, - STATE(9487), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4592), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621465,36 +618042,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164938] = 14, - ACTIONS(115), 1, + [164854] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3081), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(4132), 1, - sym_function_type, - STATE(4217), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8441), 1, + sym_function_type, + STATE(8915), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621502,36 +618079,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164989] = 14, - ACTIONS(115), 1, + [164905] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3078), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(4132), 1, - sym_function_type, - STATE(4217), 1, + STATE(8412), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621539,36 +618116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165040] = 14, - ACTIONS(387), 1, + [164956] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(910), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(4584), 1, sym_user_type, - STATE(929), 1, + STATE(4695), 1, sym_function_type, - STATE(975), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4597), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621576,24 +618152,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165091] = 13, - ACTIONS(211), 1, + [165005] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(4584), 1, + sym_user_type, + STATE(4695), 1, + sym_function_type, + STATE(9697), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4673), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 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, + [165054] = 13, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4533), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, @@ -621601,7 +618213,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4617), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621612,32 +618224,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165140] = 13, - ACTIONS(211), 1, + [165103] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4581), 2, + STATE(4585), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621648,36 +618260,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165189] = 14, - ACTIONS(115), 1, + [165152] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, sym_user_type, - STATE(3142), 1, - sym__delegation_specifiers, - STATE(3363), 1, + STATE(4695), 1, sym_function_type, - STATE(3629), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4594), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621685,32 +618296,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165240] = 13, - ACTIONS(211), 1, + [165201] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(5269), 1, sym_user_type, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4615), 2, + STATE(4583), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621721,36 +618332,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165289] = 14, - ACTIONS(115), 1, + [165250] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3068), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(4132), 1, - sym_function_type, - STATE(4217), 1, + STATE(8414), 1, + sym__delegation_specifiers, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621758,36 +618369,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165340] = 14, - ACTIONS(115), 1, + [165301] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(3139), 1, - sym__delegation_specifiers, - STATE(3363), 1, - sym_function_type, - STATE(3629), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8441), 1, + sym_function_type, + STATE(8858), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621795,32 +618406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165391] = 13, - ACTIONS(211), 1, + [165352] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4583), 2, + STATE(4617), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621831,32 +618442,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165440] = 13, - ACTIONS(211), 1, + [165401] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4606), 2, + STATE(4583), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -621867,36 +618478,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165489] = 14, - ACTIONS(9216), 1, + [165450] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(7891), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(8345), 1, + STATE(8335), 1, sym_user_type, - STATE(8408), 1, - sym__delegation_specifiers, STATE(8418), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(8441), 1, sym_function_type, - STATE(10143), 1, + STATE(8996), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621904,36 +618515,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165540] = 14, - ACTIONS(8672), 1, + [165501] = 13, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, + sym_user_type, + STATE(4695), 1, + sym_function_type, + STATE(9697), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4616), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 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, + [165550] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(8399), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(8599), 1, sym_function_type, - STATE(8925), 1, + STATE(8613), 1, + sym_delegation_specifier, + STATE(9213), 1, sym__delegation_specifiers, - STATE(9549), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621941,36 +618588,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165591] = 14, - ACTIONS(115), 1, + [165601] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3139), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3628), 1, sym__delegation_specifiers, - STATE(4049), 1, + STATE(4221), 1, sym_user_type, - STATE(4132), 1, - sym_function_type, - STATE(4217), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621978,32 +618625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165642] = 13, - ACTIONS(211), 1, + [165652] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4597), 2, + STATE(4590), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -622014,36 +618661,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165691] = 14, - ACTIONS(115), 1, + [165701] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3068), 1, - sym__delegation_specifiers, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, sym_user_type, - STATE(3363), 1, + STATE(4695), 1, sym_function_type, - STATE(3629), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4591), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622051,36 +618697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165742] = 14, - ACTIONS(7), 1, + [165750] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4911), 1, + STATE(3088), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(4093), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(4104), 1, sym_function_type, - STATE(9846), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622088,36 +618734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165793] = 14, - ACTIONS(387), 1, + [165801] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(825), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(869), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(8399), 1, sym_user_type, - STATE(929), 1, + STATE(8599), 1, sym_function_type, - STATE(975), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(8921), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622125,36 +618771,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165844] = 14, - ACTIONS(387), 1, + [165852] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(825), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(886), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(8335), 1, sym_user_type, - STATE(929), 1, - sym_function_type, - STATE(975), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(8429), 1, + sym__delegation_specifiers, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622162,36 +618808,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165895] = 14, - ACTIONS(115), 1, + [165903] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, sym_user_type, - STATE(3078), 1, - sym__delegation_specifiers, - STATE(3363), 1, + STATE(4695), 1, sym_function_type, - STATE(3629), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4582), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622199,36 +618844,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165946] = 14, - ACTIONS(7), 1, + [165952] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4922), 1, + STATE(3060), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(4093), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(4104), 1, sym_function_type, - STATE(9846), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622236,36 +618881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165997] = 14, - ACTIONS(7), 1, + [166003] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4923), 1, - sym__delegation_specifiers, - STATE(5500), 1, + STATE(8335), 1, sym_user_type, - STATE(5551), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(5557), 1, + STATE(8441), 1, sym_function_type, - STATE(9846), 1, + STATE(8913), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622273,36 +618918,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166048] = 14, - ACTIONS(115), 1, + [166054] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, - sym_user_type, - STATE(3081), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3818), 1, sym__delegation_specifiers, - STATE(3363), 1, - sym_function_type, - STATE(3629), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622310,36 +618955,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166099] = 14, - ACTIONS(7), 1, + [166105] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4928), 1, + STATE(4662), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5269), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5356), 1, sym_function_type, - STATE(9846), 1, + STATE(5530), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622347,36 +618992,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166150] = 14, - ACTIONS(7), 1, + [166156] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4907), 1, + STATE(3672), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(4221), 1, sym_user_type, - STATE(5551), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(5557), 1, + STATE(4248), 1, sym_function_type, - STATE(9846), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622384,36 +619029,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166201] = 14, - ACTIONS(7), 1, + [166207] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4944), 1, - sym__delegation_specifiers, - STATE(5500), 1, + STATE(8335), 1, sym_user_type, - STATE(5551), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(5557), 1, + STATE(8441), 1, sym_function_type, - STATE(9846), 1, + STATE(8455), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622421,36 +619066,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166252] = 14, - ACTIONS(8672), 1, + [166258] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8125), 1, - sym__simple_user_type, - STATE(8394), 1, + STATE(5269), 1, sym_user_type, - STATE(8559), 1, - sym__delegation_specifiers, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(5356), 1, sym_function_type, - STATE(9549), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(4590), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622458,36 +619102,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166303] = 14, - ACTIONS(7), 1, + [166307] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4952), 1, + STATE(3076), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(4093), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(4104), 1, sym_function_type, - STATE(9846), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622495,36 +619139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166354] = 14, - ACTIONS(7), 1, + [166358] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(4683), 1, - sym_simple_identifier, - STATE(4955), 1, + STATE(3614), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(4221), 1, sym_user_type, - STATE(5551), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(5557), 1, + STATE(4248), 1, sym_function_type, - STATE(9846), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622532,36 +619176,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166405] = 14, - ACTIONS(115), 1, + [166409] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(3096), 1, - sym__delegation_specifiers, - STATE(3363), 1, - sym_function_type, - STATE(3629), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8441), 1, + sym_function_type, + STATE(8443), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622569,36 +619213,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166456] = 14, - ACTIONS(115), 1, + [166460] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(3202), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, sym_user_type, - STATE(4132), 1, - sym_function_type, - STATE(4217), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(8438), 1, + sym__delegation_specifiers, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622606,36 +619250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166507] = 14, - ACTIONS(387), 1, + [166511] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(907), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(5269), 1, sym_user_type, - STATE(929), 1, + STATE(5356), 1, sym_function_type, - STATE(975), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4591), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622643,36 +619286,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166558] = 14, - ACTIONS(211), 1, + [166560] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4587), 1, - sym_user_type, - STATE(4602), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3072), 1, sym__delegation_specifiers, - STATE(4680), 1, + STATE(4093), 1, + sym_user_type, + STATE(4104), 1, sym_function_type, - STATE(4909), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622680,36 +619323,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166609] = 14, - ACTIONS(387), 1, + [166611] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(908), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3069), 1, sym__delegation_specifiers, - STATE(925), 1, + STATE(4093), 1, sym_user_type, - STATE(929), 1, + STATE(4104), 1, sym_function_type, - STATE(975), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622717,36 +619360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166660] = 14, - ACTIONS(211), 1, + [166662] = 14, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(8335), 1, sym_user_type, - STATE(4680), 1, + STATE(8418), 1, + sym_delegation_specifier, + STATE(8441), 1, sym_function_type, - STATE(4690), 1, + STATE(8457), 1, sym__delegation_specifiers, - STATE(4909), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622754,36 +619397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166711] = 14, - ACTIONS(387), 1, + [166713] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(919), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4896), 1, sym__delegation_specifiers, - STATE(925), 1, + STATE(4911), 1, sym_user_type, - STATE(929), 1, - sym_function_type, - STATE(975), 1, + STATE(5020), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(5063), 1, + sym_function_type, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622791,36 +619434,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166762] = 14, - ACTIONS(387), 1, + [166764] = 14, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(825), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(920), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(4944), 1, sym_user_type, - STATE(929), 1, + STATE(4993), 1, sym_function_type, - STATE(975), 1, + STATE(5006), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(5043), 1, + sym__delegation_specifiers, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622828,36 +619471,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166813] = 14, - ACTIONS(115), 1, + [166815] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3341), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, sym_user_type, - STATE(4132), 1, + STATE(4610), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(4217), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622865,36 +619508,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166864] = 14, - ACTIONS(115), 1, + [166866] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3253), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4610), 1, sym__delegation_specifiers, - STATE(4049), 1, + STATE(5269), 1, sym_user_type, - STATE(4132), 1, + STATE(5356), 1, sym_function_type, - STATE(4217), 1, + STATE(5530), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622902,36 +619545,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166915] = 14, - ACTIONS(387), 1, + [166917] = 14, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + STATE(4584), 1, sym_user_type, - STATE(929), 1, - sym_function_type, - STATE(930), 1, + STATE(4662), 1, sym__delegation_specifiers, - STATE(975), 1, + STATE(4695), 1, + sym_function_type, + STATE(4920), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622939,36 +619582,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166966] = 14, - ACTIONS(211), 1, + [166968] = 14, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(8399), 1, sym_user_type, - STATE(4589), 1, + STATE(8505), 1, sym__delegation_specifiers, - STATE(4680), 1, + STATE(8599), 1, sym_function_type, - STATE(4909), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622976,33 +619619,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167017] = 14, - ACTIONS(211), 1, + [167019] = 13, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(5269), 1, sym_user_type, - STATE(4601), 1, - sym__delegation_specifiers, - STATE(4680), 1, + STATE(5356), 1, sym_function_type, - STATE(4909), 1, - sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4582), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -623014,35 +619656,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167068] = 14, - ACTIONS(387), 1, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(924), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3366), 1, sym__delegation_specifiers, - STATE(925), 1, + STATE(4093), 1, sym_user_type, - STATE(929), 1, + STATE(4104), 1, sym_function_type, - STATE(975), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623051,35 +619693,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167119] = 14, - ACTIONS(9216), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(7891), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8345), 1, - sym_user_type, - STATE(8417), 1, + STATE(3674), 1, sym__delegation_specifiers, - STATE(8418), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(4248), 1, sym_function_type, - STATE(10143), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623088,35 +619730,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167170] = 14, - ACTIONS(387), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(824), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(825), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(871), 1, + STATE(3792), 1, sym__delegation_specifiers, - STATE(925), 1, + STATE(4221), 1, sym_user_type, - STATE(929), 1, - sym_function_type, - STATE(975), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623125,35 +619767,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167221] = 14, - ACTIONS(387), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(868), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(4584), 1, sym_user_type, - STATE(929), 1, + STATE(4609), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(975), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623162,35 +619804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167272] = 14, - ACTIONS(387), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - STATE(925), 1, + STATE(4584), 1, sym_user_type, - STATE(929), 1, - sym_function_type, - STATE(932), 1, + STATE(4607), 1, sym__delegation_specifiers, - STATE(975), 1, + STATE(4695), 1, + sym_function_type, + STATE(4920), 1, sym_delegation_specifier, - STATE(9593), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623199,32 +619841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167323] = 14, - ACTIONS(473), 1, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3661), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3654), 1, sym__delegation_specifiers, - STATE(4199), 1, + STATE(4221), 1, sym_user_type, - STATE(4236), 1, - sym_function_type, - STATE(4243), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1652), 7, @@ -623236,35 +619878,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167374] = 14, - ACTIONS(211), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(8335), 1, sym_user_type, - STATE(4600), 1, - sym__delegation_specifiers, - STATE(4680), 1, - sym_function_type, - STATE(4909), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(8441), 1, + sym_function_type, + STATE(8705), 1, + sym__delegation_specifiers, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623273,35 +619915,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167425] = 14, - ACTIONS(211), 1, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3119), 1, + sym__delegation_specifiers, + STATE(4093), 1, sym_user_type, - STATE(4680), 1, + STATE(4104), 1, sym_function_type, - STATE(4681), 1, - sym__delegation_specifiers, - STATE(4909), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623309,36 +619951,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167476] = 14, - ACTIONS(387), 1, + [167476] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(894), 1, - sym__delegation_specifiers, - STATE(925), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(5521), 1, sym_user_type, - STATE(929), 1, + STATE(5573), 1, sym_function_type, - STATE(975), 1, - sym_delegation_specifier, - STATE(9593), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(4903), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623346,36 +619987,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167527] = 14, - ACTIONS(8672), 1, + [167525] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, - sym_user_type, - STATE(8562), 1, + STATE(3651), 1, sym__delegation_specifiers, - STATE(8587), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(8625), 1, + STATE(4248), 1, sym_function_type, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623383,36 +620024,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167578] = 14, - ACTIONS(211), 1, + [167576] = 14, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4587), 1, - sym_user_type, - STATE(4590), 1, + STATE(3645), 1, sym__delegation_specifiers, - STATE(4680), 1, - sym_function_type, - STATE(4909), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623420,33 +620061,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167629] = 14, - ACTIONS(211), 1, + [167627] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4592), 1, + STATE(4597), 1, sym__delegation_specifiers, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(4909), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -623457,32 +620098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167680] = 13, - ACTIONS(211), 1, + [167678] = 14, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(5273), 1, + STATE(4584), 1, sym_user_type, - STATE(5324), 1, + STATE(4673), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(9487), 1, + STATE(4920), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4602), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -623494,35 +620136,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167729] = 14, - ACTIONS(557), 1, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(7911), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2950), 1, - sym__delegation_specifiers, - STATE(3796), 1, + STATE(8335), 1, sym_user_type, - STATE(3939), 1, - sym_function_type, - STATE(3965), 1, + STATE(8418), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(8419), 1, + sym__delegation_specifiers, + STATE(8441), 1, + sym_function_type, + STATE(9806), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(8518), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623531,35 +620173,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167780] = 14, - ACTIONS(8672), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(8394), 1, - sym_user_type, - STATE(8550), 1, + STATE(3644), 1, sym__delegation_specifiers, - STATE(8587), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(8625), 1, + STATE(4248), 1, sym_function_type, - STATE(9549), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623568,35 +620210,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167831] = 14, - ACTIONS(557), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2947), 1, - sym__delegation_specifiers, - STATE(3796), 1, + STATE(4584), 1, sym_user_type, - STATE(3939), 1, + STATE(4585), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(3965), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623605,32 +620247,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167882] = 14, - ACTIONS(211), 1, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4617), 1, + STATE(4594), 1, sym__delegation_specifiers, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(4909), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -623642,35 +620284,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167933] = 14, - ACTIONS(211), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4581), 1, + STATE(3665), 1, sym__delegation_specifiers, - STATE(4587), 1, + STATE(4221), 1, sym_user_type, - STATE(4680), 1, - sym_function_type, - STATE(4909), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623679,35 +620321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [167984] = 14, - ACTIONS(557), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2898), 1, + STATE(3622), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, - sym_function_type, - STATE(3965), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623716,35 +620358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168035] = 14, - ACTIONS(211), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, sym__simple_user_type, - STATE(4587), 1, - sym_user_type, - STATE(4615), 1, + STATE(3647), 1, sym__delegation_specifiers, - STATE(4680), 1, - sym_function_type, - STATE(4909), 1, + STATE(4221), 1, + sym_user_type, + STATE(4233), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623753,35 +620395,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168086] = 14, - ACTIONS(557), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2946), 1, + STATE(5013), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623790,35 +620432,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168137] = 14, - ACTIONS(7), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4678), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(4958), 1, - sym__delegation_specifiers, - STATE(5500), 1, + STATE(4584), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(4617), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(9846), 1, + STATE(4920), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623827,32 +620469,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168188] = 14, - ACTIONS(211), 1, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, STATE(4583), 1, sym__delegation_specifiers, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(4909), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -623864,35 +620506,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168239] = 14, - ACTIONS(211), 1, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(4540), 1, + STATE(8029), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(8399), 1, sym_user_type, - STATE(4606), 1, - sym__delegation_specifiers, - STATE(4680), 1, + STATE(8599), 1, sym_function_type, - STATE(4909), 1, + STATE(8613), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9232), 1, + sym__delegation_specifiers, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(8767), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623901,35 +620543,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168290] = 14, - ACTIONS(557), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2796), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, sym_simple_identifier, - STATE(2942), 1, - sym__delegation_specifiers, - STATE(3796), 1, + STATE(4584), 1, sym_user_type, - STATE(3939), 1, + STATE(4616), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(3965), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623938,35 +620580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168341] = 14, - ACTIONS(557), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2936), 1, + STATE(4897), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623975,35 +620617,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168392] = 14, - ACTIONS(557), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2933), 1, + STATE(4965), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624012,35 +620654,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168443] = 14, - ACTIONS(115), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3125), 1, - sym__delegation_specifiers, - STATE(4049), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4584), 1, sym_user_type, - STATE(4132), 1, + STATE(4590), 1, + sym__delegation_specifiers, + STATE(4695), 1, sym_function_type, - STATE(4217), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624049,32 +620691,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168494] = 14, - ACTIONS(211), 1, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4540), 1, - sym__simple_user_type, - STATE(4587), 1, + STATE(4584), 1, sym_user_type, - STATE(4597), 1, + STATE(4591), 1, sym__delegation_specifiers, - STATE(4680), 1, + STATE(4695), 1, sym_function_type, - STATE(4909), 1, + STATE(4920), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, ACTIONS(1842), 7, @@ -624086,35 +620728,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168545] = 14, - ACTIONS(557), 1, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(3328), 1, sym__simple_user_type, - STATE(2803), 1, - sym_simple_identifier, - STATE(2925), 1, + STATE(3701), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(4221), 1, sym_user_type, - STATE(3939), 1, - sym_function_type, - STATE(3965), 1, + STATE(4233), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(4248), 1, + sym_function_type, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624129,29 +620771,29 @@ static const uint16_t ts_small_parse_table[] = { sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, STATE(2899), 1, - sym_simple_identifier, - STATE(2931), 1, sym__simple_user_type, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3117), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3122), 1, sym__delegation_specifiers, - STATE(4049), 1, + STATE(4093), 1, sym_user_type, - STATE(4132), 1, + STATE(4104), 1, sym_function_type, - STATE(4217), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9863), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624160,35 +620802,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168647] = 14, - ACTIONS(9216), 1, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(7891), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(8345), 1, - sym_user_type, - STATE(8418), 1, - sym_delegation_specifier, - STATE(8421), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3163), 1, sym__delegation_specifiers, - STATE(8422), 1, + STATE(4093), 1, + sym_user_type, + STATE(4104), 1, sym_function_type, - STATE(10143), 1, + STATE(4222), 1, + sym_delegation_specifier, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624203,29 +620845,29 @@ static const uint16_t ts_small_parse_table[] = { sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(5062), 1, + STATE(4954), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5521), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(5593), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624234,35 +620876,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168749] = 14, - ACTIONS(8672), 1, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(8125), 1, - sym__simple_user_type, - STATE(8394), 1, + STATE(4582), 1, + sym__delegation_specifiers, + STATE(4584), 1, sym_user_type, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(4695), 1, sym_function_type, - STATE(9050), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(4920), 1, + sym_delegation_specifier, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624271,35 +620913,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168800] = 14, - ACTIONS(557), 1, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(2924), 1, + STATE(3310), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(4093), 1, sym_user_type, - STATE(3939), 1, + STATE(4104), 1, sym_function_type, - STATE(3965), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624308,35 +620950,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168851] = 14, - ACTIONS(557), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(3011), 1, + STATE(4951), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624351,29 +620993,29 @@ static const uint16_t ts_small_parse_table[] = { sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(5019), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5521), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(5593), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624382,35 +621024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [168953] = 14, - ACTIONS(557), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2917), 1, + STATE(4903), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624419,35 +621061,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [169004] = 14, - ACTIONS(8672), 1, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(8394), 1, - sym_user_type, - STATE(8529), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4917), 1, sym__delegation_specifiers, - STATE(8587), 1, - sym_delegation_specifier, - STATE(8625), 1, + STATE(5521), 1, + sym_user_type, + STATE(5573), 1, sym_function_type, - STATE(9549), 1, + STATE(5593), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624462,66 +621104,29 @@ static const uint16_t ts_small_parse_table[] = { sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4896), 1, + STATE(4904), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5521), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5153), 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, - [169106] = 14, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(8125), 1, - sym__simple_user_type, - STATE(8394), 1, - sym_user_type, - STATE(8587), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(8625), 1, - sym_function_type, - STATE(9349), 1, - sym__delegation_specifiers, - STATE(9549), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624529,36 +621134,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169157] = 14, - ACTIONS(557), 1, + [169106] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2904), 1, + STATE(4946), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624566,36 +621171,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169208] = 14, - ACTIONS(557), 1, + [169157] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2902), 1, + STATE(4931), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(5521), 1, sym_user_type, - STATE(3939), 1, + STATE(5573), 1, sym_function_type, - STATE(3965), 1, + STATE(5593), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624603,36 +621208,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169259] = 14, + [169208] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(4900), 1, + STATE(4937), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5521), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(5593), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624640,36 +621245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169310] = 14, + [169259] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(4678), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(4683), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(5020), 1, + STATE(4957), 1, sym__delegation_specifiers, - STATE(5500), 1, + STATE(5521), 1, sym_user_type, - STATE(5551), 1, - sym_delegation_specifier, - STATE(5557), 1, + STATE(5573), 1, sym_function_type, - STATE(9846), 1, + STATE(5593), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5153), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624677,36 +621282,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169361] = 14, - ACTIONS(557), 1, + [169310] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(2796), 1, + STATE(2899), 1, sym__simple_user_type, - STATE(2803), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(3028), 1, + STATE(3124), 1, sym__delegation_specifiers, - STATE(3796), 1, + STATE(4093), 1, sym_user_type, - STATE(3939), 1, + STATE(4104), 1, sym_function_type, - STATE(3965), 1, + STATE(4222), 1, sym_delegation_specifier, - STATE(9798), 1, + STATE(9835), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3153), 2, + STATE(3410), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1910), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624714,34 +621319,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169412] = 13, - ACTIONS(9216), 1, + [169361] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(293), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(7891), 1, - sym__simple_user_type, - STATE(8345), 1, + STATE(5269), 1, sym_user_type, - STATE(8422), 1, + STATE(5356), 1, sym_function_type, - STATE(8571), 1, - sym_delegation_specifier, - STATE(10143), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8525), 2, + STATE(4616), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9220), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624749,32 +621355,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169460] = 11, - ACTIONS(9208), 1, + [169410] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10114), 2, + STATE(9916), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624782,32 +621388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169504] = 11, - ACTIONS(9208), 1, + [169454] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7140), 2, + STATE(7173), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10116), 2, + STATE(9927), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624815,91 +621421,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169548] = 8, - ACTIONS(9511), 1, - anon_sym_AT, - ACTIONS(9517), 1, - sym_reification_modifier, - ACTIONS(9520), 1, - sym__backtick_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9514), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [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, + [169498] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7202), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10118), 2, + STATE(10048), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624907,65 +621454,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169666] = 11, - ACTIONS(9208), 1, + [169542] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9505), 1, - anon_sym_AT, - ACTIONS(9507), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8333), 1, - sym__lexical_identifier, - STATE(9205), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7549), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10007), 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_expect, - anon_sym_actual, - [169710] = 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, + STATE(825), 1, sym__lexical_identifier, - STATE(9205), 1, - sym_simple_identifier, + STATE(905), 1, + sym_user_type, + STATE(981), 1, + sym_function_type, + STATE(1140), 1, + sym_delegation_specifier, + STATE(10109), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7161), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10121), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + STATE(1044), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624973,32 +621489,28 @@ 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, - ACTIONS(9214), 1, - sym__backtick_identifier, - ACTIONS(9505), 1, + [169590] = 8, + ACTIONS(9408), 1, anon_sym_AT, - ACTIONS(9507), 1, - anon_sym_LPAREN, - STATE(8333), 1, - sym__lexical_identifier, - STATE(9205), 1, - sym_simple_identifier, + ACTIONS(9511), 1, + sym_reification_modifier, + ACTIONS(9513), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7141), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + ACTIONS(9410), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10005), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + STATE(7163), 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, @@ -625006,34 +621518,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169798] = 13, - ACTIONS(9232), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + [169628] = 13, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(2778), 1, + sym__simple_user_type, + STATE(2782), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4548), 1, - sym__simple_user_type, - STATE(4939), 1, + STATE(3231), 1, + sym_delegation_specifier, + STATE(3776), 1, sym_user_type, - STATE(5032), 1, + STATE(3962), 1, sym_function_type, - STATE(5185), 1, - sym_delegation_specifier, - STATE(9741), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5137), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9236), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625041,32 +621554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169846] = 11, - ACTIONS(9208), 1, + [169676] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7136), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10113), 2, + STATE(9708), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625074,32 +621587,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169890] = 11, - ACTIONS(9208), 1, + [169720] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7147), 2, + STATE(7141), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10019), 2, + STATE(9705), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625107,32 +621620,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169934] = 11, - ACTIONS(9208), 1, + [169764] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10023), 2, + STATE(9516), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625140,32 +621653,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169978] = 11, - ACTIONS(9208), 1, + [169808] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7152), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10026), 2, + STATE(10045), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625173,34 +621686,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170022] = 13, - ACTIONS(115), 1, + [169852] = 13, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(814), 1, + sym__simple_user_type, + STATE(818), 1, sym_simple_identifier, - STATE(2931), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(1140), 1, + sym_delegation_specifier, + STATE(1401), 1, + sym_user_type, + STATE(1730), 1, + sym_function_type, + STATE(10109), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1044), 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, + [169900] = 13, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4533), 1, sym__simple_user_type, - STATE(2955), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3535), 1, + STATE(4547), 1, + sym_simple_identifier, + STATE(4699), 1, sym_delegation_specifier, - STATE(4049), 1, + STATE(5269), 1, sym_user_type, - STATE(4132), 1, + STATE(5356), 1, sym_function_type, - STATE(9863), 1, + STATE(9697), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(4800), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625208,20 +621756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170070] = 5, - ACTIONS(9533), 1, - anon_sym_LT, - STATE(7246), 1, - sym_type_arguments, + [169948] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(4035), 5, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4128), 13, + ACTIONS(4030), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -625235,32 +621782,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [170102] = 11, - ACTIONS(9208), 1, + [169978] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7149), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10111), 2, + STATE(10024), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625268,32 +621815,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170146] = 11, - ACTIONS(9208), 1, + [170022] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10029), 2, + STATE(9766), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625301,67 +621848,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170190] = 11, - ACTIONS(9208), 1, + [170066] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7151), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10110), 2, + STATE(9485), 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_expect, - anon_sym_actual, - [170234] = 13, - 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(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(5153), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625369,32 +621881,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170282] = 11, - ACTIONS(9208), 1, + [170110] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7158), 2, + STATE(7153), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10033), 2, + STATE(9778), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625402,67 +621914,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170326] = 13, - ACTIONS(473), 1, + [170154] = 13, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 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, + STATE(6386), 1, sym__lexical_identifier, - STATE(3609), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(8029), 1, + sym__simple_user_type, + STATE(8399), 1, sym_user_type, - STATE(3825), 1, + STATE(8599), 1, sym_function_type, - STATE(3961), 1, + STATE(8787), 1, sym_delegation_specifier, - STATE(9976), 1, + STATE(9520), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, + STATE(8767), 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, - [170374] = 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, - STATE(7549), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10107), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625470,32 +621949,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170418] = 11, - ACTIONS(9208), 1, + [170202] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10035), 2, + STATE(9794), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625503,32 +621982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170462] = 11, - ACTIONS(9208), 1, + [170246] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7162), 2, + STATE(7157), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10040), 2, + STATE(9808), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625536,34 +622015,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170506] = 13, - ACTIONS(211), 1, + [170290] = 13, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(467), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4540), 1, + STATE(2778), 1, sym__simple_user_type, - STATE(4587), 1, + STATE(2782), 1, + sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2937), 1, sym_user_type, - STATE(4680), 1, + STATE(3000), 1, sym_function_type, - STATE(4737), 1, + STATE(3231), 1, sym_delegation_specifier, - STATE(9487), 1, + STATE(9974), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, + STATE(3158), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625571,32 +622050,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170554] = 11, - ACTIONS(9208), 1, + [170338] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10122), 2, + STATE(9694), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625604,32 +622083,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170598] = 11, - ACTIONS(9208), 1, + [170382] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10042), 2, + STATE(9811), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625637,28 +622116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170642] = 8, - ACTIONS(9420), 1, - anon_sym_AT, - ACTIONS(9537), 1, - sym_reification_modifier, - ACTIONS(9539), 1, + [170426] = 11, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8323), 1, + sym__lexical_identifier, + STATE(9417), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, - anon_sym_in, - anon_sym_out, - STATE(7628), 2, + STATE(7159), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7138), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9535), 8, + STATE(9825), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625666,33 +622149,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170470] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - [170680] = 11, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7166), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10126), 2, + STATE(9851), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625700,32 +622182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170724] = 11, - ACTIONS(9208), 1, + [170514] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7169), 2, + STATE(7161), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10045), 2, + STATE(9874), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625733,32 +622215,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170768] = 11, - ACTIONS(9208), 1, + [170558] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10127), 2, + STATE(9887), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625766,32 +622248,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170812] = 11, - ACTIONS(9208), 1, + [170602] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7168), 2, + STATE(7164), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10137), 2, + STATE(9777), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625799,32 +622281,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170856] = 11, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9214), 1, - sym__backtick_identifier, - ACTIONS(9505), 1, + [170646] = 8, + ACTIONS(9517), 1, anon_sym_AT, - ACTIONS(9507), 1, - anon_sym_LPAREN, - STATE(8333), 1, - sym__lexical_identifier, - STATE(9205), 1, - sym_simple_identifier, + ACTIONS(9523), 1, + sym_reification_modifier, + ACTIONS(9526), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + ACTIONS(9520), 2, + anon_sym_in, + anon_sym_out, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10139), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + STATE(7163), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9515), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625832,32 +622310,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170900] = 11, - ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + [170684] = 11, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10048), 2, + STATE(9903), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625865,32 +622344,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170944] = 11, - ACTIONS(9208), 1, + [170728] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7173), 2, + STATE(7166), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10051), 2, + STATE(9907), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625898,32 +622377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170988] = 11, - ACTIONS(9208), 1, + [170772] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7172), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10141), 2, + STATE(9909), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625931,32 +622410,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171032] = 11, - ACTIONS(9208), 1, + [170816] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7135), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10142), 2, + STATE(9914), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625964,65 +622443,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171076] = 11, - ACTIONS(9208), 1, + [170860] = 13, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9505), 1, - anon_sym_AT, - ACTIONS(9507), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8333), 1, - sym__lexical_identifier, - STATE(9205), 1, + STATE(5687), 1, sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, + STATE(7911), 1, + sym__simple_user_type, + STATE(8335), 1, + sym_user_type, + STATE(8441), 1, + sym_function_type, + STATE(8627), 1, + sym_delegation_specifier, + STATE(9806), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + STATE(8518), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [170908] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 6, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4894), 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, - [171120] = 11, - ACTIONS(9208), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + [170936] = 11, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7175), 2, + STATE(7171), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10055), 2, + STATE(9921), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626030,32 +622536,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171164] = 11, - ACTIONS(9208), 1, + [170980] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10058), 2, + STATE(9922), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626063,32 +622569,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171208] = 11, - ACTIONS(9208), 1, + [171024] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7177), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10061), 2, + STATE(10036), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626096,32 +622602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171252] = 11, - ACTIONS(9208), 1, + [171068] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10062), 2, + STATE(9929), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626129,32 +622635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171296] = 11, - ACTIONS(9208), 1, + [171112] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7179), 2, + STATE(7178), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10071), 2, + STATE(9932), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626162,32 +622668,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171340] = 11, - ACTIONS(9208), 1, + [171156] = 7, + ACTIONS(6726), 1, + anon_sym_LBRACK, + STATE(7619), 1, + sym__member_access_operator, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(6750), 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(7203), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9528), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [171192] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9505), 1, - anon_sym_AT, - ACTIONS(9507), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(2899), 1, + sym__simple_user_type, + STATE(2942), 1, sym_simple_identifier, + STATE(3409), 1, + sym_delegation_specifier, + STATE(4093), 1, + sym_user_type, + STATE(4104), 1, + sym_function_type, + STATE(9835), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10072), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + STATE(3410), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626195,32 +622732,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171384] = 11, - ACTIONS(9208), 1, + [171240] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7181), 2, + STATE(7156), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10089), 2, + STATE(9689), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626228,92 +622765,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171428] = 11, - ACTIONS(9208), 1, + [171284] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10076), 2, + STATE(9934), 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_expect, - anon_sym_actual, - [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, + ACTIONS(9278), 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, + [171328] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - [171500] = 13, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(9417), 1, sym_simple_identifier, - STATE(825), 1, - sym__simple_user_type, - 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(1030), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, + STATE(7181), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9938), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626321,34 +622831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171548] = 13, - ACTIONS(8672), 1, + [171372] = 13, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9238), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(8125), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4578), 1, sym__simple_user_type, - STATE(8394), 1, + STATE(4944), 1, sym_user_type, - STATE(8625), 1, + STATE(4993), 1, sym_function_type, - STATE(8678), 1, + STATE(5142), 1, sym_delegation_specifier, - STATE(9549), 1, + STATE(10058), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8643), 2, + STATE(5148), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8682), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626356,93 +622866,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171596] = 11, - ACTIONS(9208), 1, + [171420] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 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(7189), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10084), 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_expect, - anon_sym_actual, - [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, - [171670] = 13, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(2791), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(9417), 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(3153), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7473), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9962), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626450,32 +622899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171718] = 11, - ACTIONS(9208), 1, + [171464] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7157), 2, + STATE(7183), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10106), 2, + STATE(9972), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626483,32 +622932,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171762] = 11, - ACTIONS(9208), 1, + [171508] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10085), 2, + STATE(9991), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626516,32 +622965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171806] = 11, - ACTIONS(9208), 1, + [171552] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7202), 2, + STATE(7185), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(9601), 2, + STATE(10001), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626549,32 +622998,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171850] = 11, - ACTIONS(9208), 1, + [171596] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7210), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10011), 2, + STATE(10007), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626582,32 +623031,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171894] = 11, - ACTIONS(9208), 1, + [171640] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7194), 2, + STATE(7188), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(9965), 2, + STATE(10017), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626615,34 +623064,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171938] = 13, - ACTIONS(115), 1, + [171684] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(3314), 1, sym_simple_identifier, - STATE(2931), 1, - sym__simple_user_type, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3069), 1, + STATE(3328), 1, + sym__simple_user_type, + STATE(3846), 1, + sym_delegation_specifier, + STATE(4221), 1, sym_user_type, - STATE(3363), 1, + STATE(4248), 1, sym_function_type, - STATE(3535), 1, - sym_delegation_specifier, - STATE(9863), 1, + STATE(9630), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3599), 2, + STATE(3940), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626650,32 +623099,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171986] = 11, - ACTIONS(9208), 1, + [171732] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(9968), 2, + STATE(10018), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626683,34 +623132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172030] = 13, - ACTIONS(7), 1, + [171776] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(4678), 1, - sym__simple_user_type, - STATE(4683), 1, + STATE(9417), 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(5153), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7473), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10081), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626718,69 +623165,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172078] = 13, - ACTIONS(211), 1, - sym__alpha_identifier, - 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(4540), 1, - sym__simple_user_type, - 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, + [171820] = 5, + ACTIONS(9532), 1, + anon_sym_LT, + STATE(7235), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4792), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(4161), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4159), 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, - [172126] = 13, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [171852] = 13, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(824), 1, - sym_simple_identifier, - STATE(825), 1, + STATE(4624), 1, sym__simple_user_type, - STATE(1161), 1, - sym_delegation_specifier, - STATE(1397), 1, + STATE(4679), 1, + sym_simple_identifier, + STATE(4911), 1, sym_user_type, - STATE(1684), 1, + STATE(5063), 1, sym_function_type, - STATE(9593), 1, + STATE(5237), 1, + sym_delegation_specifier, + STATE(9525), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1030), 2, + STATE(5130), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626788,32 +623227,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172174] = 11, - ACTIONS(9208), 1, + [171900] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7195), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10099), 2, + STATE(10022), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626821,32 +623260,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172218] = 11, - ACTIONS(9208), 1, + [171944] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7198), 2, + STATE(7189), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10098), 2, + STATE(10080), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626854,32 +623293,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172262] = 11, - ACTIONS(9208), 1, + [171988] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10095), 2, + STATE(10078), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626887,32 +623326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172306] = 11, - ACTIONS(9208), 1, + [172032] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10103), 2, + STATE(10023), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626920,32 +623359,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172350] = 11, - ACTIONS(9208), 1, + [172076] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7194), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(9733), 2, + STATE(10077), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626953,32 +623392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172394] = 11, - ACTIONS(9208), 1, + [172120] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7207), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10152), 2, + STATE(10067), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626986,32 +623425,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172438] = 11, - ACTIONS(9208), 1, + [172164] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7200), 2, + STATE(7143), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10094), 2, + STATE(9751), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627019,18 +623458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172482] = 11, - ACTIONS(9208), 1, + [172208] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -627038,13 +623477,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(7201), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10102), 2, + STATE(10026), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627052,34 +623491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172526] = 13, - ACTIONS(557), 1, + [172252] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(2796), 1, - sym__simple_user_type, - STATE(2803), 1, + STATE(9417), 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(3153), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1910), 7, + STATE(7197), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10062), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627087,32 +623524,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172574] = 11, - ACTIONS(9208), 1, + [172296] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9282), 1, sym__backtick_identifier, ACTIONS(9505), 1, anon_sym_AT, ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, + STATE(7473), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(10091), 2, + STATE(10028), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9210), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627120,34 +623557,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172618] = 13, - ACTIONS(473), 1, + [172340] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - STATE(3279), 1, - sym__simple_user_type, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + STATE(8323), 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, + STATE(9417), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3888), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, + STATE(7473), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10057), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627155,61 +623590,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172666] = 7, - ACTIONS(6716), 1, + [172384] = 7, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7730), 1, + STATE(7619), 1, sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(6740), 3, + ACTIONS(9537), 3, sym_safe_nav, anon_sym_DOT, anon_sym_COLON_COLON, - ACTIONS(9543), 3, + ACTIONS(9542), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, - STATE(7139), 5, + STATE(7203), 5, sym_indexing_suffix, sym_navigation_suffix, sym__postfix_unary_operator, sym__postfix_unary_suffix, aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9541), 6, + ACTIONS(9540), 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, + [172420] = 13, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9505), 1, - anon_sym_AT, - ACTIONS(9507), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8333), 1, + STATE(4533), 1, + sym__simple_user_type, + STATE(4543), 1, sym__lexical_identifier, - STATE(9205), 1, + STATE(4547), 1, sym_simple_identifier, + STATE(4584), 1, + sym_user_type, + STATE(4695), 1, + sym_function_type, + STATE(4699), 1, + sym_delegation_specifier, + STATE(9697), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7549), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10014), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9210), 7, + STATE(4800), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627217,52 +623654,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172746] = 5, + [172468] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(2899), 1, + sym__simple_user_type, + STATE(2942), 1, + sym_simple_identifier, + STATE(3229), 1, + sym_user_type, + STATE(3294), 1, + sym_function_type, + STATE(3409), 1, + sym_delegation_specifier, + STATE(9835), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + STATE(3410), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1624), 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, + [172516] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - [172777] = 7, - ACTIONS(9554), 1, - anon_sym_AT, - ACTIONS(9560), 1, + ACTIONS(9282), 1, sym__backtick_identifier, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8323), 1, + sym__lexical_identifier, + STATE(9417), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7172), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 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, + STATE(9902), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627270,110 +623722,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [172560] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - [172812] = 7, - ACTIONS(9564), 1, + ACTIONS(9282), 1, + sym__backtick_identifier, + ACTIONS(9505), 1, anon_sym_AT, - ACTIONS(9569), 1, - anon_sym_suspend, + ACTIONS(9507), 1, + anon_sym_LPAREN, + STATE(8323), 1, + sym__lexical_identifier, + STATE(9417), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9567), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7848), 2, + STATE(7150), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - STATE(7219), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9562), 9, + STATE(9470), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 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, + [172604] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - [172847] = 5, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4619), 1, + sym__lexical_identifier, + STATE(4624), 1, + sym__simple_user_type, + STATE(4679), 1, + sym_simple_identifier, + STATE(5237), 1, + sym_delegation_specifier, + STATE(5521), 1, + sym_user_type, + STATE(5573), 1, + sym_function_type, + STATE(9525), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + STATE(5130), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1908), 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, + [172652] = 13, + ACTIONS(471), 1, sym__alpha_identifier, - [172878] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3328), 1, + sym__simple_user_type, + STATE(3688), 1, + sym_user_type, + STATE(3808), 1, + sym_function_type, + STATE(3846), 1, + sym_delegation_specifier, + STATE(9630), 1, + sym_function_type_parameters, 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, + STATE(3940), 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, + [172700] = 11, + ACTIONS(9276), 1, sym__alpha_identifier, - [172905] = 11, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9329), 1, + ACTIONS(9505), 1, + anon_sym_AT, + ACTIONS(9507), 1, anon_sym_LPAREN, - ACTIONS(9576), 1, - anon_sym_dynamic, - STATE(6224), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(9417), 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(7856), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8682), 7, + STATE(7144), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10043), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627381,45 +623858,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172948] = 7, - ACTIONS(9105), 1, - anon_sym_AT, - ACTIONS(9578), 1, - anon_sym_suspend, + [172744] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9567), 2, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, 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, + ACTIONS(4030), 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, - [172983] = 3, + [172771] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 5, + ACTIONS(7439), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9547), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4179), 13, + STATE(7217), 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, @@ -627427,31 +623905,28 @@ 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, - [173010] = 7, - ACTIONS(9582), 1, + [172802] = 7, + ACTIONS(9100), 1, anon_sym_AT, - ACTIONS(9587), 1, + ACTIONS(9553), 1, anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9585), 2, + ACTIONS(9551), 2, anon_sym_LPAREN, sym__backtick_identifier, - STATE(7848), 2, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, STATE(7219), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9580), 9, + ACTIONS(9549), 9, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627461,19 +623936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173045] = 5, - ACTIONS(9590), 1, + [172837] = 5, + ACTIONS(9555), 1, anon_sym_DOT, - STATE(7222), 1, + STATE(7214), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 3, + ACTIONS(4173), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4193), 13, + ACTIONS(4171), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627487,19 +623962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173076] = 5, - ACTIONS(9592), 1, + [172868] = 5, + ACTIONS(9558), 1, anon_sym_DOT, - STATE(7221), 1, + STATE(7223), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 3, + ACTIONS(4141), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4166), 13, + ACTIONS(4139), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627513,19 +623988,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173107] = 5, - ACTIONS(9590), 1, - anon_sym_DOT, - STATE(7221), 1, - aux_sym_user_type_repeat1, + [172899] = 11, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9329), 1, + anon_sym_LPAREN, + ACTIONS(9560), 1, + anon_sym_dynamic, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(7850), 1, + sym__simple_user_type, + STATE(8212), 1, + sym_nullable_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [172942] = 5, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9566), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9564), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7217), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9562), 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, + [172973] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 3, + ACTIONS(4192), 5, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4153), 13, + ACTIONS(4190), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627539,26 +624070,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173138] = 7, - ACTIONS(9336), 1, + [173000] = 7, + ACTIONS(9571), 1, anon_sym_AT, - ACTIONS(9597), 1, + ACTIONS(9576), 1, + anon_sym_suspend, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9574), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7841), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9569), 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, + [173035] = 7, + ACTIONS(9334), 1, + anon_sym_AT, + ACTIONS(9581), 1, sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7845), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9063), 3, + ACTIONS(9065), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7212), 3, + STATE(7222), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(9595), 8, + ACTIONS(9579), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627567,59 +624126,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173173] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, + [173070] = 7, + ACTIONS(9583), 1, anon_sym_AT, - STATE(3016), 1, - sym_type_constraint, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9878), 1, - sym_simple_identifier, + ACTIONS(9586), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7352), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + ACTIONS(9551), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7841), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7219), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9549), 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, - [173213] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, + [173105] = 7, + ACTIONS(9591), 1, anon_sym_AT, - STATE(5833), 1, - sym_type_constraint, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9795), 1, - sym_simple_identifier, + ACTIONS(9597), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7356), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7847), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(9594), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7222), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9589), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627627,59 +624181,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173253] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9599), 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, + [173140] = 5, + ACTIONS(9558), 1, + anon_sym_DOT, + STATE(7214), 1, + aux_sym_user_type_repeat1, 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, + ACTIONS(4124), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4122), 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, - [173293] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [173171] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9601), 1, + ACTIONS(9599), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627687,21 +624238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173333] = 4, - ACTIONS(9046), 1, - anon_sym_COLON, + [173211] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 5, + ACTIONS(4249), 4, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, anon_sym_DOT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4004), 11, + ACTIONS(4247), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -627711,54 +624261,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173361] = 5, - ACTIONS(9603), 1, - anon_sym_LPAREN, - STATE(7350), 1, - sym_value_arguments, + [173237] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(3186), 1, + sym_type_constraint, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9793), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7087), 13, + STATE(7306), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 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, + [173277] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [173391] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9606), 1, + ACTIONS(9601), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627766,29 +624321,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173431] = 10, - ACTIONS(8672), 1, + [173317] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(3172), 1, - sym_type_constraint, - STATE(6224), 1, + ACTIONS(9603), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(9861), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7347), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627796,29 +624351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173471] = 10, - ACTIONS(8672), 1, + [173357] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9608), 1, - anon_sym_RBRACK, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(3287), 1, + sym_type_constraint, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(9840), 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, + STATE(7297), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627826,29 +624381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173511] = 10, - ACTIONS(8672), 1, + [173397] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9610), 1, + ACTIONS(9605), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627856,29 +624411,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173551] = 10, - ACTIONS(8672), 1, + [173437] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9612), 1, - anon_sym_RBRACK, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(5036), 1, + sym_type_constraint, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(10122), 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, + STATE(7281), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627886,29 +624441,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173591] = 10, - ACTIONS(8672), 1, + [173477] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(864), 1, + STATE(923), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9902), 1, + STATE(9769), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7332), 2, + STATE(7313), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627916,29 +624471,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173631] = 10, - ACTIONS(8672), 1, + [173517] = 10, + ACTIONS(9607), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9614), 1, + ACTIONS(9610), 1, anon_sym_RBRACK, - STATE(6224), 1, + ACTIONS(9615), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627946,29 +624501,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173671] = 10, - ACTIONS(8672), 1, + [173557] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9616), 1, + ACTIONS(9618), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627976,59 +624531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173711] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9618), 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, + [173597] = 3, 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, + ACTIONS(4309), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4307), 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, - [173751] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [173623] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9620), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628036,59 +624584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [173663] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7352), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(4173), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4171), 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, - [173831] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [173689] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5016), 1, + STATE(3663), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9508), 1, + STATE(10038), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7292), 2, + STATE(7287), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628096,59 +624637,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173871] = 10, - ACTIONS(8672), 1, + [173729] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9622), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 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, - [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, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628156,29 +624667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173951] = 10, - ACTIONS(8672), 1, + [173769] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5133), 1, + STATE(3684), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9714), 1, + STATE(9842), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7293), 2, + STATE(7284), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628186,189 +624697,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173991] = 10, - ACTIONS(8672), 1, + [173809] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5811), 1, - sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9548), 1, + STATE(8511), 1, + sym_type_constraint, + STATE(9562), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7296), 2, + STATE(7282), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 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_expect, - anon_sym_actual, - [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, - 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, - ACTIONS(4315), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4313), 13, + ACTIONS(8745), 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, + [173849] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [174083] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9626), 1, + ACTIONS(9624), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [174123] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(5833), 1, - sym_type_constraint, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9648), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [174163] = 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), 11, + ACTIONS(8745), 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, + [173889] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [174191] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9628), 1, + ACTIONS(9626), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628376,29 +624787,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174231] = 10, - ACTIONS(8672), 1, + [173929] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5839), 1, - sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9648), 1, + STATE(8403), 1, + sym_type_constraint, + STATE(9603), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7304), 2, + STATE(7333), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628406,29 +624817,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174271] = 10, - ACTIONS(8672), 1, + [173969] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9630), 1, - anon_sym_RBRACK, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(5812), 1, + sym_type_constraint, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(9603), 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, + STATE(7333), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628436,29 +624847,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174311] = 10, - ACTIONS(8672), 1, + [174009] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(4652), 1, + STATE(5819), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9797), 1, + STATE(9536), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7301), 2, + STATE(7300), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628466,29 +624877,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174351] = 10, - ACTIONS(8672), 1, + [174049] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9632), 1, + ACTIONS(9628), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628496,29 +624907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174391] = 10, - ACTIONS(8672), 1, + [174089] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(8405), 1, - sym_type_constraint, - STATE(9493), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7345), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628526,29 +624937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174431] = 10, - ACTIONS(8672), 1, + [174129] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(968), 1, + STATE(5814), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9902), 1, + STATE(9731), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7332), 2, + STATE(7338), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628556,18 +624967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174471] = 10, - ACTIONS(8672), 1, + [174169] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(3408), 1, + STATE(5250), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9766), 1, + STATE(10122), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -628575,10 +624986,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(7281), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628586,29 +624997,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174511] = 10, - ACTIONS(8672), 1, + [174209] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9634), 1, + ACTIONS(9632), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628616,29 +625027,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174551] = 10, - ACTIONS(8672), 1, + [174249] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4263), 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, + [174275] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9636), 1, + ACTIONS(9634), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628646,80 +625080,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174591] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(4845), 1, - sym_type_constraint, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9797), 1, - sym_simple_identifier, + [174315] = 5, + ACTIONS(9636), 1, + anon_sym_LT, + STATE(7602), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7301), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(4161), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4159), 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, - [174631] = 10, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, + [174345] = 5, ACTIONS(9638), 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, + anon_sym_LPAREN, + STATE(7295), 1, + sym_value_arguments, 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, + ACTIONS(7118), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7116), 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, - [174671] = 3, + sym__alpha_identifier, + [174375] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, + ACTIONS(4035), 5, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4317), 13, + ACTIONS(4030), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -628729,29 +625154,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [174697] = 10, - ACTIONS(8672), 1, + [174403] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(3753), 1, + sym_type_constraint, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9842), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7284), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174443] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9640), 1, + ACTIONS(9641), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628759,84 +625214,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174737] = 10, - ACTIONS(8672), 1, + [174483] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(4988), 1, + STATE(5826), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9714), 1, + STATE(9536), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7293), 2, + STATE(7300), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 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_expect, - anon_sym_actual, - [174777] = 5, - ACTIONS(9642), 1, - anon_sym_LT, - STATE(7506), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4128), 11, + ACTIONS(8745), 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, + [174523] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [174807] = 10, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5197), 1, + STATE(2999), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9508), 1, + STATE(9793), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7292), 2, + STATE(7306), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628844,29 +625274,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174847] = 10, - ACTIONS(8672), 1, + [174563] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(3623), 1, + STATE(978), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9679), 1, + STATE(9769), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7334), 2, + STATE(7313), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628874,29 +625304,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174887] = 10, - ACTIONS(8672), 1, + [174603] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(3618), 1, + STATE(5819), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9766), 1, + STATE(9562), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7281), 2, + STATE(7282), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628904,29 +625334,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174927] = 10, - ACTIONS(8672), 1, + [174643] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(5812), 1, - sym_type_constraint, - STATE(6224), 1, + ACTIONS(9643), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(9548), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7296), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628934,29 +625364,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174967] = 10, - ACTIONS(8672), 1, + [174683] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8533), 1, + STATE(4659), 1, sym_type_constraint, - STATE(9795), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9884), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7356), 2, + STATE(7292), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628964,29 +625394,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175007] = 10, - ACTIONS(8672), 1, + [174723] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9644), 1, + ACTIONS(9645), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628994,29 +625424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175047] = 10, - ACTIONS(9646), 1, + [174763] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9649), 1, - anon_sym_RBRACK, - ACTIONS(9654), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9647), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(9651), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629024,29 +625454,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175087] = 10, - ACTIONS(8672), 1, + [174803] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9657), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(5812), 1, + sym_type_constraint, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9731), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7338), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174843] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9649), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629054,29 +625514,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175127] = 10, - ACTIONS(8672), 1, + [174883] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9659), 1, + ACTIONS(9651), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7273), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629084,29 +625544,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175167] = 10, - ACTIONS(8672), 1, + [174923] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(3283), 1, + STATE(4761), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9861), 1, + STATE(9884), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7347), 2, + STATE(7292), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629114,29 +625574,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175207] = 10, - ACTIONS(8672), 1, + [174963] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(3763), 1, + STATE(3544), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9679), 1, + STATE(10038), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7334), 2, + STATE(7287), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629144,80 +625604,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175247] = 10, - ACTIONS(8672), 1, + [175003] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(5811), 1, + STATE(5183), 1, sym_type_constraint, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9493), 1, + STATE(9995), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7345), 2, + STATE(7337), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 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_expect, - anon_sym_actual, - [175287] = 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), 13, + ACTIONS(8745), 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, + [175043] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [175313] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9653), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7272), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629225,27 +625664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175350] = 9, - ACTIONS(8672), 1, + [175083] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9655), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(9773), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7233), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629253,27 +625694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175387] = 9, - ACTIONS(8672), 1, + [175123] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9657), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7236), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629281,27 +625724,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175424] = 9, - ACTIONS(8672), 1, + [175163] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4030), 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, + [175191] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(4975), 1, + sym_type_constraint, + STATE(6386), 1, sym__lexical_identifier, - STATE(9480), 1, + STATE(9995), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, + STATE(7337), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629309,49 +625778,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175461] = 3, + [175231] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(3177), 1, + sym_type_constraint, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9840), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7173), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7171), 13, + STATE(7297), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 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, + [175271] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - [175486] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9659), 1, + anon_sym_RBRACK, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7227), 3, + STATE(7233), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629359,28 +625838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175523] = 10, - ACTIONS(9208), 1, + [175311] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9661), 1, - anon_sym_LBRACK, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, sym__simple_user_type, - STATE(8743), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9121), 2, + STATE(7251), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9210), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629388,27 +625866,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175562] = 9, - ACTIONS(8672), 1, + [175348] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(10084), 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(7239), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629416,27 +625894,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175599] = 9, - ACTIONS(8672), 1, + [175385] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(10151), 1, + STATE(9510), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629444,28 +625922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175636] = 10, - ACTIONS(8672), 1, + [175422] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9663), 1, - anon_sym_LBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7608), 2, + STATE(7253), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8682), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629473,49 +625950,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175675] = 3, + [175459] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9867), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5183), 13, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 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, + [175496] = 10, + ACTIONS(9438), 1, sym__alpha_identifier, - [175700] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9446), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + ACTIONS(9661), 1, + anon_sym_LBRACK, + STATE(7190), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(7211), 1, + sym__lexical_identifier, + STATE(7215), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7255), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7232), 3, + STATE(7347), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9444), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175535] = 6, + ACTIONS(9669), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9666), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9671), 2, + anon_sym_dynamic, + anon_sym_suspend, + ACTIONS(9673), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9663), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629523,27 +626031,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175737] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [175566] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9564), 1, + STATE(10012), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629551,27 +626060,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175774] = 9, - ACTIONS(8672), 1, + [175603] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9722), 1, + STATE(10127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, + STATE(7290), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629579,28 +626088,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175811] = 10, - ACTIONS(8672), 1, + [175640] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9663), 1, - anon_sym_LBRACK, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7888), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7608), 2, + STATE(7268), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8682), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629608,27 +626116,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175850] = 9, - ACTIONS(8672), 1, + [175677] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(10131), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [175714] = 10, + ACTIONS(9424), 1, + sym__alpha_identifier, + ACTIONS(9432), 1, + sym__backtick_identifier, + ACTIONS(9675), 1, + anon_sym_LBRACK, + STATE(7254), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(7298), 1, + sym__lexical_identifier, + STATE(7311), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7570), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7262), 3, + STATE(7840), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9430), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629636,27 +626173,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175887] = 9, - ACTIONS(8672), 1, + [175753] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9560), 1, + STATE(9873), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629664,19 +626201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175924] = 5, - ACTIONS(9665), 1, - anon_sym_DOT, - STATE(7338), 1, - aux_sym_user_type_repeat1, + [175790] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 3, + ACTIONS(4192), 5, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4153), 11, + ACTIONS(4190), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629688,27 +626223,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175953] = 9, - ACTIONS(8672), 1, + [175815] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7238), 3, + STATE(7275), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629716,57 +626251,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175990] = 10, - ACTIONS(9434), 1, - sym__alpha_identifier, - ACTIONS(9442), 1, - sym__backtick_identifier, - ACTIONS(9667), 1, - anon_sym_LBRACK, - STATE(5660), 1, - sym__lexical_identifier, - STATE(5684), 1, - sym_simple_identifier, - STATE(5692), 1, - sym__simple_user_type, - STATE(5705), 1, - sym_user_type, + [175852] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5728), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9440), 7, + ACTIONS(4896), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4894), 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, - [176029] = 10, - ACTIONS(9484), 1, sym__alpha_identifier, - ACTIONS(9492), 1, + [175877] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9669), 1, - anon_sym_LBRACK, - STATE(7150), 1, - sym_simple_identifier, - STATE(7215), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7220), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, sym__simple_user_type, - STATE(7229), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7326), 2, + STATE(7239), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9490), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629774,27 +626301,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176068] = 9, - ACTIONS(8672), 1, + [175914] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9820), 1, + STATE(9830), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629802,55 +626329,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176105] = 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(9475), 1, - sym_simple_identifier, + [175951] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4030), 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, - [176142] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [175976] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7230), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629858,27 +626379,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176179] = 9, - ACTIONS(8672), 1, + [176013] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9652), 1, + STATE(9552), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629886,27 +626407,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176216] = 9, - ACTIONS(8672), 1, + [176050] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(10148), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7288), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7242), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629914,27 +626435,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176253] = 9, - ACTIONS(8672), 1, + [176087] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7233), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629942,51 +626463,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176290] = 5, - ACTIONS(9671), 1, + [176124] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4784), 3, + anon_sym_AT, anon_sym_LPAREN, - STATE(7182), 1, - sym_value_arguments, + sym__backtick_identifier, + ACTIONS(4782), 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, + [176149] = 10, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9252), 1, + sym__backtick_identifier, + ACTIONS(9677), 1, + anon_sym_LBRACK, + STATE(5687), 1, + sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, + STATE(8315), 1, + sym__simple_user_type, + STATE(9088), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 3, + STATE(9340), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176188] = 5, + ACTIONS(9679), 1, + anon_sym_DOT, + STATE(7354), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 3, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7087), 11, + ACTIONS(4122), 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_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176319] = 9, - ACTIONS(8672), 1, + [176217] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9474), 1, + STATE(9787), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7302), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629994,18 +626566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176356] = 9, - ACTIONS(8672), 1, + [176254] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, @@ -630014,7 +626586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630022,51 +626594,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176393] = 9, - ACTIONS(8672), 1, + [176291] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7251), 3, + STATE(7228), 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, - [176430] = 6, - ACTIONS(9679), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9676), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9681), 2, - anon_sym_dynamic, - anon_sym_suspend, - ACTIONS(9683), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9673), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630074,28 +626622,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176328] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [176461] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7274), 3, + STATE(7243), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630103,27 +626650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176498] = 9, - ACTIONS(8672), 1, + [176365] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7253), 3, + STATE(7265), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630131,41 +626678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176535] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4009), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, + [176402] = 5, + ACTIONS(9679), 1, 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, - sym__alpha_identifier, - [176560] = 3, + STATE(7305), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 3, + ACTIONS(4141), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5159), 13, + ACTIONS(4139), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -630175,27 +626702,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176585] = 9, - ACTIONS(8672), 1, + [176431] = 10, + ACTIONS(9470), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9478), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + ACTIONS(9681), 1, + anon_sym_LBRACK, + STATE(5839), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(5845), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(5847), 1, + sym__lexical_identifier, + STATE(5863), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7259), 3, + STATE(5902), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9476), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630203,28 +626731,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176622] = 10, - ACTIONS(9386), 1, + [176470] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9398), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9685), 1, - anon_sym_LBRACK, - STATE(3554), 1, - sym_simple_identifier, - STATE(3648), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3688), 1, - sym__simple_user_type, - STATE(3724), 1, - sym_user_type, + STATE(9759), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3979), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9394), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630232,27 +626759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176661] = 9, - ACTIONS(8672), 1, + [176507] = 10, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9683), 1, + anon_sym_LBRACK, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(8008), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7275), 3, + STATE(7692), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630260,27 +626788,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176698] = 9, - ACTIONS(8672), 1, + [176546] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9477), 1, + STATE(9761), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7283), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630288,27 +626816,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176735] = 9, - ACTIONS(8672), 1, + [176583] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7230), 3, + STATE(7273), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630316,37 +626844,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176772] = 3, + [176620] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5163), 13, + STATE(7224), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 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, - [176797] = 3, + [176657] = 5, + ACTIONS(9685), 1, + anon_sym_LT, + STATE(7806), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7181), 3, + ACTIONS(4161), 4, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7179), 13, + ACTIONS(4159), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -630354,33 +626893,31 @@ 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, - [176822] = 9, - ACTIONS(8672), 1, + [176686] = 10, + ACTIONS(9450), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9687), 1, + anon_sym_LBRACK, + STATE(5666), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(5685), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(5689), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(5702), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7243), 3, + STATE(5744), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630388,27 +626925,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176859] = 9, - ACTIONS(8672), 1, + [176725] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(9588), 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(7255), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + STATE(7321), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630416,27 +626953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176896] = 9, - ACTIONS(8672), 1, + [176762] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(9587), 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(7260), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630444,72 +626981,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176933] = 3, + [176799] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7191), 13, + STATE(7263), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 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, + [176836] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [176958] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9584), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7187), 13, + STATE(7324), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 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, + [176873] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [176983] = 10, - ACTIONS(9448), 1, - sym__alpha_identifier, - ACTIONS(9456), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9687), 1, - anon_sym_LBRACK, - STATE(7266), 1, - sym_simple_identifier, - STATE(7314), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(7333), 1, - sym__simple_user_type, - STATE(7534), 1, - sym_user_type, + STATE(9581), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7861), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9454), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630517,28 +627065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177022] = 10, - ACTIONS(9402), 1, + [176910] = 10, + ACTIONS(9214), 1, sym__alpha_identifier, - ACTIONS(9410), 1, + ACTIONS(9220), 1, sym__backtick_identifier, ACTIONS(9689), 1, anon_sym_LBRACK, - STATE(5826), 1, + STATE(5683), 1, + sym__lexical_identifier, + STATE(5783), 1, sym_simple_identifier, - STATE(5841), 1, + STATE(5806), 1, sym__simple_user_type, - STATE(5842), 1, - sym__lexical_identifier, - STATE(5863), 1, + STATE(5829), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6351), 2, + STATE(5856), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9408), 7, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630546,27 +627094,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177061] = 9, - ACTIONS(8672), 1, + [176949] = 10, + ACTIONS(9414), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9422), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, + ACTIONS(9691), 1, + anon_sym_LBRACK, + STATE(7318), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(7409), 1, + sym__lexical_identifier, + STATE(7434), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7788), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7242), 3, + STATE(7843), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(9420), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630574,27 +627123,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177098] = 9, - ACTIONS(8672), 1, + [176988] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7248), 3, + STATE(7266), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630602,79 +627151,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177135] = 9, - ACTIONS(8672), 1, + [177025] = 10, + ACTIONS(1724), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(1788), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9904), 1, + ACTIONS(9693), 1, + anon_sym_LBRACK, + STATE(5424), 1, sym_simple_identifier, + STATE(5431), 1, + sym__simple_user_type, + STATE(5441), 1, + sym__lexical_identifier, + STATE(5512), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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_expect, - anon_sym_actual, - [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(4195), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4193), 11, + STATE(5583), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3092), 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, + [177064] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [177201] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9683), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7279), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630682,78 +627208,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177238] = 10, - ACTIONS(9248), 1, + [177101] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9691), 1, - anon_sym_LBRACK, - STATE(5602), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(5738), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5775), 2, + STATE(7248), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9252), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [177277] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5181), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5179), 13, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 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, + [177138] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [177302] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9774), 1, + STATE(9978), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, + STATE(7332), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630761,51 +627264,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177339] = 5, - ACTIONS(9693), 1, - anon_sym_DOT, - STATE(7338), 1, - aux_sym_user_type_repeat1, + [177175] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9982), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4166), 11, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 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, + [177212] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [177368] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9771), 1, + STATE(9495), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7337), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630813,72 +627320,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177405] = 4, - ACTIONS(9046), 1, - anon_sym_COLON, + [177249] = 10, + ACTIONS(9378), 1, + sym__alpha_identifier, + ACTIONS(9390), 1, + sym__backtick_identifier, + ACTIONS(9695), 1, + anon_sym_LBRACK, + STATE(3391), 1, + sym_simple_identifier, + STATE(3626), 1, + sym__lexical_identifier, + STATE(3689), 1, + sym__simple_user_type, + STATE(3809), 1, + sym_user_type, 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), 10, + STATE(4017), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9386), 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, + [177288] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [177432] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7143), 13, + STATE(7274), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 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, + [177325] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [177457] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7237), 3, + STATE(7247), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630886,27 +627405,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177494] = 9, - ACTIONS(8672), 1, + [177362] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9654), 1, + STATE(10068), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630914,28 +627433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177531] = 10, - ACTIONS(9216), 1, + [177399] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9696), 1, - anon_sym_LBRACK, - STATE(5685), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(9679), 1, sym_simple_identifier, - STATE(8314), 1, - sym__simple_user_type, - STATE(8804), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9412), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9220), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630943,27 +627461,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177570] = 9, - ACTIONS(8672), 1, + [177436] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, + ACTIONS(9408), 1, anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9697), 1, + STATE(10096), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, + STATE(7340), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, + STATE(7675), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630971,28 +627489,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177607] = 10, - ACTIONS(9285), 1, + [177473] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9291), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9698), 1, - anon_sym_LBRACK, - STATE(5682), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5787), 1, + STATE(10099), 1, sym_simple_identifier, - STATE(5813), 1, - sym__simple_user_type, - STATE(5827), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5876), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9289), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631000,27 +627517,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177646] = 9, - ACTIONS(8672), 1, + [177510] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9868), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(7227), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631028,72 +627545,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177683] = 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(9695), 1, - sym_simple_identifier, + [177547] = 5, + ACTIONS(9697), 1, + anon_sym_LPAREN, + STATE(7169), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7351), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(7118), 3, + anon_sym_AT, + anon_sym_RBRACK, + sym__backtick_identifier, + ACTIONS(7116), 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, - [177720] = 10, - ACTIONS(9464), 1, sym__alpha_identifier, - ACTIONS(9472), 1, - sym__backtick_identifier, - ACTIONS(9700), 1, - anon_sym_LBRACK, - STATE(7357), 1, - sym_simple_identifier, - STATE(7388), 1, - sym__lexical_identifier, - STATE(7566), 1, - sym__simple_user_type, - STATE(7828), 1, - sym_user_type, + [177576] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7840), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9470), 7, + ACTIONS(7207), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7205), 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, - [177759] = 3, + sym__alpha_identifier, + [177601] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 3, + ACTIONS(7167), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5187), 13, + ACTIONS(7165), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -631107,75 +627613,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177784] = 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(9694), 1, - sym_simple_identifier, + [177626] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(4888), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4886), 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, - [177821] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, + [177651] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7183), 3, anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9886), 1, - sym_simple_identifier, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7181), 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, + [177676] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + ACTIONS(7203), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7201), 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, - [177858] = 3, + sym__alpha_identifier, + [177701] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4181), 5, + ACTIONS(7197), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4179), 11, + ACTIONS(7195), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -631185,27 +627701,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177883] = 9, - ACTIONS(8672), 1, + [177726] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, STATE(6590), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(7307), 1, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7264), 3, + STATE(7258), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631213,28 +627729,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177920] = 10, - ACTIONS(1724), 1, + [177763] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9702), 1, - anon_sym_LBRACK, - STATE(5340), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, sym_simple_identifier, - STATE(5443), 1, + STATE(6681), 1, sym__simple_user_type, - STATE(5458), 1, + STATE(7342), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7269), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [177800] = 4, + ACTIONS(9040), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4030), 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, + [177827] = 10, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9683), 1, + anon_sym_LBRACK, + STATE(6386), 1, sym__lexical_identifier, - STATE(5501), 1, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, + STATE(7342), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5535), 2, + STATE(7692), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(3092), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631242,27 +627809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177959] = 9, - ACTIONS(8672), 1, + [177866] = 10, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9734), 1, + ACTIONS(9699), 1, + anon_sym_LBRACK, + STATE(5602), 1, sym_simple_identifier, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, + sym__simple_user_type, + STATE(5739), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(5801), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631270,51 +627838,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177996] = 5, - ACTIONS(9704), 1, - anon_sym_LT, - STATE(7653), 1, - sym_type_arguments, + [177905] = 5, + ACTIONS(9701), 1, + anon_sym_DOT, + STATE(7354), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(4173), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4128), 10, + ACTIONS(4171), 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, - [178025] = 9, - ACTIONS(8672), 1, + [177934] = 10, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_AT, - STATE(6224), 1, + ACTIONS(9704), 1, + anon_sym_LBRACK, + STATE(8323), 1, sym__lexical_identifier, - STATE(9591), 1, + STATE(8326), 1, sym_simple_identifier, + STATE(8408), 1, + sym__simple_user_type, + STATE(8668), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7343), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8682), 7, + STATE(9339), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631322,26 +627891,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178062] = 9, - ACTIONS(387), 1, + [177973] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9400), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(9408), 1, + anon_sym_AT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(9693), 1, sym_simple_identifier, - STATE(884), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(972), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + STATE(7315), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631349,18 +627919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178098] = 3, + [178010] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4319), 4, + ACTIONS(4860), 3, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, sym__backtick_identifier, - ACTIONS(4317), 11, + ACTIONS(4858), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -631370,53 +627941,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178122] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9708), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + [178035] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2346), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4796), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4794), 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, - [178158] = 9, - ACTIONS(9248), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + [178060] = 9, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9430), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(8326), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(8408), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5831), 2, + STATE(8295), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9252), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631424,26 +627990,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178194] = 9, - ACTIONS(473), 1, + [178096] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9710), 1, anon_sym_DOT, - STATE(3332), 1, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2335), 2, + STATE(2659), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631451,26 +628017,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178230] = 9, - ACTIONS(8672), 1, + [178132] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9490), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(818), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(825), 1, + sym__lexical_identifier, + STATE(917), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8292), 2, + STATE(973), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631478,23 +628044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178266] = 9, - ACTIONS(387), 1, + [178168] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, + ACTIONS(9710), 1, + anon_sym_DOT, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9714), 1, - anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, + STATE(441), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -631505,26 +628071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178302] = 9, - ACTIONS(7), 1, + [178204] = 9, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9432), 1, + ACTIONS(9448), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(4683), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(4897), 1, + STATE(4606), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5005), 2, + STATE(4653), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1920), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631532,52 +628098,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178338] = 9, - ACTIONS(387), 1, + [178240] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9490), 1, anon_sym_LPAREN, - ACTIONS(9716), 1, - anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, + STATE(818), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(593), 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, - [178374] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - ACTIONS(9718), 1, - anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, - sym_simple_identifier, + STATE(917), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(569), 2, - sym_variable_declaration, - sym_multi_variable_declaration, + STATE(995), 2, + sym_user_type, + sym_parenthesized_user_type, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -631586,26 +628125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178410] = 9, - ACTIONS(211), 1, + [178276] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(2868), 1, sym_simple_identifier, - STATE(4616), 1, + STATE(3235), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4674), 2, + STATE(3546), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1842), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631613,26 +628152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178446] = 9, - ACTIONS(9232), 1, + [178312] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9490), 1, anon_sym_LPAREN, - STATE(4544), 1, + STATE(818), 1, sym_simple_identifier, - STATE(4545), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(4633), 1, + STATE(917), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4945), 2, + STATE(994), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9236), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631640,50 +628179,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178482] = 9, - ACTIONS(9232), 1, + [178348] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(4633), 1, + STATE(2868), 1, + sym_simple_identifier, + STATE(3235), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4946), 2, + STATE(3524), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9236), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [178518] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(5306), 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, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631691,27 +628206,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178384] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [178550] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9724), 1, - anon_sym_DOT, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6590), 1, sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2661), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(8310), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631719,26 +628233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178586] = 9, - ACTIONS(8672), 1, + [178420] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(6681), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9467), 2, + STATE(8318), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631746,73 +628260,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178622] = 5, - ACTIONS(9726), 1, + [178456] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + ACTIONS(9714), 1, anon_sym_DOT, - STATE(7375), 1, - aux_sym_user_type_repeat1, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4166), 10, + STATE(448), 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, + [178492] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - [178650] = 9, - ACTIONS(9232), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(4633), 1, + STATE(2868), 1, + sym_simple_identifier, + STATE(3235), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4935), 2, + STATE(3489), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9236), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [178686] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9729), 1, - anon_sym_LPAREN, - STATE(3358), 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, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631820,24 +628314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178528] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [178718] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9731), 1, + ACTIONS(9716), 1, anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(588), 2, + STATE(453), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -631848,23 +628341,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178754] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, + [178564] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5310), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(9486), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631872,24 +628368,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178600] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [178786] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4687), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6590), 1, + sym_simple_identifier, + STATE(6681), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(8295), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631897,27 +628395,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178636] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [178818] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(4899), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9618), 2, + STATE(5061), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631925,26 +628422,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178854] = 9, - ACTIONS(387), 1, + [178672] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - ACTIONS(9733), 1, + ACTIONS(9718), 1, anon_sym_DOT, - STATE(823), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(581), 2, + STATE(2393), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631952,23 +628449,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178890] = 7, - ACTIONS(6552), 1, + [178708] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5313), 1, + STATE(4713), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631977,53 +628474,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178922] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9735), 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(2646), 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, - [178958] = 9, - ACTIONS(8672), 1, + [178740] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9796), 2, + STATE(9489), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632031,26 +628501,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178994] = 9, - ACTIONS(387), 1, + [178776] = 9, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - ACTIONS(9737), 1, - anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, + STATE(5687), 1, sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, + STATE(8315), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(5777), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632058,74 +628528,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179030] = 9, - ACTIONS(9208), 1, + [178812] = 9, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(8325), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(8333), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(8315), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8292), 2, + STATE(5774), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9210), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [179066] = 3, - 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), 10, + ACTIONS(9248), 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, + [178848] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [179090] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9724), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, + STATE(617), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632133,26 +628582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179126] = 9, - ACTIONS(473), 1, + [178884] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9741), 1, + ACTIONS(9726), 1, anon_sym_DOT, - STATE(3332), 1, + ACTIONS(9728), 1, + anon_sym_LPAREN, + STATE(5698), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(5813), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2602), 2, + STATE(5479), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632160,50 +628609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179162] = 9, - ACTIONS(115), 1, + [178920] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9743), 1, + ACTIONS(9730), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2319), 2, + STATE(2392), 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, - [179198] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4869), 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, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632211,51 +628636,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178956] = 9, + ACTIONS(9244), 1, sym__alpha_identifier, - [179230] = 9, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(8325), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(8333), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(8452), 1, + STATE(8315), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, + STATE(5793), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9210), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [179266] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(2849), 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, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632263,27 +628663,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [178992] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [179298] = 9, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9444), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(2803), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(2915), 1, + STATE(4899), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2971), 2, + STATE(5001), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1910), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632291,26 +628690,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179334] = 9, - ACTIONS(9258), 1, + [179028] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9747), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9749), 1, + ACTIONS(9732), 1, anon_sym_DOT, - STATE(2853), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3399), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2304), 2, + STATE(623), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9262), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632318,23 +628717,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179370] = 9, - ACTIONS(387), 1, + [179064] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9751), 1, + ACTIONS(9734), 1, anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(452), 2, + STATE(603), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -632345,23 +628744,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179406] = 7, - ACTIONS(6552), 1, + [179100] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(5387), 1, - sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, + STATE(8330), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632370,26 +628769,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179438] = 9, - ACTIONS(115), 1, + [179132] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9753), 1, - anon_sym_DOT, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2330), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(9501), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632397,53 +628796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179474] = 9, - ACTIONS(115), 1, + [179168] = 9, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9484), 1, anon_sym_LPAREN, - ACTIONS(9755), 1, - anon_sym_DOT, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, + STATE(4535), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2660), 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, - [179510] = 9, - ACTIONS(211), 1, - sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9458), 1, - anon_sym_LPAREN, - STATE(4534), 1, + STATE(4536), 1, sym__lexical_identifier, - STATE(4538), 1, - sym_simple_identifier, - STATE(4616), 1, + STATE(4625), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4669), 2, + STATE(4949), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1842), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632451,74 +628823,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179546] = 9, - ACTIONS(211), 1, + [179204] = 9, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9484), 1, anon_sym_LPAREN, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4538), 1, + STATE(4535), 1, sym_simple_identifier, - STATE(4616), 1, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4625), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4692), 2, + STATE(4948), 2, sym_user_type, sym_parenthesized_user_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, - [179582] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4181), 5, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4179), 10, + ACTIONS(9234), 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, + [179240] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [179606] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9757), 1, + ACTIONS(9738), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2372), 2, + STATE(424), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632526,23 +628877,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179642] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + [179276] = 9, + ACTIONS(9230), 1, + sym__alpha_identifier, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9484), 1, anon_sym_LPAREN, - STATE(2768), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4625), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(4938), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632550,24 +628904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179312] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [179674] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(2817), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(9824), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632575,27 +628931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179348] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [179706] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(9740), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2718), 2, + STATE(427), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632603,26 +628958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179742] = 9, - ACTIONS(8672), 1, + [179384] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9742), 1, + anon_sym_DOT, + STATE(825), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(868), 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, + STATE(432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632630,23 +628985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179778] = 9, - ACTIONS(387), 1, + [179420] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9761), 1, + ACTIONS(9744), 1, anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(450), 2, + STATE(435), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -632657,50 +629012,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [179456] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2314), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9262), 7, + ACTIONS(4192), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4190), 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, - [179850] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9765), 1, + sym__alpha_identifier, + [179480] = 9, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9448), 1, anon_sym_LPAREN, - STATE(4673), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4606), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(4646), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632708,27 +629060,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179516] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [179882] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9767), 1, + ACTIONS(9746), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2341), 2, + STATE(433), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632736,23 +629087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179918] = 7, - ACTIONS(6552), 1, + [179552] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(4129), 1, + STATE(1214), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632761,26 +629112,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179950] = 9, + [179584] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9769), 1, + ACTIONS(9750), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2377), 2, + STATE(2446), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632788,26 +629139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179986] = 9, - ACTIONS(9268), 1, + [179620] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9773), 1, + ACTIONS(9752), 1, anon_sym_DOT, - STATE(5713), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5436), 2, + STATE(428), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9270), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632815,53 +629166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180022] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + [179656] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9748), 1, anon_sym_LPAREN, - ACTIONS(9775), 1, - anon_sym_DOT, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, + STATE(1201), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2381), 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, - [180058] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_LPAREN, - ACTIONS(9777), 1, + ACTIONS(4161), 3, 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(2446), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632869,23 +629190,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180094] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [179688] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3355), 1, + STATE(1210), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632894,26 +629216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180126] = 9, - ACTIONS(8672), 1, + [179720] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9466), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(4679), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(4899), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10030), 2, + STATE(4966), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632921,26 +629243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180162] = 9, - ACTIONS(9216), 1, + [179756] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(5685), 1, + ACTIONS(9754), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(3181), 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, + STATE(1672), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632948,23 +629270,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180198] = 7, - ACTIONS(6552), 1, + [179792] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(2867), 1, + STATE(3340), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632973,80 +629295,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [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, + [179824] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2367), 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, - [180266] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - ACTIONS(9781), 1, + ACTIONS(4035), 5, + anon_sym_AT, anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(451), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(4030), 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, - [180302] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [179848] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9955), 2, + STATE(9723), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633054,26 +629343,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180338] = 9, - ACTIONS(8672), 1, + [179884] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9758), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9561), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(1688), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633081,53 +629370,23 @@ 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, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9412), 1, + [179920] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3636), 1, - sym__simple_user_type, + STATE(1263), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, 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(8702), 1, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, 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(9615), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633135,53 +629394,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180446] = 9, - ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9783), 1, + [179952] = 5, + ACTIONS(9760), 1, anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + STATE(7426), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2364), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4124), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4122), 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, - [180482] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [179980] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, + STATE(3336), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9759), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633189,26 +629442,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180518] = 9, - ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [180012] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - ACTIONS(9785), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + STATE(3335), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2695), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633216,26 +629467,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180554] = 9, - ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(553), 1, + [180044] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9787), 1, + ACTIONS(9762), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2362), 2, + STATE(1797), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633243,26 +629495,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180590] = 9, - ACTIONS(9268), 1, + [180080] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5768), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5790), 2, + STATE(9758), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9270), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633270,26 +629522,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180626] = 9, + [180116] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9478), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(9764), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(3222), 1, - sym__simple_user_type, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3281), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1592), 7, + STATE(2432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633297,26 +629549,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180662] = 9, - ACTIONS(473), 1, + [180152] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9412), 1, + ACTIONS(9468), 1, anon_sym_LPAREN, - STATE(3308), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3636), 1, + STATE(2896), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3826), 2, + STATE(3057), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633324,23 +629576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180698] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, + [180188] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5392), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(9572), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633348,27 +629603,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180224] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [180730] = 9, - ACTIONS(9248), 1, - sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9430), 1, + ACTIONS(9468), 1, anon_sym_LPAREN, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2896), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5821), 2, + STATE(3029), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9252), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633376,23 +629630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180766] = 7, - ACTIONS(6552), 1, + [180260] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9789), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8353), 1, + STATE(4964), 1, sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633401,26 +629655,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180798] = 9, - ACTIONS(8672), 1, + [180292] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9768), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9974), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633428,26 +629682,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180834] = 9, - ACTIONS(473), 1, + [180328] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9791), 1, + ACTIONS(9770), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2734), 2, + STATE(1830), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633455,26 +629709,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180870] = 9, - ACTIONS(9248), 1, + [180364] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9795), 1, + ACTIONS(9772), 1, anon_sym_DOT, - STATE(5602), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5493), 2, + STATE(1839), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9252), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633482,48 +629736,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180906] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(5395), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + [180400] = 5, + ACTIONS(9774), 1, + anon_sym_DOT, + STATE(7426), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(4173), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4171), 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, - [180938] = 7, - ACTIONS(6552), 1, + [180428] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4655), 1, + STATE(3309), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633532,23 +629784,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180970] = 7, - ACTIONS(6552), 1, + [180460] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4814), 1, + STATE(4865), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633557,26 +629809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181002] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [180492] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9748), 1, anon_sym_LPAREN, - ACTIONS(9799), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + STATE(829), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2735), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633584,26 +629833,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181038] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [180524] = 9, + ACTIONS(387), 1, + sym__alpha_identifier, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9468), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(2782), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2896), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9922), 2, + STATE(3034), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633611,26 +629861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181074] = 9, - ACTIONS(9248), 1, + [180560] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9430), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(5653), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5816), 2, + STATE(9527), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9252), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633638,25 +629888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181110] = 8, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9507), 1, + [180596] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8564), 1, - sym_simple_identifier, + STATE(861), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9451), 3, - sym_variable_declaration, - sym_multi_variable_declaration, - sym__lambda_parameter, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633664,23 +629912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181144] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [180628] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(4095), 1, + STATE(860), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633689,78 +629938,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181176] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_LPAREN, - ACTIONS(9803), 1, + [180660] = 5, + ACTIONS(9760), 1, anon_sym_DOT, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, + STATE(7413), 1, + aux_sym_user_type_repeat1, 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(9797), 1, + ACTIONS(4141), 3, + anon_sym_AT, anon_sym_LPAREN, - STATE(4649), 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, + ACTIONS(4139), 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, - [181244] = 9, - ACTIONS(9208), 1, + [180688] = 10, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9428), 1, - anon_sym_LPAREN, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, + ACTIONS(9779), 1, + anon_sym_COLON, + ACTIONS(9781), 1, + sym__automatic_semicolon, + STATE(5692), 1, sym__lexical_identifier, - STATE(8452), 1, - sym__simple_user_type, + STATE(8673), 1, + sym_simple_identifier, + STATE(9803), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8306), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9210), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633768,26 +629989,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181280] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9412), 1, + [180726] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3636), 1, - sym__simple_user_type, + STATE(3300), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3793), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633795,26 +630013,24 @@ 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, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [180758] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, + STATE(3299), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9563), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633822,26 +630038,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181352] = 9, + sym__alpha_identifier, + [180790] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9478), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(9783), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(3222), 1, - sym__simple_user_type, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3297), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1592), 7, + STATE(2323), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633849,23 +630066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181388] = 7, - ACTIONS(6552), 1, + [180826] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5292), 1, + STATE(1271), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633874,26 +630091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181420] = 9, - ACTIONS(473), 1, + [180858] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9785), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2395), 2, + STATE(619), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633901,26 +630118,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181456] = 9, - ACTIONS(115), 1, + [180894] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_LPAREN, - ACTIONS(9807), 1, + ACTIONS(9787), 1, anon_sym_DOT, - STATE(2955), 1, + ACTIONS(9789), 1, + anon_sym_LPAREN, + STATE(2817), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3373), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, + STATE(2302), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633928,79 +630145,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181492] = 9, - ACTIONS(8672), 1, + [180930] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9913), 2, + STATE(9785), 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, - [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(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, - [181560] = 10, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - ACTIONS(9809), 1, - anon_sym_COLON, - ACTIONS(9811), 1, - sym__automatic_semicolon, - STATE(5685), 1, - sym__lexical_identifier, - STATE(8727), 1, - sym_simple_identifier, - STATE(9486), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634008,26 +630172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181598] = 9, - ACTIONS(473), 1, + [180966] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9813), 1, + ACTIONS(9791), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2728), 2, + STATE(2607), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634035,23 +630199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181634] = 7, - ACTIONS(6552), 1, + [181002] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4667), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634060,23 +630224,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181666] = 7, - ACTIONS(6552), 1, + [181034] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5304), 1, + STATE(4750), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634085,23 +630249,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181698] = 7, - ACTIONS(6552), 1, + [181066] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(4075), 1, + STATE(4065), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634110,26 +630274,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181730] = 9, - ACTIONS(387), 1, + [181098] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9400), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(9797), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(3664), 1, sym_simple_identifier, - STATE(884), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1004), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + STATE(2636), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634137,26 +630301,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181766] = 9, - ACTIONS(8672), 1, + [181134] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9657), 2, + STATE(9829), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634164,50 +630328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181802] = 9, - ACTIONS(115), 1, + [181170] = 8, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9507), 1, anon_sym_LPAREN, - ACTIONS(9815), 1, - anon_sym_DOT, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(8510), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2671), 2, + STATE(9385), 3, 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, - [181838] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4667), 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, + sym__lambda_parameter, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634215,27 +630354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181204] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [181870] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9817), 1, + ACTIONS(9799), 1, anon_sym_DOT, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(2604), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634243,23 +630381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181906] = 9, - ACTIONS(387), 1, + [181240] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9819), 1, + ACTIONS(9801), 1, anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(425), 2, + STATE(613), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -634270,47 +630408,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181942] = 3, + [181276] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(4095), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4313), 11, + ACTIONS(4159), 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, - [181966] = 9, - ACTIONS(387), 1, + [181308] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9728), 1, anon_sym_LPAREN, - ACTIONS(9821), 1, + ACTIONS(9803), 1, anon_sym_DOT, - STATE(823), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(5813), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(616), 2, + STATE(5459), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634318,26 +630460,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182002] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, + [181344] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - ACTIONS(9823), 1, - anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, - sym_simple_identifier, + STATE(3461), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634345,26 +630484,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182038] = 9, + sym__alpha_identifier, + [181376] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9478), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2899), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(9805), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(3222), 1, - sym__simple_user_type, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3300), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1592), 7, + STATE(2612), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634372,50 +630512,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182074] = 9, - ACTIONS(9268), 1, + [181412] = 9, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(5768), 1, + STATE(8326), 1, + sym_simple_identifier, + STATE(8408), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5797), 2, + STATE(8318), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9270), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [182110] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9825), 1, - anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8327), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634423,27 +630539,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [181448] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - [182142] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9807), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8306), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(2643), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634451,23 +630566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182178] = 7, - ACTIONS(6552), 1, + [181484] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(1235), 1, + STATE(4087), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634476,26 +630591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182210] = 9, - ACTIONS(115), 1, + [181516] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9829), 1, + ACTIONS(9809), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2447), 2, + STATE(2638), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634503,23 +630618,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182246] = 7, - ACTIONS(6552), 1, + [181552] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3275), 1, + STATE(4538), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634528,74 +630643,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182278] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [181584] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 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(9905), 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, - [182314] = 3, + STATE(4537), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9833), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9831), 12, + ACTIONS(4159), 8, 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, sym__alpha_identifier, - [182338] = 9, - ACTIONS(387), 1, + [181616] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9835), 1, - anon_sym_DOT, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9872), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634603,23 +630695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182374] = 7, - ACTIONS(6552), 1, + [181652] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4087), 1, + STATE(4627), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634628,26 +630720,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182406] = 9, - ACTIONS(9216), 1, + [181684] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5685), 1, + ACTIONS(9811), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(3664), 1, sym_simple_identifier, - STATE(8314), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5790), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9220), 7, + STATE(2615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634655,26 +630747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182442] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [181720] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(6662), 1, - sym__simple_user_type, + STATE(4539), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8292), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634682,23 +630771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182478] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [181752] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5267), 1, + STATE(1258), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634707,23 +630797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182510] = 9, - ACTIONS(387), 1, + [181784] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9837), 1, + ACTIONS(9813), 1, anon_sym_DOT, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(443), 2, + STATE(598), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -634734,26 +630824,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182546] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [181820] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, + STATE(4647), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9684), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634761,26 +630848,27 @@ 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, - ACTIONS(469), 1, + [181852] = 9, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - ACTIONS(9839), 1, + ACTIONS(9815), 1, anon_sym_DOT, - STATE(823), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3373), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(431), 2, + STATE(2293), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634788,26 +630876,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182618] = 9, - ACTIONS(387), 1, + [181888] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9841), 1, + ACTIONS(9817), 1, anon_sym_DOT, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(614), 2, + STATE(2630), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634815,26 +630903,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182654] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, + [181924] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6590), 1, - sym_simple_identifier, - STATE(6662), 1, - sym__simple_user_type, + STATE(4658), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634842,26 +630927,27 @@ 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, - ACTIONS(469), 1, + [181956] = 9, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9843), 1, + ACTIONS(9819), 1, anon_sym_DOT, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(424), 2, + STATE(2622), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634869,23 +630955,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182726] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1277), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + [181992] = 6, + ACTIONS(9823), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(9826), 2, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(7473), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9821), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634894,26 +630979,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182758] = 9, - ACTIONS(387), 1, + [182022] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9400), 1, + ACTIONS(9402), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(884), 1, + STATE(3176), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(938), 2, + STATE(3288), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634921,26 +631006,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182794] = 9, - ACTIONS(9268), 1, + [182058] = 9, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5713), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(5768), 1, + STATE(8326), 1, + sym_simple_identifier, + STATE(8408), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5794), 2, + STATE(8310), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9270), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634948,26 +631033,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182830] = 9, - ACTIONS(8672), 1, + [182094] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9787), 2, + STATE(10006), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634975,26 +631060,23 @@ 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, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + [182130] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9793), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, - anon_sym_DOT, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, + STATE(4632), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2609), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635002,26 +631084,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182902] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [182162] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9402), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6590), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(6662), 1, + STATE(3176), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8306), 2, + STATE(3282), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635029,23 +631112,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182938] = 9, - ACTIONS(473), 1, + [182198] = 9, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9847), 1, + ACTIONS(9828), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2625), 2, + STATE(2363), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -635056,44 +631139,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182974] = 3, + [182234] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(3277), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4166), 11, + ACTIONS(4159), 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, - [182998] = 7, - ACTIONS(6552), 1, + [182266] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4066), 1, + STATE(4675), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635102,23 +631189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183030] = 9, - ACTIONS(473), 1, + [182298] = 9, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9849), 1, + ACTIONS(9830), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2659), 2, + STATE(2373), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -635129,26 +631216,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183066] = 9, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, + [182334] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - ACTIONS(9851), 1, - anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, - sym_simple_identifier, + STATE(3483), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635156,71 +631240,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183102] = 9, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, + [182366] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9795), 1, anon_sym_LPAREN, - ACTIONS(9853), 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, - STATE(606), 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, - [183138] = 3, + STATE(3279), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 4, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4335), 11, + ACTIONS(4159), 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, - [183162] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9720), 1, + [182398] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4651), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(8318), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635228,24 +631293,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [183194] = 7, - ACTIONS(6552), 1, + [182434] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4074), 1, + STATE(4664), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635254,26 +631318,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183226] = 9, - ACTIONS(9268), 1, + [182466] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9855), 1, - anon_sym_DOT, - STATE(5713), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5474), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9270), 7, + STATE(10123), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635281,26 +631345,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, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, + [182502] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, anon_sym_LPAREN, - ACTIONS(9857), 1, - anon_sym_DOT, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, - sym_simple_identifier, + STATE(4620), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635308,23 +631369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183298] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [182534] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(826), 1, - sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, + STATE(8325), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635333,26 +631395,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183330] = 9, - ACTIONS(387), 1, + [182566] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9859), 1, + ACTIONS(9832), 1, anon_sym_DOT, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, + STATE(2350), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635360,23 +631422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183366] = 7, - ACTIONS(6552), 1, + [182602] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(838), 1, + STATE(3280), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635385,26 +631447,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183398] = 9, - ACTIONS(7), 1, + [182634] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9432), 1, + ACTIONS(9402), 1, anon_sym_LPAREN, - STATE(4612), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(4683), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(4897), 1, + STATE(3176), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5050), 2, + STATE(3327), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1920), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635412,77 +631474,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183434] = 9, - ACTIONS(8672), 1, + [182670] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9723), 2, + STATE(9963), 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, - [183470] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9861), 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(2677), 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, - [183506] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(836), 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, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635490,24 +631501,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [183538] = 7, - ACTIONS(6552), 1, + [182706] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4076), 1, + STATE(3498), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635516,26 +631526,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183570] = 9, - ACTIONS(9216), 1, + [182738] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5685), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5686), 1, + STATE(7980), 1, sym_simple_identifier, STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5797), 2, + STATE(10083), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635543,23 +631553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183606] = 7, - ACTIONS(6552), 1, + [182774] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(815), 1, + STATE(2855), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635568,23 +631578,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183638] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9765), 1, + [182806] = 9, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4661), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9834), 1, + anon_sym_DOT, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2720), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635592,24 +631605,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182842] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [183670] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4145), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9836), 1, + anon_sym_DOT, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635617,24 +631632,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182878] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - [183702] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1264), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9838), 1, + anon_sym_DOT, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2391), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635642,27 +631659,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182914] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [183734] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9863), 1, - anon_sym_DOT, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2170), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(9613), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635670,23 +631686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183770] = 7, - ACTIONS(6552), 1, + [182950] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(2897), 1, + STATE(4101), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635695,26 +631711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183802] = 9, - ACTIONS(473), 1, + [182982] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, - anon_sym_DOT, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2658), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(8310), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635722,26 +631738,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183838] = 9, + [183018] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9867), 1, + ACTIONS(9840), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1746), 2, + STATE(1897), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635749,23 +631765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183874] = 7, - ACTIONS(6552), 1, + [183054] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(2909), 1, + STATE(2913), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635774,26 +631790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183906] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [183086] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9777), 1, anon_sym_LPAREN, - ACTIONS(9869), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + STATE(2911), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2715), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635801,23 +631814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183942] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [183118] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3563), 1, + STATE(2898), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635826,23 +631840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183974] = 7, - ACTIONS(6552), 1, + [183150] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9789), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8349), 1, + STATE(2806), 1, sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635851,23 +631865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184006] = 7, - ACTIONS(6552), 1, + [183182] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4533), 1, + STATE(2805), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635876,26 +631890,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184038] = 9, - ACTIONS(115), 1, + [183214] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9871), 1, - anon_sym_DOT, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2435), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(9870), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635903,73 +631917,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184074] = 5, - ACTIONS(9873), 1, + [183250] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(7863), 1, - sym_value_arguments, + STATE(2804), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 2, - anon_sym_AT, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(7087), 11, + ACTIONS(4159), 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, - [184102] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_LPAREN, - ACTIONS(9875), 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(2323), 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, - [184138] = 7, - ACTIONS(6552), 1, + [183282] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3313), 1, + STATE(817), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635978,26 +631967,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184170] = 9, - ACTIONS(8672), 1, + [183314] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9775), 2, + STATE(8295), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636005,26 +631994,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184206] = 9, - ACTIONS(9248), 1, + [183350] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, - anon_sym_DOT, - STATE(5602), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5494), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9252), 7, + STATE(9832), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636032,23 +632021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184242] = 7, - ACTIONS(6552), 1, + [183386] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3564), 1, + STATE(819), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636057,23 +632046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184274] = 7, - ACTIONS(6552), 1, + [183418] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(4535), 1, + STATE(3457), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636082,26 +632071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184306] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + [183450] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9748), 1, anon_sym_LPAREN, - ACTIONS(9879), 1, - anon_sym_DOT, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, + STATE(821), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636109,23 +632095,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184342] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [183482] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3566), 1, + STATE(2872), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636134,23 +632121,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184374] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9797), 1, + [183514] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4927), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9842), 1, + anon_sym_DOT, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(583), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636158,24 +632148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184406] = 7, - ACTIONS(6552), 1, + [183550] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(814), 1, + STATE(4103), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636184,26 +632173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184438] = 9, - ACTIONS(115), 1, + [183582] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9881), 1, + ACTIONS(9844), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2135), 2, + STATE(457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636211,26 +632200,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184474] = 9, - ACTIONS(387), 1, + [183618] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9883), 1, + ACTIONS(9846), 1, anon_sym_DOT, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, + STATE(2689), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636238,23 +632227,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184510] = 7, - ACTIONS(6552), 1, + [183654] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3314), 1, + STATE(3610), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636263,23 +632252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184542] = 7, - ACTIONS(6552), 1, + [183686] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9825), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8322), 1, + STATE(4915), 1, sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636288,22 +632277,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184574] = 6, - ACTIONS(9887), 1, - anon_sym_AT, + [183718] = 9, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9448), 1, + anon_sym_LPAREN, + STATE(4543), 1, + sym__lexical_identifier, + STATE(4547), 1, + sym_simple_identifier, + STATE(4606), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + STATE(4652), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636311,24 +632304,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183754] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [184604] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(1290), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(10034), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636336,24 +632331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [183790] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - [184636] = 7, - ACTIONS(6552), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + ACTIONS(9848), 1, + anon_sym_DOT, + ACTIONS(9850), 1, + anon_sym_LPAREN, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5822), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5496), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183826] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(820), 1, + STATE(5351), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636362,26 +632383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184668] = 9, - ACTIONS(8672), 1, + [183858] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9852), 1, + anon_sym_DOT, + STATE(825), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9890), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(567), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636389,26 +632410,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184704] = 9, - ACTIONS(387), 1, + [183894] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9892), 1, + ACTIONS(9854), 1, anon_sym_DOT, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(602), 2, + STATE(2731), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636416,23 +632437,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184740] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9801), 1, + [183930] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2906), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9856), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2422), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636440,27 +632464,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184772] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [183966] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9756), 1, anon_sym_LPAREN, - ACTIONS(9894), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, - sym_simple_identifier, + STATE(2859), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2403), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636468,23 +632488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184808] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [183998] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(4539), 1, - sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, + STATE(8351), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636493,23 +632514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184840] = 7, - ACTIONS(6552), 1, + [184030] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3681), 1, + STATE(3611), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636518,27 +632539,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184872] = 10, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(9216), 1, + [184062] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9896), 1, - anon_sym_COLON, - ACTIONS(9898), 1, - sym__automatic_semicolon, - STATE(5685), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + ACTIONS(9860), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(8770), 1, + STATE(3664), 1, sym_simple_identifier, - STATE(9812), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + STATE(2730), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636546,23 +632566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184910] = 7, - ACTIONS(6552), 1, + [184098] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9729), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3595), 1, + STATE(3612), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636571,23 +632591,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184942] = 7, - ACTIONS(6552), 1, + [184130] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + ACTIONS(9862), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2464), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184166] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3316), 1, + STATE(4109), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636596,23 +632643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184974] = 7, - ACTIONS(6552), 1, + [184198] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(4697), 1, - sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, + STATE(8350), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636621,26 +632668,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185006] = 9, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9266), 1, - sym__backtick_identifier, - ACTIONS(9426), 1, + [184230] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, - sym__lexical_identifier, - STATE(3261), 1, - sym__simple_user_type, + STATE(6557), 1, + sym_type_arguments, + STATE(8332), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3541), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9262), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636648,23 +632692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185042] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [184262] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9801), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3678), 1, + STATE(5344), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636673,50 +632718,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185074] = 9, - ACTIONS(9268), 1, + [184294] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9864), 1, anon_sym_DOT, - STATE(5713), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5431), 2, + STATE(440), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9270), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185110] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(3675), 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, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636724,73 +632745,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184330] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - [185142] = 5, - ACTIONS(9902), 1, + ACTIONS(9212), 1, + sym__backtick_identifier, + ACTIONS(9850), 1, + anon_sym_LPAREN, + ACTIONS(9866), 1, anon_sym_DOT, - STATE(7567), 1, - aux_sym_user_type_repeat1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5822), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4193), 10, + STATE(5529), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 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, - sym__alpha_identifier, - [185170] = 5, - ACTIONS(9902), 1, - anon_sym_DOT, - STATE(7375), 1, - aux_sym_user_type_repeat1, + [184366] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5315), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4153), 10, + ACTIONS(4159), 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, - [185198] = 9, - ACTIONS(115), 1, + [184398] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - ACTIONS(9904), 1, + ACTIONS(9868), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2460), 2, + STATE(582), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636798,26 +632824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185234] = 9, - ACTIONS(8672), 1, + [184434] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9828), 2, + STATE(10146), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636825,26 +632851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185270] = 9, - ACTIONS(8672), 1, + [184470] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9460), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(5602), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9689), 2, + STATE(5832), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636852,23 +632878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185306] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + [184506] = 9, + ACTIONS(9254), 1, + sym__alpha_identifier, + ACTIONS(9258), 1, + sym__backtick_identifier, + ACTIONS(9728), 1, anon_sym_LPAREN, - STATE(2789), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9870), 1, + anon_sym_DOT, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5813), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(5471), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636876,27 +632905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184542] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [185338] = 9, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9426), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3261), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3519), 2, + STATE(9677), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636904,23 +632932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185374] = 7, - ACTIONS(6552), 1, + [184578] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9797), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4963), 1, + STATE(5312), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636929,26 +632957,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185406] = 9, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9444), 1, + [184610] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2803), 1, - sym_simple_identifier, - STATE(2915), 1, - sym__simple_user_type, + STATE(5306), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3029), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1910), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636956,25 +632981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185442] = 9, - ACTIONS(473), 1, + sym__alpha_identifier, + [184642] = 9, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9404), 1, anon_sym_LPAREN, - ACTIONS(9906), 1, - anon_sym_DOT, - STATE(3332), 1, - sym__lexical_identifier, - STATE(3670), 1, + STATE(3314), 1, sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3604), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, + STATE(3796), 2, + sym_user_type, + sym_parenthesized_user_type, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -636983,26 +633009,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185478] = 9, - ACTIONS(8672), 1, + [184678] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9460), 1, anon_sym_LPAREN, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(5602), 1, sym_simple_identifier, - STATE(8293), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, + STATE(5840), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8682), 7, + ACTIONS(9208), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184714] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(4953), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637010,26 +633060,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185514] = 9, + sym__alpha_identifier, + [184746] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9872), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2457), 2, + STATE(2424), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637037,23 +633088,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185550] = 7, - ACTIONS(6552), 1, + [184782] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3305), 1, + STATE(3504), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637062,23 +633113,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185582] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + [184814] = 9, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2771), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9874), 1, + anon_sym_DOT, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(545), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637086,24 +633140,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184850] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [185614] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(3322), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(9555), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637111,24 +633167,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184886] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - [185646] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9745), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3273), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9876), 1, + anon_sym_DOT, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2389), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637136,27 +633194,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184922] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - [185678] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9432), 1, + ACTIONS(9460), 1, anon_sym_LPAREN, - STATE(4612), 1, - sym__lexical_identifier, - STATE(4683), 1, + STATE(5602), 1, sym_simple_identifier, - STATE(4897), 1, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5658), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5043), 2, + STATE(5836), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1920), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637164,26 +633221,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185714] = 9, - ACTIONS(115), 1, + [184958] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9910), 1, + ACTIONS(9878), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2181), 2, + STATE(2702), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637191,23 +633248,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185750] = 7, - ACTIONS(6552), 1, + [184994] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9825), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8328), 1, + STATE(5342), 1, sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637216,26 +633273,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185782] = 9, - ACTIONS(9258), 1, + [185026] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9426), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + ACTIONS(9880), 1, + anon_sym_DOT, + STATE(825), 1, sym__lexical_identifier, - STATE(3261), 1, - sym__simple_user_type, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3484), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9262), 7, + STATE(546), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637243,23 +633300,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185818] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9729), 1, + [185062] = 9, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3578), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9882), 1, + anon_sym_DOT, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2684), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637267,27 +633327,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185098] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [185850] = 9, - ACTIONS(473), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + ACTIONS(9884), 1, + anon_sym_DOT, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(568), 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, + [185134] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9912), 1, + ACTIONS(9886), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2390), 2, + STATE(2331), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637295,26 +633381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185886] = 9, - ACTIONS(8672), 1, + [185170] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9888), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9719), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(2603), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637322,23 +633408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185922] = 7, - ACTIONS(6552), 1, + [185206] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9789), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(6538), 1, - sym_type_arguments, - STATE(8338), 1, + STATE(4091), 1, sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637347,26 +633433,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185954] = 9, - ACTIONS(8672), 1, + [185238] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9890), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9869), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(2319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637374,51 +633460,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185990] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9729), 1, + [185274] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(3581), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9892), 1, + anon_sym_DOT, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, + STATE(2378), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [185310] = 5, + ACTIONS(9894), 1, + anon_sym_LPAREN, + STATE(7855), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7118), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(7116), 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, - [186022] = 9, - ACTIONS(8672), 1, + [185338] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9428), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(6224), 1, + ACTIONS(9896), 1, + anon_sym_DOT, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(8293), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(10027), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8682), 7, + STATE(2374), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637426,26 +633537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186058] = 9, - ACTIONS(9248), 1, + [185374] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9914), 1, + ACTIONS(9898), 1, anon_sym_DOT, - STATE(5602), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5513), 2, + STATE(2368), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9252), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637453,26 +633564,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186094] = 9, + [185410] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9900), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2173), 2, + STATE(2670), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637480,26 +633591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186130] = 9, - ACTIONS(9258), 1, + [185446] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9747), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - ACTIONS(9918), 1, + ACTIONS(9902), 1, anon_sym_DOT, - STATE(2853), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(3399), 1, + STATE(3373), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2287), 2, + STATE(2311), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9262), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637507,23 +633618,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186166] = 7, - ACTIONS(6552), 1, + [185482] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9827), 1, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(1198), 1, + STATE(4684), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637532,26 +633643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186198] = 9, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9444), 1, + [185514] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2803), 1, - sym_simple_identifier, - STATE(2915), 1, - sym__simple_user_type, + STATE(4046), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3058), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1910), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637559,23 +633667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186234] = 9, - ACTIONS(473), 1, + sym__alpha_identifier, + [185546] = 9, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9904), 1, anon_sym_DOT, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2410), 2, + STATE(2351), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -637586,23 +633695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186270] = 7, - ACTIONS(6552), 1, + [185582] = 7, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(9720), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(4712), 1, + STATE(3462), 1, sym_function_value_parameters, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4161), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4128), 8, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637611,26 +633720,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186302] = 9, - ACTIONS(115), 1, + [185614] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - ACTIONS(9922), 1, + ACTIONS(9906), 1, anon_sym_DOT, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2180), 2, + STATE(2346), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637638,23 +633747,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186338] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9827), 1, + [185650] = 9, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(1207), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + ACTIONS(9908), 1, + anon_sym_DOT, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(2337), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637662,24 +633774,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185686] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [186370] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9765), 1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(4630), 1, - sym_function_value_parameters, - STATE(6538), 1, - sym_type_arguments, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4128), 8, + STATE(9473), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637687,25 +633801,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185722] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - [186402] = 8, - ACTIONS(9268), 1, - sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5713), 1, + ACTIONS(9910), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5436), 2, + STATE(2395), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9270), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637713,25 +633828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186435] = 9, - ACTIONS(115), 1, + [185758] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(2899), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2955), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(3021), 1, + STATE(5769), 1, sym__simple_user_type, - STATE(9817), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + STATE(5777), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637739,24 +633855,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186470] = 8, - ACTIONS(387), 1, + [185794] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(9912), 1, + anon_sym_DOT, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(618), 2, + STATE(2413), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637764,25 +633882,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186503] = 9, - ACTIONS(8672), 1, + [185830] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(4210), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(9378), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5769), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(5774), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637790,91 +633909,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186538] = 3, + [185866] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9858), 1, + anon_sym_LPAREN, + STATE(6557), 1, + sym_type_arguments, + STATE(8343), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(7143), 11, + ACTIONS(4159), 8, 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, - [186561] = 3, + [185898] = 9, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9404), 1, + anon_sym_LPAREN, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3604), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7191), 11, + STATE(3790), 2, + sym_user_type, + sym_parenthesized_user_type, + 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, - sym__alpha_identifier, - [186584] = 9, - 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(4683), 1, - sym_simple_identifier, - STATE(4857), 1, - sym__simple_user_type, - STATE(9720), 1, - sym_function_type_parameters, + [185934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(4265), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4263), 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, - [186619] = 9, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [185958] = 9, + ACTIONS(9204), 1, + sym__alpha_identifier, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_COLON, - STATE(823), 1, + ACTIONS(9850), 1, + anon_sym_LPAREN, + ACTIONS(9914), 1, + anon_sym_DOT, + STATE(5616), 1, sym__lexical_identifier, - STATE(1083), 1, - sym_class_body, - STATE(2219), 1, + STATE(5822), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(5490), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637882,93 +634009,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186654] = 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, + [185994] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(4249), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4247), 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, - [186687] = 3, + sym__alpha_identifier, + [186018] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7181), 3, + ACTIONS(4173), 4, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7179), 11, + ACTIONS(4171), 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_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186710] = 6, - ACTIONS(9890), 1, - sym__backtick_identifier, - ACTIONS(9926), 1, - anon_sym_AT, + [186042] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7613), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7628), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9885), 8, + ACTIONS(9918), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9916), 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, sym__alpha_identifier, - [186739] = 9, - ACTIONS(115), 1, + [186066] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(5496), 1, - anon_sym_LBRACE, - ACTIONS(9929), 1, - anon_sym_COLON, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3526), 1, - sym_class_body, - STATE(4248), 1, + ACTIONS(9404), 1, + anon_sym_LPAREN, + STATE(3314), 1, sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3604), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + STATE(3779), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637976,25 +634099,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186774] = 9, - ACTIONS(8672), 1, + [186102] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(5434), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(9521), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638002,25 +634126,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186809] = 9, - ACTIONS(211), 1, + [186138] = 10, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(9931), 1, + ACTIONS(9920), 1, anon_sym_COLON, - STATE(4534), 1, + ACTIONS(9922), 1, + sym__automatic_semicolon, + STATE(5692), 1, sym__lexical_identifier, - STATE(4880), 1, - sym_class_body, - STATE(5537), 1, + STATE(8790), 1, sym_simple_identifier, + STATE(9591), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638028,25 +634154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186844] = 9, - ACTIONS(8672), 1, + [186176] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - STATE(5437), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(5687), 1, + sym_simple_identifier, + STATE(5698), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(5769), 1, sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(5793), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638054,25 +634181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186879] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - 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(3674), 1, - sym_simple_identifier, - STATE(3969), 1, - sym_class_body, + [186212] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(5298), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638080,24 +634205,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186914] = 8, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + [186244] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, + STATE(5293), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2180), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638105,24 +634230,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186947] = 8, - ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(553), 1, + [186276] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9400), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(8314), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2390), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(9561), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638130,25 +634258,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186980] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9827), 1, + [186312] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(954), 1, + STATE(4082), 1, sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638156,25 +634282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187015] = 9, - ACTIONS(211), 1, sym__alpha_identifier, - 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(5274), 1, - sym_simple_identifier, + [186344] = 7, + ACTIONS(6511), 1, + anon_sym_LT, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(5292), 1, + sym_function_value_parameters, + STATE(6557), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(4161), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4159), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638182,47 +634307,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187050] = 9, - ACTIONS(473), 1, sym__alpha_identifier, - 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(4207), 1, - sym_simple_identifier, + [186376] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(4309), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4307), 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, - [187085] = 8, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [186400] = 8, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, + STATE(545), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -638233,51 +634354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187118] = 9, - ACTIONS(557), 1, + [186433] = 9, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9252), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2803), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(2818), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(5714), 1, sym__simple_user_type, - STATE(9756), 1, + STATE(9646), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [187153] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(5496), 1, - anon_sym_LBRACE, - ACTIONS(9929), 1, - anon_sym_COLON, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3526), 1, - sym_class_body, - STATE(4054), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638285,25 +634380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187188] = 9, - ACTIONS(9208), 1, + [186468] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9214), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(8325), 1, + STATE(818), 1, sym_simple_identifier, - STATE(8333), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(8373), 1, + STATE(849), 1, sym__simple_user_type, - STATE(9963), 1, + STATE(10070), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9210), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638311,44 +634406,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187223] = 3, + [186503] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7173), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7171), 11, + STATE(2659), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [186536] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [187246] = 8, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3008), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9337), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2658), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638356,24 +634457,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187279] = 8, - ACTIONS(115), 1, + [186571] = 8, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(399), 1, anon_sym_LPAREN, - STATE(2955), 1, + ACTIONS(467), 1, + sym__backtick_identifier, + ACTIONS(9924), 1, + anon_sym_class, + STATE(2803), 1, sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2319), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(3257), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638381,25 +634482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187312] = 9, - ACTIONS(557), 1, + [186604] = 9, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(3262), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9935), 1, + ACTIONS(9926), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(3071), 1, + STATE(4786), 1, sym_class_body, - STATE(3736), 1, + STATE(5577), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638407,25 +634508,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187347] = 9, - ACTIONS(8672), 1, + [186639] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3720), 1, + STATE(2837), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9327), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638433,24 +634534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187382] = 8, - ACTIONS(387), 1, + [186674] = 8, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9728), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(5813), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(622), 2, + STATE(5471), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638458,25 +634559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187415] = 9, - ACTIONS(8672), 1, + [186707] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3049), 1, + STATE(4567), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9257), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638484,45 +634585,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187450] = 3, + [186742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 3, + ACTIONS(4419), 4, anon_sym_AT, + anon_sym_EQ, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7187), 11, + ACTIONS(4417), 10, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [187473] = 9, - ACTIONS(387), 1, + [186765] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_COLON, - STATE(823), 1, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(4175), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(1083), 1, - sym_class_body, - STATE(1393), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9221), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638530,25 +634631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187508] = 9, - ACTIONS(8672), 1, + [186800] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4191), 1, + STATE(4549), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9336), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638556,25 +634657,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187543] = 9, - ACTIONS(8672), 1, + [186835] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3026), 1, + STATE(2835), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9390), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638582,24 +634683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187578] = 8, + [186870] = 9, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(133), 1, - anon_sym_LPAREN, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9937), 1, - anon_sym_class, - STATE(2955), 1, + ACTIONS(5468), 1, + anon_sym_LBRACE, + ACTIONS(9928), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, + STATE(3601), 1, + sym_class_body, + STATE(4059), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3404), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638607,24 +634709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187611] = 8, - ACTIONS(473), 1, + [186905] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, + STATE(9559), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2646), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638632,45 +634735,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187644] = 3, + [186940] = 8, + ACTIONS(207), 1, + sym__alpha_identifier, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + sym__backtick_identifier, + ACTIONS(9930), 1, + anon_sym_class, + STATE(4543), 1, + sym__lexical_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(4807), 2, + sym_parenthesized_expression, + sym_simple_identifier, + 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_expect, anon_sym_actual, + [186973] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [187667] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4983), 1, + STATE(2818), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(9229), 1, + STATE(9102), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638678,25 +634786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187702] = 9, - ACTIONS(8672), 1, + [187008] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4974), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(5834), 1, + anon_sym_LBRACE, + ACTIONS(9932), 1, + anon_sym_COLON, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3964), 1, + sym_class_body, + STATE(4215), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638704,24 +634812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187737] = 8, - ACTIONS(9258), 1, + [187043] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9747), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2853), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3399), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2283), 2, + STATE(2393), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9262), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638729,24 +634837,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187770] = 8, - ACTIONS(473), 1, + [187076] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(4963), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2392), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638754,25 +634863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187803] = 9, - ACTIONS(7), 1, + [187111] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9939), 1, - anon_sym_COLON, - STATE(4612), 1, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(4962), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5103), 1, - sym_class_body, - STATE(5497), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638780,44 +634889,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187838] = 3, + [187146] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(4908), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(9419), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(4313), 10, + ACTIONS(8745), 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, + [187181] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [187861] = 8, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(4857), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9271), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638825,25 +634941,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187894] = 9, - ACTIONS(8672), 1, + [187216] = 8, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9850), 1, anon_sym_LPAREN, - STATE(3429), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(5616), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(5822), 1, sym_simple_identifier, - STATE(9347), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(5490), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638851,24 +634966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187929] = 8, - ACTIONS(9268), 1, + [187249] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(5713), 1, + STATE(4573), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9270), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638876,24 +634992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187962] = 8, - ACTIONS(473), 1, + [187284] = 9, + ACTIONS(9276), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(8326), 1, sym_simple_identifier, + STATE(8386), 1, + sym__simple_user_type, + STATE(9523), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2395), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638901,25 +635018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187995] = 9, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9232), 1, + [187319] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9935), 1, - anon_sym_COLON, - STATE(3071), 1, - sym_class_body, - STATE(4545), 1, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(3813), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5148), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638927,44 +635044,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188030] = 3, + [187354] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_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), 10, + STATE(2657), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [187387] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [188053] = 8, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3616), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2446), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638972,25 +635095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188086] = 9, - ACTIONS(115), 1, + [187422] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(5496), 1, + ACTIONS(5804), 1, anon_sym_LBRACE, - ACTIONS(9929), 1, + ACTIONS(9934), 1, anon_sym_COLON, - STATE(2955), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(3109), 1, + STATE(4905), 1, sym_simple_identifier, - STATE(3526), 1, + STATE(5200), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638998,25 +635121,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188121] = 9, - ACTIONS(8672), 1, + [187457] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3035), 1, + STATE(5058), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639024,24 +635147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188156] = 8, - ACTIONS(387), 1, + [187492] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(5834), 1, + anon_sym_LBRACE, + ACTIONS(9932), 1, + anon_sym_COLON, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3643), 1, sym_simple_identifier, + STATE(3964), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(447), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639049,25 +635173,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188189] = 9, - ACTIONS(8672), 1, + [187527] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(1394), 1, + STATE(5051), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9281), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639075,25 +635199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188224] = 9, - ACTIONS(9232), 1, + [187562] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + STATE(3618), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(4608), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(9711), 1, - sym_function_type_parameters, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639101,24 +635225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188259] = 8, - ACTIONS(473), 1, + [187597] = 9, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - STATE(3332), 1, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9926), 1, + anon_sym_COLON, + STATE(4543), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(4786), 1, + sym_class_body, + STATE(5271), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2406), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639126,25 +635251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188292] = 9, - ACTIONS(8672), 1, + [187632] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4905), 1, + STATE(3787), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639152,25 +635277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188327] = 9, - ACTIONS(8672), 1, + [187667] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3373), 1, + STATE(3785), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639178,25 +635303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188362] = 9, - ACTIONS(8672), 1, + [187702] = 8, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(4902), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3373), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2286), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639204,25 +635328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188397] = 9, - ACTIONS(8672), 1, + [187735] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3372), 1, + STATE(1008), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639230,24 +635354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188432] = 8, - ACTIONS(473), 1, + [187770] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2734), 2, + STATE(2367), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639255,25 +635379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188465] = 9, - ACTIONS(8672), 1, + [187803] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4103), 1, + STATE(3802), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9293), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639281,24 +635405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188500] = 8, - ACTIONS(115), 1, + [187838] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(5455), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2457), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639306,24 +635431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188533] = 8, - ACTIONS(473), 1, + [187873] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(1010), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2364), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639331,25 +635457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188566] = 9, - ACTIONS(8672), 1, + [187908] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3722), 1, + STATE(3803), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639357,24 +635483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188601] = 8, - ACTIONS(473), 1, + [187943] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(4098), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9133), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2367), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639382,25 +635509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188634] = 9, - ACTIONS(8672), 1, + [187978] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9729), 1, - anon_sym_LPAREN, - STATE(4204), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(3240), 1, + anon_sym_LBRACE, + ACTIONS(9936), 1, + anon_sym_COLON, + STATE(2803), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3216), 1, + sym_class_body, + STATE(3717), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639408,25 +635535,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188669] = 9, - ACTIONS(7), 1, + [188013] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9939), 1, - anon_sym_COLON, - STATE(4612), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3321), 1, sym__lexical_identifier, - STATE(5103), 1, - sym_class_body, - STATE(5604), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + STATE(2395), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639434,21 +635560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188704] = 8, - ACTIONS(473), 1, + [188046] = 8, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2375), 2, + STATE(2346), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -639459,21 +635585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188737] = 8, - ACTIONS(473), 1, + [188079] = 8, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2718), 2, + STATE(2351), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -639484,25 +635610,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188770] = 9, - ACTIONS(8672), 1, + [188112] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3671), 1, + STATE(3495), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(9287), 1, + STATE(9332), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639510,23 +635636,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188805] = 8, - ACTIONS(473), 1, + [188147] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(485), 1, - anon_sym_LPAREN, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9941), 1, - anon_sym_class, - STATE(3332), 1, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3321), 1, sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3966), 2, - sym_parenthesized_expression, - sym_simple_identifier, + STATE(2360), 2, + sym_variable_declaration, + sym_multi_variable_declaration, ACTIONS(1652), 7, anon_sym_get, anon_sym_set, @@ -639535,25 +635661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188838] = 9, - ACTIONS(8672), 1, + [188180] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3052), 1, + STATE(3024), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639561,24 +635687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188873] = 8, - ACTIONS(115), 1, + [188215] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3676), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9124), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2377), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639586,25 +635713,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188906] = 9, - ACTIONS(8672), 1, + [188250] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3718), 1, + STATE(1008), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639612,25 +635739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188941] = 9, - ACTIONS(9248), 1, + [188285] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(5617), 1, + STATE(868), 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, - ACTIONS(9252), 7, + STATE(441), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639638,24 +635764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188976] = 8, - ACTIONS(115), 1, + [188318] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(4219), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2372), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639663,24 +635790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189009] = 8, + [188353] = 8, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2358), 2, + STATE(2670), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639688,50 +635815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189042] = 9, - ACTIONS(8672), 1, + [188386] = 9, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(1259), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(4547), 1, sym_simple_identifier, - STATE(9280), 1, + STATE(4559), 1, sym__simple_user_type, + STATE(10056), 1, + sym_function_type_parameters, 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, - [189077] = 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, - STATE(2652), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639739,25 +635841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189110] = 9, + [188421] = 9, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(3262), 1, anon_sym_LBRACE, - ACTIONS(9935), 1, + ACTIONS(9938), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(2941), 1, - sym_simple_identifier, - STATE(3071), 1, + STATE(1076), 1, sym_class_body, + STATE(1414), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639765,24 +635867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189145] = 8, - ACTIONS(473), 1, + [188456] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(930), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9179), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2707), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639790,24 +635893,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189178] = 8, - ACTIONS(115), 1, + [188491] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3799), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9104), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2330), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639815,24 +635919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189211] = 8, - ACTIONS(473), 1, + [188526] = 8, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9850), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(5616), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(5822), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2672), 2, + STATE(5529), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639840,25 +635944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189244] = 9, - ACTIONS(8672), 1, + [188559] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3770), 1, + STATE(4962), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9283), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639866,25 +635970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189279] = 9, - ACTIONS(8672), 1, + [188594] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(954), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2374), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639892,25 +635995,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189314] = 9, - ACTIONS(8672), 1, + [188627] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4190), 1, + STATE(4963), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639918,70 +636021,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189349] = 8, + [188662] = 9, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_LPAREN, - STATE(2955), 1, + ACTIONS(5468), 1, + anon_sym_LBRACE, + ACTIONS(9928), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3155), 1, sym_simple_identifier, + STATE(3601), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2383), 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, - [189382] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4473), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4471), 10, + ACTIONS(1624), 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, + [188697] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [189405] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(5046), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, - STATE(9254), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2378), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639989,25 +636072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189440] = 9, - ACTIONS(8672), 1, + [188730] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, - STATE(9807), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(614), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640015,25 +636097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189475] = 9, - ACTIONS(8672), 1, + [188763] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5327), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, - STATE(9106), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2389), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640041,25 +636122,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189510] = 9, - ACTIONS(8672), 1, + [188796] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(940), 1, + STATE(5017), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640067,24 +636148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189545] = 8, - ACTIONS(115), 1, + [188831] = 8, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - STATE(2955), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9940), 1, + anon_sym_class, + STATE(4619), 1, sym__lexical_identifier, - STATE(3108), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2186), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + STATE(5128), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640092,50 +636173,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189578] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3812), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + [188864] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(7167), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7165), 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, - [189613] = 8, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [188887] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(1239), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9117), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(581), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640143,24 +636219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189646] = 8, - ACTIONS(387), 1, + [188922] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(5426), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(588), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640168,25 +636245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189679] = 9, - ACTIONS(8672), 1, + [188957] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(4113), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2319), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640194,24 +636270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189714] = 8, - ACTIONS(387), 1, + [188990] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(602), 2, + STATE(2331), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640219,51 +636295,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189747] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3808), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + [189023] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(7197), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7195), 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, - [189782] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [189046] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(4115), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2345), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640271,25 +636340,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189817] = 9, - ACTIONS(9268), 1, + [189079] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5686), 1, - sym_simple_identifier, - STATE(5708), 1, - sym__simple_user_type, - STATE(5713), 1, + STATE(1010), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(9669), 1, - sym_function_type_parameters, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9270), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640297,24 +636366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189852] = 8, - ACTIONS(387), 1, + [189114] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(596), 2, + STATE(2725), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640322,25 +636391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189885] = 9, - ACTIONS(8672), 1, + [189147] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(831), 1, + STATE(4185), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9419), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640348,44 +636417,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189920] = 3, + [189182] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(5468), 1, + anon_sym_LBRACE, + ACTIONS(9928), 1, + anon_sym_COLON, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3601), 1, + sym_class_body, + STATE(4245), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4491), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4489), 10, + ACTIONS(1624), 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, + [189217] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [189943] = 8, - ACTIONS(387), 1, - sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(3530), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640393,24 +636469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189976] = 8, - ACTIONS(387), 1, + [189252] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(606), 2, + STATE(2640), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640418,25 +636494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190009] = 9, - ACTIONS(8672), 1, + [189285] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3694), 1, + STATE(5034), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640444,24 +636520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190044] = 8, - ACTIONS(9268), 1, + [189320] = 8, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9771), 1, + ACTIONS(9728), 1, anon_sym_LPAREN, - STATE(5713), 1, + STATE(5698), 1, sym__lexical_identifier, - STATE(5807), 1, + STATE(5813), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5474), 2, + STATE(5430), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9270), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640469,25 +636545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190077] = 9, - ACTIONS(8672), 1, + [189353] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3690), 1, + STATE(3813), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640495,25 +636571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190112] = 9, - ACTIONS(8672), 1, + [189388] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(5063), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(546), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640521,99 +636596,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190147] = 9, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, - anon_sym_LPAREN, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(5708), 1, - sym__simple_user_type, - STATE(9521), 1, - sym_function_type_parameters, + [189421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(7203), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7201), 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, - [190182] = 9, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, - sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_COLON, - STATE(823), 1, - sym__lexical_identifier, - STATE(921), 1, - sym_simple_identifier, - STATE(1083), 1, - sym_class_body, + [189444] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7181), 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, - [190217] = 9, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - ACTIONS(9939), 1, - anon_sym_COLON, - STATE(5103), 1, - sym_class_body, - STATE(5685), 1, - sym__lexical_identifier, - STATE(8548), 1, - sym_simple_identifier, + [189467] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(7207), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7205), 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, - [190252] = 8, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [189490] = 8, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(591), 2, + STATE(448), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -640624,25 +636681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190285] = 9, - ACTIONS(8672), 1, + [189523] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4974), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2702), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640650,24 +636706,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190320] = 8, - ACTIONS(473), 1, + [189556] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - STATE(3332), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9938), 1, + anon_sym_COLON, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(1076), 1, + sym_class_body, + STATE(1092), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640675,24 +636732,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190353] = 8, - ACTIONS(557), 1, + [189591] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(569), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9943), 1, - anon_sym_class, - STATE(2791), 1, + ACTIONS(3240), 1, + anon_sym_LBRACE, + ACTIONS(9936), 1, + anon_sym_COLON, + STATE(2803), 1, sym__lexical_identifier, + STATE(3216), 1, + sym_class_body, + STATE(4055), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3197), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640700,25 +636758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190386] = 9, - ACTIONS(8672), 1, + [189626] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3391), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(5468), 1, + anon_sym_LBRACE, + ACTIONS(9928), 1, + anon_sym_COLON, + STATE(2892), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(3601), 1, + sym_class_body, + STATE(3798), 1, sym_simple_identifier, - STATE(9104), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640726,21 +636784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190421] = 8, - ACTIONS(387), 1, + [189661] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(593), 2, + STATE(550), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -640751,24 +636809,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190454] = 8, - ACTIONS(387), 1, + [189694] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(5834), 1, + anon_sym_LBRACE, + ACTIONS(9932), 1, + anon_sym_COLON, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3964), 1, + sym_class_body, + STATE(3998), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(594), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640776,25 +636835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190487] = 9, - ACTIONS(8672), 1, + [189729] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4214), 1, + STATE(3558), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9106), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640802,45 +636861,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190522] = 3, + [189764] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(3020), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, 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, + ACTIONS(8745), 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, + [189799] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - [190545] = 9, - ACTIONS(473), 1, - sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(5836), 1, + ACTIONS(3240), 1, anon_sym_LBRACE, - ACTIONS(9933), 1, + ACTIONS(9936), 1, anon_sym_COLON, - STATE(3332), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3865), 1, + STATE(3132), 1, sym_simple_identifier, - STATE(3969), 1, + STATE(3216), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640848,25 +636913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190580] = 9, - ACTIONS(8672), 1, + [189834] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2835), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2717), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640874,24 +636938,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190615] = 8, - ACTIONS(211), 1, + [189867] = 9, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(9945), 1, - anon_sym_class, - STATE(4534), 1, + ACTIONS(9934), 1, + anon_sym_COLON, + STATE(5200), 1, + sym_class_body, + STATE(5692), 1, sym__lexical_identifier, + STATE(8468), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4760), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1842), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640899,25 +636964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190648] = 9, - ACTIONS(8672), 1, + [189902] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3049), 1, + STATE(4136), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640925,25 +636990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190683] = 9, - ACTIONS(8672), 1, + [189937] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(2975), 1, + STATE(3772), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640951,50 +637016,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190718] = 8, - ACTIONS(473), 1, + [189972] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9756), 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, - STATE(2716), 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, - [190751] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9939), 1, - anon_sym_COLON, - STATE(4612), 1, + STATE(3024), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5078), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, - STATE(5103), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641002,25 +637042,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190786] = 9, - ACTIONS(8672), 1, + [190007] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3718), 1, + STATE(4135), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641028,25 +637068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190821] = 9, - ACTIONS(8672), 1, + [190042] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2833), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2386), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641054,24 +637093,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190856] = 8, - ACTIONS(9248), 1, + [190075] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(5485), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5523), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9252), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641079,25 +637119,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190889] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(203), 1, - sym__backtick_identifier, + [190110] = 9, ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9929), 1, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9926), 1, anon_sym_COLON, - STATE(2955), 1, - sym__lexical_identifier, - STATE(3526), 1, + STATE(4786), 1, sym_class_body, - STATE(3744), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8748), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641105,24 +637145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190924] = 8, - ACTIONS(473), 1, + [190145] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, + STATE(9503), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2335), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641130,51 +637171,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190957] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(2835), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, - sym_simple_identifier, + [190180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4173), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4171), 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, - [190992] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [190203] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3722), 1, + STATE(5487), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641182,51 +637217,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191027] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1411), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + [190238] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4265), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4263), 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, - [191062] = 9, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [190261] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(978), 1, + STATE(3531), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9288), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641234,25 +637263,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191097] = 9, - ACTIONS(8672), 1, + [190296] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(852), 1, + STATE(4212), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641260,25 +637289,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191132] = 9, - ACTIONS(557), 1, + [190331] = 9, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(3262), 1, + ACTIONS(3240), 1, anon_sym_LBRACE, - ACTIONS(9935), 1, + ACTIONS(9936), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_class_body, - STATE(4086), 1, + STATE(2963), 1, sym_simple_identifier, + STATE(3216), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641286,25 +637315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191167] = 9, - ACTIONS(8672), 1, + [190366] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4805), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2731), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641312,24 +637340,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191202] = 8, - ACTIONS(9258), 1, + [190399] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9747), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(2853), 1, + STATE(1427), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3399), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2304), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641337,25 +637366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191235] = 9, - ACTIONS(8672), 1, + [190434] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3690), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(621), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641363,25 +637391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191270] = 9, - ACTIONS(8672), 1, + [190467] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4807), 1, + STATE(5363), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9111), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641389,25 +637417,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191305] = 9, - ACTIONS(8672), 1, + [190502] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1419), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(9934), 1, + anon_sym_COLON, + STATE(4619), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(5083), 1, sym_simple_identifier, + STATE(5200), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641415,25 +637443,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191340] = 9, - ACTIONS(8672), 1, + [190537] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5338), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2730), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641441,25 +637468,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191375] = 9, - ACTIONS(8672), 1, + [190570] = 9, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3694), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(5602), 1, + sym_simple_identifier, + STATE(5616), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(5644), 1, sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + STATE(9529), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641467,25 +637494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191410] = 9, - ACTIONS(8672), 1, + [190605] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4902), 1, + STATE(5017), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641493,24 +637520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191445] = 8, + [190640] = 8, ACTIONS(115), 1, sym__alpha_identifier, ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2620), 2, + STATE(2422), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641518,24 +637545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191478] = 8, - ACTIONS(473), 1, + [190673] = 9, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(2868), 1, sym_simple_identifier, + STATE(3031), 1, + sym__simple_user_type, + STATE(10145), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2341), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641543,25 +637571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191511] = 9, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + [190708] = 6, + ACTIONS(9826), 1, sym__backtick_identifier, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4905), 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(9942), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(7675), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7731), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(9821), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641569,24 +637593,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191546] = 8, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(203), 1, + [190737] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(5058), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2440), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641594,24 +637620,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191579] = 8, - ACTIONS(473), 1, + [190772] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2715), 2, + STATE(567), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641619,25 +637645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191612] = 9, - ACTIONS(387), 1, + [190805] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_COLON, - STATE(823), 1, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, sym__lexical_identifier, - STATE(1083), 1, - sym_class_body, - STATE(1127), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(2447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641645,25 +637670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191647] = 9, - ACTIONS(8672), 1, + [190838] = 8, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(846), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2817), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(3373), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2311), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641671,25 +637695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191682] = 9, - ACTIONS(8672), 1, + [190871] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4148), 1, + STATE(4989), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9177), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641697,24 +637721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191717] = 8, - ACTIONS(115), 1, + [190906] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2660), 2, + STATE(457), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641722,21 +637746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191750] = 8, - ACTIONS(387), 1, + [190939] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(450), 2, + STATE(583), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -641747,25 +637771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191783] = 9, - ACTIONS(8672), 1, + [190972] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3726), 1, + STATE(1391), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641773,24 +637797,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191818] = 8, - ACTIONS(115), 1, + [191007] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(4742), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 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, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641798,25 +637823,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191851] = 9, - ACTIONS(8672), 1, + [191042] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4805), 1, + STATE(5534), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9214), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641824,24 +637849,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191886] = 8, - ACTIONS(115), 1, + [191077] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2135), 2, + STATE(2684), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641849,25 +637874,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191919] = 9, - ACTIONS(8672), 1, + [191110] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3743), 1, + STATE(3772), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641875,25 +637900,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191954] = 9, - ACTIONS(8672), 1, + [191145] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(5334), 1, + STATE(5393), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641901,24 +637926,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191989] = 8, - ACTIONS(115), 1, + [191180] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4373), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4371), 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(203), 1, + [191203] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3020), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641926,24 +637972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192022] = 8, - ACTIONS(9248), 1, + [191238] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5494), 2, + STATE(2406), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9252), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641951,25 +637997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192055] = 9, + [191271] = 8, ACTIONS(557), 1, sym__alpha_identifier, ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9935), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(825), 1, sym__lexical_identifier, - STATE(3071), 1, - sym_class_body, - STATE(3127), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + STATE(617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641977,25 +638022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192090] = 9, - ACTIONS(8672), 1, + [191304] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4807), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(585), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642003,25 +638047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192125] = 9, - ACTIONS(8672), 1, + [191337] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3730), 1, + STATE(2835), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9333), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642029,24 +638073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192160] = 8, - ACTIONS(473), 1, + [191372] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(2837), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2695), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642054,25 +638099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192193] = 9, - ACTIONS(8672), 1, + [191407] = 9, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(5526), 1, - sym_function_value_parameters, - STATE(6224), 1, - sym__lexical_identifier, - STATE(7893), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(9409), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5714), 1, sym__simple_user_type, + STATE(10040), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642080,25 +638125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192228] = 9, - ACTIONS(8672), 1, + [191442] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(5063), 1, + STATE(3616), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642106,25 +638151,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192263] = 9, - ACTIONS(9258), 1, + [191477] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(203), 1, sym__backtick_identifier, ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3014), 1, + STATE(2942), 1, + sym_simple_identifier, + STATE(3006), 1, sym__simple_user_type, - STATE(9603), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9262), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642132,25 +638177,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192298] = 9, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(8672), 1, + [191512] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9931), 1, - anon_sym_COLON, - STATE(4880), 1, - sym_class_body, - STATE(6224), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(825), 1, sym__lexical_identifier, - STATE(8758), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642158,49 +638202,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192333] = 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, + [191545] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2617), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(4249), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4247), 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, - [192366] = 8, - ACTIONS(473), 1, sym__alpha_identifier, - ACTIONS(553), 1, + [191568] = 9, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3618), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2347), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642208,24 +638248,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192399] = 8, - ACTIONS(115), 1, + [191603] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, + STATE(619), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642233,25 +638273,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192432] = 9, - ACTIONS(8672), 1, + [191636] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(5465), 1, + STATE(3531), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9396), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642259,25 +638299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192467] = 9, - ACTIONS(8672), 1, + [191671] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4741), 1, + STATE(5391), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9325), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642285,24 +638325,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192502] = 8, + [191706] = 9, ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(823), 1, - sym__lexical_identifier, - STATE(866), 1, + STATE(2782), 1, sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2864), 1, + sym__simple_user_type, + STATE(10035), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(455), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642310,25 +638351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192535] = 9, - ACTIONS(8672), 1, + [191741] = 8, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9850), 1, anon_sym_LPAREN, - STATE(4919), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(5616), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(5822), 1, sym_simple_identifier, - STATE(9414), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(5495), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642336,24 +638376,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192570] = 8, - ACTIONS(9258), 1, + [191774] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9747), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(2853), 1, + STATE(832), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3399), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 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, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642361,25 +638402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192603] = 9, - ACTIONS(473), 1, + [191809] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(5836), 1, - anon_sym_LBRACE, - ACTIONS(9933), 1, - anon_sym_COLON, - STATE(3332), 1, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3969), 1, - sym_class_body, - STATE(4280), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642387,25 +638428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192638] = 9, - ACTIONS(8672), 1, + [191844] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(4217), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(9100), 1, + STATE(9436), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642413,25 +638454,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192673] = 9, - ACTIONS(8672), 1, + [191879] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(940), 1, + STATE(3541), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642439,25 +638480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192708] = 9, - ACTIONS(211), 1, + [191914] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(9931), 1, - anon_sym_COLON, - STATE(4534), 1, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(3542), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(4880), 1, - sym_class_body, - STATE(5047), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642465,24 +638506,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192743] = 8, - ACTIONS(387), 1, + [191949] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, + STATE(2391), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642490,24 +638531,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192776] = 8, - ACTIONS(473), 1, + [191982] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2393), 2, + STATE(623), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642515,25 +638556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192809] = 9, - ACTIONS(8672), 1, + [192015] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4563), 1, + STATE(3014), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9319), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(6590), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642541,24 +638582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192844] = 8, - ACTIONS(387), 1, + [192050] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(1830), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642566,25 +638607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192877] = 9, - ACTIONS(8672), 1, + [192083] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(5504), 1, + STATE(3012), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642592,24 +638633,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192912] = 8, - ACTIONS(387), 1, + [192118] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(4179), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(425), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642617,25 +638659,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192945] = 9, - ACTIONS(8672), 1, + [192153] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2833), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2339), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642643,25 +638684,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192980] = 9, - ACTIONS(8672), 1, + [192186] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(6224), 1, + STATE(1421), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, - STATE(9612), 1, - sym_function_type_parameters, + STATE(9123), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642669,25 +638710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193015] = 9, - ACTIONS(8672), 1, + [192221] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9720), 1, + ACTIONS(483), 1, anon_sym_LPAREN, - STATE(5505), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9945), 1, + anon_sym_class, + STATE(3321), 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(8682), 7, + STATE(3983), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642695,24 +638735,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193050] = 8, - ACTIONS(387), 1, + [192254] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(5834), 1, + anon_sym_LBRACE, + ACTIONS(9932), 1, + anon_sym_COLON, + STATE(3321), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3964), 1, + sym_class_body, + STATE(4263), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642720,25 +638761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193083] = 9, - ACTIONS(8672), 1, + [192289] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9503), 1, anon_sym_LPAREN, - STATE(4992), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(4679), 1, sym_simple_identifier, + STATE(4774), 1, + sym__simple_user_type, + STATE(9612), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642746,24 +638787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193118] = 8, - ACTIONS(387), 1, + [192324] = 9, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9926), 1, + anon_sym_COLON, + STATE(4543), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(4786), 1, + sym_class_body, + STATE(4977), 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, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642771,24 +638813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193151] = 8, - ACTIONS(9248), 1, + [192359] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9793), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5602), 1, + STATE(832), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(5820), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5493), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9252), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642796,25 +638839,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193184] = 9, - ACTIONS(211), 1, + [192394] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(133), 1, anon_sym_LPAREN, - STATE(4534), 1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9947), 1, + anon_sym_class, + STATE(2892), 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(1842), 7, + STATE(3527), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642822,24 +638864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193219] = 8, - ACTIONS(115), 1, + [192427] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2671), 2, + STATE(2350), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642847,25 +638889,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193252] = 9, - ACTIONS(8672), 1, + [192460] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(846), 1, + STATE(4742), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642873,21 +638915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193287] = 8, - ACTIONS(387), 1, + [192495] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(438), 2, + STATE(446), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -642898,25 +638940,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193320] = 9, - ACTIONS(8672), 1, + [192528] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(3059), 1, + STATE(840), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(7893), 1, - sym_simple_identifier, - STATE(9351), 1, + STATE(6569), 1, sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642924,25 +638966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193355] = 9, - ACTIONS(8672), 1, + [192563] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4970), 1, + STATE(4741), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, - STATE(7893), 1, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642950,25 +638992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193390] = 9, - ACTIONS(473), 1, + [192598] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + STATE(5460), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3548), 1, + STATE(7980), 1, + sym_simple_identifier, + STATE(9433), 1, sym__simple_user_type, - STATE(9887), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642976,21 +639018,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193425] = 8, - ACTIONS(387), 1, + [192633] = 5, + ACTIONS(9949), 1, + anon_sym_LPAREN, + STATE(7842), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7118), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7116), 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, + [192660] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(424), 2, + STATE(445), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1664), 7, @@ -643001,25 +639065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193458] = 9, - ACTIONS(8672), 1, + [192693] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(852), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2373), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643027,25 +639090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193493] = 9, - ACTIONS(8672), 1, + [192726] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(4994), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9234), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643053,23 +639116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193528] = 8, - ACTIONS(387), 1, + [192761] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(399), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9947), 1, - anon_sym_class, - STATE(823), 1, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(825), 1, sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1036), 2, - sym_parenthesized_expression, - sym_simple_identifier, + STATE(426), 2, + sym_variable_declaration, + sym_multi_variable_declaration, ACTIONS(1664), 7, anon_sym_get, anon_sym_set, @@ -643078,24 +639141,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193561] = 8, - ACTIONS(473), 1, + [192794] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2659), 2, + STATE(424), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643103,25 +639166,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193594] = 9, - ACTIONS(8672), 1, + [192827] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(3412), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(427), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643129,24 +639191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193629] = 8, - ACTIONS(387), 1, + [192860] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(433), 2, + STATE(2436), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643154,25 +639216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193662] = 9, - ACTIONS(8672), 1, + [192893] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3035), 1, + STATE(3530), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643180,25 +639242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193697] = 9, - ACTIONS(8672), 1, + [192928] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9827), 1, + ACTIONS(569), 1, anon_sym_LPAREN, - STATE(1268), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9952), 1, + anon_sym_class, + STATE(825), 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(8682), 7, + STATE(1174), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643206,25 +639267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193732] = 9, - ACTIONS(8672), 1, + [192961] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9801), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3052), 1, + STATE(4573), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6569), 1, sym__simple_user_type, STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643232,24 +639293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193767] = 8, - ACTIONS(387), 1, + [192996] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(823), 1, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(9934), 1, + anon_sym_COLON, + STATE(4619), 1, sym__lexical_identifier, - STATE(866), 1, + STATE(5200), 1, + sym_class_body, + STATE(5622), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(611), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643257,25 +639319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193800] = 9, - ACTIONS(8672), 1, + [193031] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3373), 1, + STATE(3816), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9203), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643283,21 +639345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193835] = 8, - ACTIONS(473), 1, + [193066] = 8, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2677), 2, + STATE(2628), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -643308,25 +639370,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193868] = 9, - ACTIONS(8672), 1, + [193099] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(9729), 1, + ACTIONS(9708), 1, anon_sym_LPAREN, - STATE(3372), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3181), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643334,25 +639395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193903] = 9, - ACTIONS(8672), 1, + [193132] = 9, + ACTIONS(3240), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4564), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(9936), 1, + anon_sym_COLON, + STATE(3216), 1, + sym_class_body, + STATE(4536), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(5261), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643360,25 +639421,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193938] = 9, - ACTIONS(8672), 1, + [193167] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1267), 1, - sym_function_value_parameters, - STATE(6224), 1, + ACTIONS(5804), 1, + anon_sym_LBRACE, + ACTIONS(9934), 1, + anon_sym_COLON, + STATE(4619), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(5200), 1, + sym_class_body, + STATE(5499), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643386,18 +639447,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193973] = 5, - ACTIONS(9949), 1, + [193202] = 8, + ACTIONS(9262), 1, + sym__alpha_identifier, + ACTIONS(9268), 1, + sym__backtick_identifier, + ACTIONS(9789), 1, anon_sym_LPAREN, - STATE(7854), 1, - sym_value_arguments, + STATE(2817), 1, + sym__lexical_identifier, + STATE(3373), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2293), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9266), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [193235] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 2, + ACTIONS(4309), 4, anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7087), 10, + ACTIONS(4307), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -643408,25 +639492,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194000] = 9, - ACTIONS(8672), 1, + [193258] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643434,24 +639517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194035] = 8, - ACTIONS(115), 1, + [193291] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(4549), 1, + sym_function_value_parameters, + STATE(6386), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2068), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643459,25 +639543,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194068] = 9, - ACTIONS(8672), 1, + [193326] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4561), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643485,25 +639568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194103] = 9, - ACTIONS(8672), 1, + [193359] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9797), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(4564), 1, - sym_function_value_parameters, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + STATE(435), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643511,25 +639593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194138] = 9, - ACTIONS(387), 1, + [193392] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9503), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(823), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(3664), 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(1664), 7, + STATE(2615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643537,21 +639618,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194173] = 8, - ACTIONS(473), 1, + [193425] = 8, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9720), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(3670), 1, + STATE(3664), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2600), 2, + STATE(2660), 2, sym_variable_declaration, sym_multi_variable_declaration, ACTIONS(1652), 7, @@ -643562,25 +639643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194206] = 9, - ACTIONS(7), 1, + [193458] = 8, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9939), 1, - anon_sym_COLON, - STATE(4612), 1, + ACTIONS(9728), 1, + anon_sym_LPAREN, + STATE(5698), 1, sym__lexical_identifier, - STATE(4912), 1, + STATE(5813), 1, sym_simple_identifier, - STATE(5103), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + STATE(5459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643588,24 +639668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194241] = 8, - ACTIONS(7), 1, + [193491] = 9, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(9952), 1, - anon_sym_class, - STATE(4612), 1, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(3314), 1, + sym_simple_identifier, + STATE(3321), 1, sym__lexical_identifier, + STATE(3488), 1, + sym__simple_user_type, + STATE(9755), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5186), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1920), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643613,24 +639694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194274] = 8, - ACTIONS(115), 1, + [193526] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(9722), 1, + ACTIONS(9712), 1, anon_sym_LPAREN, - STATE(2955), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(3108), 1, + STATE(868), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2170), 2, + STATE(433), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1592), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643638,25 +639719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194307] = 9, - ACTIONS(8672), 1, + [193559] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(9745), 1, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(2975), 1, + STATE(3718), 1, sym_function_value_parameters, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(6590), 1, + STATE(7980), 1, sym_simple_identifier, + STATE(9193), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643664,20 +639745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194342] = 9, - ACTIONS(211), 1, + [193594] = 9, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(5598), 1, + ACTIONS(5496), 1, anon_sym_LBRACE, - ACTIONS(9931), 1, + ACTIONS(9926), 1, anon_sym_COLON, - STATE(4534), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(4591), 1, + STATE(4595), 1, sym_simple_identifier, - STATE(4880), 1, + STATE(4786), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, @@ -643690,76 +639771,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194377] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [193629] = 9, + ACTIONS(9230), 1, sym__alpha_identifier, - [194399] = 3, + ACTIONS(9238), 1, + sym__backtick_identifier, + ACTIONS(9503), 1, + anon_sym_LPAREN, + STATE(4535), 1, + sym_simple_identifier, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4593), 1, + sym__simple_user_type, + STATE(10104), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5163), 10, + ACTIONS(9234), 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, + [193664] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194421] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9833), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9831), 11, + STATE(1660), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [193697] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194443] = 5, - ACTIONS(9954), 1, - anon_sym_DOT, - STATE(7857), 1, - aux_sym_user_type_repeat1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(3042), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(9356), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 3, - anon_sym_LPAREN, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643767,172 +639848,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [193732] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - [194469] = 3, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7181), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7179), 11, + STATE(2643), 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, + [193765] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194491] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7173), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7171), 11, + STATE(1672), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [193798] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194513] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5159), 10, + STATE(2446), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [193831] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194535] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7181), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7179), 10, + STATE(1797), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [193864] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194557] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1240), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7173), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7171), 10, + ACTIONS(8745), 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, + [193899] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194579] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7187), 11, + STATE(1688), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [193932] = 8, + ACTIONS(557), 1, sym__alpha_identifier, - [194601] = 3, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(825), 1, + sym__lexical_identifier, + STATE(868), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7187), 10, + STATE(613), 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, + [193965] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194623] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(7980), 1, + sym_simple_identifier, + STATE(9361), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7143), 11, + ACTIONS(8745), 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, + [194000] = 8, + ACTIONS(471), 1, sym__alpha_identifier, - [194645] = 5, - ACTIONS(9961), 1, - sym__quest, - STATE(6738), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3664), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9959), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9957), 8, + STATE(2636), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643940,77 +640075,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194033] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194671] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9131), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9133), 11, + STATE(1780), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [194066] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194693] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(3014), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5187), 10, + ACTIONS(8745), 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, + [194101] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194715] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1243), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5159), 11, + ACTIONS(8745), 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, + [194136] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194737] = 5, - ACTIONS(9961), 1, - sym__quest, - STATE(6738), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(3012), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9965), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9963), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644018,20 +640178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194171] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194763] = 5, - ACTIONS(9967), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 3, - anon_sym_LPAREN, - sym__quest, - sym__backtick_identifier, - ACTIONS(4153), 8, + STATE(2604), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644039,99 +640203,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [194204] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194789] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5163), 11, + STATE(2432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [194237] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [194811] = 3, + ACTIONS(203), 1, + sym__backtick_identifier, + ACTIONS(9708), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3181), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5179), 11, + STATE(2445), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1624), 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, + [194270] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [194833] = 3, + ACTIONS(637), 1, + sym__backtick_identifier, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9938), 1, + anon_sym_COLON, + STATE(825), 1, + sym__lexical_identifier, + STATE(1076), 1, + sym_class_body, + STATE(2233), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5183), 11, + 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, + [194305] = 9, + ACTIONS(8735), 1, sym__alpha_identifier, - [194855] = 3, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4741), 1, + sym_function_value_parameters, + STATE(6386), 1, + sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7191), 11, + ACTIONS(8745), 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, + [194340] = 9, + ACTIONS(557), 1, sym__alpha_identifier, - [194877] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9938), 1, + anon_sym_COLON, + STATE(825), 1, sym__lexical_identifier, - STATE(9718), 1, + STATE(890), 1, sym_simple_identifier, + STATE(1076), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9970), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644139,14 +640331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194907] = 3, + [194375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 2, + ACTIONS(7203), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5187), 11, + ACTIONS(7201), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644158,15 +640350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194929] = 3, + [194397] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 3, + ACTIONS(7167), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5179), 10, + ACTIONS(7165), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -644177,15 +640369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194951] = 3, + [194419] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 3, + ACTIONS(4896), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5183), 10, + ACTIONS(4894), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -644196,15 +640388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194973] = 3, + [194441] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 3, + ACTIONS(7203), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7143), 10, + ACTIONS(7201), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -644215,170 +640407,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194995] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - 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(8682), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195024] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9972), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9395), 1, - sym_simple_identifier, + [194463] = 3, 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, - [195053] = 7, - ACTIONS(9402), 1, - sym__alpha_identifier, - ACTIONS(9410), 1, + ACTIONS(7183), 3, + anon_sym_AT, + anon_sym_LPAREN, 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(9408), 7, + ACTIONS(7181), 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, - [195082] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(9974), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9238), 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, - [195111] = 5, - ACTIONS(9976), 1, - anon_sym_DOT, - STATE(7889), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4195), 2, + [194485] = 5, + ACTIONS(9958), 1, sym__quest, - 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, - [195136] = 7, - ACTIONS(9285), 1, - sym__alpha_identifier, - ACTIONS(9291), 1, - sym__backtick_identifier, - STATE(5682), 1, - sym__lexical_identifier, - STATE(5787), 1, - sym_simple_identifier, - STATE(5815), 1, - sym__simple_user_type, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9289), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195165] = 4, - ACTIONS(9979), 1, + ACTIONS(9956), 3, 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(8702), 1, sym__backtick_identifier, - ACTIONS(9981), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9225), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9954), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644386,122 +640446,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195217] = 7, - ACTIONS(9216), 1, sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(8516), 1, - sym_simple_identifier, - STATE(9168), 1, - sym_identifier, + [194511] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195246] = 7, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(7197), 2, + anon_sym_AT, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(8516), 1, - sym_simple_identifier, - STATE(8517), 1, - sym_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(7195), 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, - [195275] = 5, - ACTIONS(9983), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [194533] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, + ACTIONS(7167), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(7165), 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, - [195300] = 5, - ACTIONS(9986), 1, - anon_sym_DOT, - STATE(7877), 1, - aux_sym_user_type_repeat1, + [194555] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, + ACTIONS(4784), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(4782), 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, - [195325] = 5, - ACTIONS(9989), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + [194577] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, + ACTIONS(4796), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4794), 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, - [195350] = 5, - ACTIONS(9992), 1, + [194599] = 5, + ACTIONS(9960), 1, anon_sym_DOT, - STATE(7879), 1, + STATE(7865), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, + ACTIONS(4141), 3, + anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644510,38 +640544,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195375] = 5, - ACTIONS(9995), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + [194625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, + ACTIONS(7207), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(7205), 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, - [195400] = 5, - ACTIONS(9998), 1, - anon_sym_DOT, - STATE(7881), 1, - aux_sym_user_type_repeat1, + [194647] = 5, + ACTIONS(9958), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, + ACTIONS(9965), 3, + anon_sym_DOT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(9963), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644550,290 +640584,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195425] = 5, - ACTIONS(10001), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + [194673] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, + ACTIONS(9918), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(9916), 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, - [195450] = 5, - ACTIONS(10004), 1, - anon_sym_DOT, - STATE(7883), 1, - aux_sym_user_type_repeat1, + [194695] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, + ACTIONS(4860), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(4858), 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, - [195475] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10007), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9252), 1, - sym_simple_identifier, + [194717] = 3, 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, - [195504] = 7, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(4896), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(10009), 1, - anon_sym_class, - STATE(4612), 1, - sym__lexical_identifier, - STATE(5227), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(4894), 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, - [195533] = 4, - ACTIONS(10011), 1, - anon_sym_DOT, - 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, + sym__alpha_identifier, + [194739] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7089), 2, + ACTIONS(4888), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7087), 8, + ACTIONS(4886), 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, - [195581] = 5, - ACTIONS(10017), 1, - anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + [194761] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, + ACTIONS(7207), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(7205), 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, - [195606] = 7, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(5686), 1, - sym_simple_identifier, - STATE(5708), 1, - sym__simple_user_type, + [194783] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(4784), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4782), 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, - [195635] = 4, - ACTIONS(10020), 1, - anon_sym_DOT, - STATE(7873), 1, - aux_sym_user_type_repeat1, + sym__alpha_identifier, + [194805] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4796), 3, + anon_sym_AT, 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(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, + ACTIONS(4794), 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, - [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, - ACTIONS(8702), 1, - sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(6549), 1, - sym__simple_user_type, - STATE(7893), 1, - sym_simple_identifier, + [194827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4860), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4858), 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, - [195739] = 7, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, - sym__backtick_identifier, - ACTIONS(10024), 1, - anon_sym_class, - STATE(4534), 1, - sym__lexical_identifier, - STATE(4879), 1, - sym_simple_identifier, + [194849] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(4888), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4886), 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, - [195768] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [194871] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10026), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9191), 1, + STATE(9477), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9967), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644841,65 +640778,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195797] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10028), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9224), 1, - sym_simple_identifier, + [194901] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(7197), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7195), 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, - [195826] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10030), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9214), 1, - sym_simple_identifier, + [194923] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(7183), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7181), 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, - [195855] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10032), 1, + [194945] = 5, + ACTIONS(9969), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9226), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4124), 3, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644907,43 +640836,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195884] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10034), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9200), 1, - sym_simple_identifier, + [194971] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9113), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9115), 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, - [195913] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [194993] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10036), 1, + ACTIONS(9972), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9267), 1, + STATE(9157), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644951,21 +640878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195942] = 7, - ACTIONS(8672), 1, + [195022] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10038), 1, + ACTIONS(9974), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9367), 1, + STATE(9413), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644973,18 +640900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195971] = 5, - ACTIONS(10040), 1, + [195051] = 5, + ACTIONS(9976), 1, anon_sym_DOT, - STATE(8008), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, + ACTIONS(4124), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644993,21 +640920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195996] = 7, - ACTIONS(9268), 1, + [195076] = 7, + ACTIONS(9262), 1, sym__alpha_identifier, - ACTIONS(9272), 1, + ACTIONS(9268), 1, sym__backtick_identifier, - STATE(5686), 1, + STATE(2817), 1, + sym__lexical_identifier, + STATE(2868), 1, sym_simple_identifier, - STATE(5708), 1, + STATE(3031), 1, sym__simple_user_type, - STATE(5713), 1, - sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9270), 7, + ACTIONS(9266), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645015,21 +640942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196025] = 7, - ACTIONS(8672), 1, + [195105] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10043), 1, + ACTIONS(9979), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9192), 1, + STATE(9128), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645037,21 +640964,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196054] = 7, - ACTIONS(8672), 1, + [195134] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10045), 1, + ACTIONS(9981), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9178), 1, + STATE(9273), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645059,21 +640986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196083] = 7, - ACTIONS(8672), 1, + [195163] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(8510), 1, sym_simple_identifier, - STATE(8857), 1, + STATE(8891), 1, sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645081,21 +641008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196112] = 7, - ACTIONS(7), 1, + [195192] = 7, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - ACTIONS(10047), 1, - anon_sym_class, - STATE(4612), 1, - sym__lexical_identifier, - STATE(5191), 1, + STATE(4535), 1, sym_simple_identifier, + STATE(4536), 1, + sym__lexical_identifier, + STATE(4593), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645103,21 +641030,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196141] = 7, - ACTIONS(8672), 1, + [195221] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10049), 1, + ACTIONS(9983), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9250), 1, + STATE(9154), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645125,21 +641052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196170] = 7, - ACTIONS(8672), 1, + [195250] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10051), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9169), 1, + STATE(818), 1, sym_simple_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(849), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645147,21 +641074,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196199] = 7, - ACTIONS(8672), 1, + [195279] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10053), 1, + ACTIONS(9985), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9158), 1, + STATE(9164), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645169,21 +641096,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196228] = 7, - ACTIONS(473), 1, + [195308] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(3308), 1, - sym_simple_identifier, - STATE(3332), 1, + ACTIONS(9987), 1, + anon_sym_class, + STATE(4619), 1, sym__lexical_identifier, - STATE(3548), 1, - sym__simple_user_type, + STATE(5149), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645191,21 +641118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196257] = 7, - ACTIONS(9386), 1, + [195337] = 7, + ACTIONS(9378), 1, sym__alpha_identifier, - ACTIONS(9398), 1, + ACTIONS(9390), 1, sym__backtick_identifier, - STATE(3554), 1, + STATE(3391), 1, sym_simple_identifier, - STATE(3648), 1, + STATE(3626), 1, sym__lexical_identifier, - STATE(3742), 1, + STATE(3713), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 7, + ACTIONS(9386), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645213,21 +641140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196286] = 7, - ACTIONS(8672), 1, + [195366] = 7, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - ACTIONS(10055), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(9989), 1, + sym_wildcard_import, + STATE(5692), 1, sym__lexical_identifier, - STATE(9273), 1, + STATE(8936), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645235,21 +641162,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196315] = 7, - ACTIONS(9464), 1, + [195395] = 7, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(7357), 1, - sym_simple_identifier, - STATE(7388), 1, + ACTIONS(9991), 1, + anon_sym_class, + STATE(4543), 1, sym__lexical_identifier, - STATE(7727), 1, - sym__simple_user_type, + STATE(4775), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9470), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645257,21 +641184,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196344] = 7, - ACTIONS(115), 1, + [195424] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10057), 1, - anon_sym_class, - STATE(2955), 1, + ACTIONS(9993), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3459), 1, + STATE(9275), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645279,21 +641206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196373] = 7, - ACTIONS(8672), 1, + [195453] = 7, + ACTIONS(9414), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9422), 1, sym__backtick_identifier, - ACTIONS(10059), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9449), 1, + STATE(7318), 1, sym_simple_identifier, + STATE(7409), 1, + sym__lexical_identifier, + STATE(7715), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9420), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645301,21 +641228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196402] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10061), 1, + [195482] = 5, + ACTIONS(9995), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9118), 1, - sym_simple_identifier, + STATE(7887), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645323,21 +641247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196431] = 7, - ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(469), 1, + [195507] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10063), 1, - anon_sym_class, - STATE(823), 1, + ACTIONS(9998), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(1098), 1, + STATE(9185), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645345,21 +641270,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196460] = 7, - ACTIONS(8672), 1, + [195536] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10065), 1, + ACTIONS(10000), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9213), 1, + STATE(9371), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645367,21 +641292,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196489] = 7, - ACTIONS(8672), 1, + [195565] = 5, + ACTIONS(10002), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 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, + [195590] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10067), 1, + ACTIONS(10005), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9446), 1, + STATE(9283), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645389,21 +641334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196518] = 7, - ACTIONS(8672), 1, + [195619] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10069), 1, + ACTIONS(10007), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9166), 1, + STATE(9165), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645411,18 +641356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196547] = 5, - ACTIONS(10071), 1, + [195648] = 5, + ACTIONS(10009), 1, anon_sym_DOT, - STATE(6591), 1, + STATE(7869), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, + ACTIONS(4141), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645431,21 +641376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [196572] = 7, - ACTIONS(8672), 1, + [195673] = 7, + ACTIONS(9424), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9432), 1, sym__backtick_identifier, - ACTIONS(10074), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9140), 1, + STATE(7254), 1, sym_simple_identifier, + STATE(7298), 1, + sym__lexical_identifier, + STATE(7591), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9430), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645453,18 +641398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196601] = 5, - ACTIONS(10076), 1, + [195702] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10012), 1, anon_sym_DOT, - STATE(7930), 1, - aux_sym_user_type_repeat1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9398), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645472,22 +641420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195731] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - [196626] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - ACTIONS(10079), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9255), 1, + STATE(2782), 1, sym_simple_identifier, + STATE(2803), 1, + sym__lexical_identifier, + STATE(2864), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645495,21 +641442,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196655] = 7, - ACTIONS(8672), 1, + [195760] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10081), 1, + ACTIONS(10014), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9439), 1, + STATE(9229), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645517,21 +641464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196684] = 7, - ACTIONS(8672), 1, + [195789] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(10016), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9299), 1, + STATE(9328), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645539,21 +641486,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196713] = 7, - ACTIONS(8672), 1, + [195818] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10085), 1, + ACTIONS(10018), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9141), 1, + STATE(9161), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645561,18 +641508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196742] = 5, - ACTIONS(10087), 1, + [195847] = 5, + ACTIONS(10020), 1, anon_sym_DOT, - STATE(6591), 1, + STATE(7939), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, + ACTIONS(4141), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645581,21 +641528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [196767] = 7, - ACTIONS(211), 1, + [195872] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4534), 1, + ACTIONS(10023), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4538), 1, + STATE(9390), 1, sym_simple_identifier, - STATE(4577), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645603,21 +641550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [195901] = 5, + ACTIONS(10025), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645625,21 +641569,22 @@ 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, - ACTIONS(8702), 1, + [195926] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10090), 1, + ACTIONS(10028), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9320), 1, + STATE(9400), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645647,21 +641592,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196854] = 7, - ACTIONS(8672), 1, + [195955] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10092), 1, + ACTIONS(10030), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9183), 1, + STATE(9258), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645669,21 +641614,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196883] = 7, - ACTIONS(8672), 1, + [195984] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10094), 1, + ACTIONS(10032), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9332), 1, + STATE(9404), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645691,21 +641636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196912] = 7, - ACTIONS(387), 1, + [196013] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10096), 1, - anon_sym_class, - STATE(823), 1, + ACTIONS(10034), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(1073), 1, + STATE(9201), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645713,21 +641658,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196941] = 7, - ACTIONS(8672), 1, + [196042] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10098), 1, + ACTIONS(10036), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9143), 1, + STATE(9438), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645735,21 +641680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196970] = 7, - ACTIONS(8672), 1, + [196071] = 7, + ACTIONS(9438), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9446), 1, sym__backtick_identifier, - ACTIONS(10100), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9306), 1, + STATE(7190), 1, sym_simple_identifier, + STATE(7211), 1, + sym__lexical_identifier, + STATE(7237), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9444), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645757,21 +641702,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196999] = 7, - ACTIONS(8672), 1, + [196100] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10102), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(10038), 1, + anon_sym_class, + STATE(2892), 1, sym__lexical_identifier, - STATE(9179), 1, + STATE(3603), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645779,21 +641724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197028] = 7, - ACTIONS(9208), 1, - sym__alpha_identifier, - ACTIONS(9214), 1, - sym__backtick_identifier, - STATE(8325), 1, - sym_simple_identifier, - STATE(8333), 1, - sym__lexical_identifier, - STATE(8373), 1, - sym__simple_user_type, + [196129] = 5, + ACTIONS(10040), 1, + anon_sym_DOT, + STATE(7927), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9210), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645801,21 +641743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197057] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [196154] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10104), 1, + ACTIONS(10043), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9381), 1, + STATE(9441), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645823,18 +641766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197086] = 5, - ACTIONS(10106), 1, - anon_sym_DOT, - STATE(7923), 1, - aux_sym_user_type_repeat1, + [196183] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8510), 1, + sym_simple_identifier, + STATE(9013), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645842,22 +641788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [196212] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - [197111] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(2942), 1, sym_simple_identifier, - STATE(9584), 1, - sym_variable_declaration, + STATE(3006), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645865,21 +641810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197140] = 7, - ACTIONS(8672), 1, + [196241] = 4, + ACTIONS(10045), 1, + anon_sym_DOT, + STATE(8007), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 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, + [196264] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10109), 1, + ACTIONS(10047), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9437), 1, + STATE(9449), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645887,21 +641851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197169] = 7, - ACTIONS(8672), 1, + [196293] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10111), 1, + ACTIONS(10049), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9180), 1, + STATE(9316), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645909,21 +641873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197198] = 7, - ACTIONS(8672), 1, + [196322] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10113), 1, + ACTIONS(10051), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9375), 1, + STATE(9338), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645931,21 +641895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197227] = 7, - ACTIONS(8672), 1, + [196351] = 7, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10115), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(10053), 1, + anon_sym_class, + STATE(825), 1, sym__lexical_identifier, - STATE(9182), 1, + STATE(1025), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645953,21 +641917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197256] = 7, - ACTIONS(9258), 1, + [196380] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9266), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2826), 1, - sym_simple_identifier, - STATE(2853), 1, + ACTIONS(10055), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3014), 1, - sym__simple_user_type, + STATE(9442), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645975,21 +641939,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197285] = 7, - ACTIONS(8672), 1, + [196409] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10117), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9369), 1, + STATE(8510), 1, sym_simple_identifier, + STATE(8883), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645997,21 +641961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197314] = 7, - ACTIONS(8672), 1, + [196438] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10119), 1, + ACTIONS(10057), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9195), 1, + STATE(9425), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646019,21 +641983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197343] = 7, - ACTIONS(8672), 1, + [196467] = 7, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - ACTIONS(10121), 1, - anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9196), 1, + STATE(3314), 1, sym_simple_identifier, + STATE(3321), 1, + sym__lexical_identifier, + STATE(3488), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646041,21 +642005,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197372] = 7, - ACTIONS(115), 1, + [196496] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2899), 1, - sym_simple_identifier, - STATE(2955), 1, + ACTIONS(10059), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3021), 1, - sym__simple_user_type, + STATE(9387), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646063,21 +642027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197401] = 7, - ACTIONS(8672), 1, + [196525] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10123), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9365), 1, + STATE(8510), 1, sym_simple_identifier, + STATE(8885), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646085,21 +642049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197430] = 7, - ACTIONS(8672), 1, + [196554] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10125), 1, + ACTIONS(10061), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9197), 1, + STATE(9374), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646107,21 +642071,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197459] = 7, - ACTIONS(9434), 1, + [196583] = 11, + ACTIONS(10063), 1, + anon_sym_typealias, + ACTIONS(10067), 1, + anon_sym_enum, + ACTIONS(10069), 1, + anon_sym_constructor, + ACTIONS(10073), 1, + anon_sym_companion, + ACTIONS(10075), 1, + anon_sym_object, + ACTIONS(10077), 1, + anon_sym_fun, + ACTIONS(10079), 1, + anon_sym_get, + ACTIONS(10081), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10065), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10071), 2, + anon_sym_val, + anon_sym_var, + [196620] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5660), 1, + ACTIONS(10083), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(5684), 1, + STATE(9394), 1, sym_simple_identifier, - STATE(5706), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646129,21 +642119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197488] = 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(8822), 1, - sym_variable_declaration, + [196649] = 5, + ACTIONS(10085), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646151,21 +642138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197517] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [196674] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10127), 1, + ACTIONS(10088), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9202), 1, + STATE(9369), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646173,21 +642161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197546] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10129), 1, + [196703] = 5, + ACTIONS(10090), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9203), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646195,21 +642180,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197575] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [196728] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10131), 1, + ACTIONS(10093), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9348), 1, + STATE(9280), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646217,21 +642203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197604] = 7, - ACTIONS(8672), 1, + [196757] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - ACTIONS(10133), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(10095), 1, + anon_sym_class, + STATE(2892), 1, sym__lexical_identifier, - STATE(9208), 1, + STATE(3420), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646239,21 +642225,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197633] = 7, - ACTIONS(8672), 1, + [196786] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10135), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9216), 1, + STATE(9087), 1, + sym_parameter, + STATE(9625), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646261,21 +642247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197662] = 7, - ACTIONS(8672), 1, + [196815] = 7, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10137), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(9335), 1, + STATE(4547), 1, sym_simple_identifier, + STATE(4559), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646283,21 +642269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197691] = 7, - ACTIONS(8672), 1, + [196844] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10139), 1, + ACTIONS(10097), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9340), 1, + STATE(9364), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646305,21 +642291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197720] = 7, - ACTIONS(8672), 1, + [196873] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10141), 1, + ACTIONS(10099), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9338), 1, + STATE(9423), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646327,21 +642313,18 @@ 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, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10143), 1, + [196902] = 5, + ACTIONS(10101), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9331), 1, - sym_simple_identifier, + STATE(7941), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646349,21 +642332,22 @@ 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, - ACTIONS(637), 1, + [196927] = 7, + ACTIONS(9276), 1, + sym__alpha_identifier, + ACTIONS(9282), 1, sym__backtick_identifier, - ACTIONS(10145), 1, - anon_sym_class, - STATE(2791), 1, + STATE(8323), 1, sym__lexical_identifier, - STATE(3140), 1, + STATE(8326), 1, sym_simple_identifier, + STATE(8386), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(9278), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646371,21 +642355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197807] = 7, - ACTIONS(8672), 1, + [196956] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10147), 1, + ACTIONS(10104), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9218), 1, + STATE(9282), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646393,21 +642377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197836] = 7, - ACTIONS(8672), 1, + [196985] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10149), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9228), 1, + STATE(8510), 1, sym_simple_identifier, + STATE(8797), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646415,21 +642399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197865] = 7, - ACTIONS(8672), 1, + [197014] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10151), 1, + ACTIONS(10106), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9235), 1, + STATE(9227), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646437,21 +642421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197894] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10153), 1, + [197043] = 5, + ACTIONS(10108), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9328), 1, - sym_simple_identifier, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646459,21 +642440,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197923] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [197068] = 7, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, sym__backtick_identifier, - ACTIONS(10155), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(10111), 1, + anon_sym_class, + STATE(825), 1, sym__lexical_identifier, - STATE(9236), 1, + STATE(1071), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197097] = 5, + ACTIONS(10113), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646481,21 +642482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197952] = 7, - ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(637), 1, + [197122] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2791), 1, + ACTIONS(10116), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(2803), 1, + STATE(9432), 1, sym_simple_identifier, - STATE(2818), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646503,21 +642505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197981] = 7, - ACTIONS(8672), 1, + [197151] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10157), 1, + ACTIONS(10118), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9324), 1, + STATE(9226), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646525,16 +642527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198010] = 3, + [197180] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10120), 1, + anon_sym_DOT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9355), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4212), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4210), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646542,22 +642549,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197209] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - [198031] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10159), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9239), 1, + STATE(8510), 1, sym_simple_identifier, + STATE(9509), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646565,21 +642571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198060] = 7, - ACTIONS(8672), 1, + [197238] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10161), 1, + ACTIONS(10122), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9321), 1, + STATE(9323), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646587,18 +642593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198089] = 5, - ACTIONS(10163), 1, + [197267] = 5, + ACTIONS(10124), 1, anon_sym_DOT, - STATE(6591), 1, + STATE(7925), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, + ACTIONS(4141), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646607,21 +642613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198114] = 7, - ACTIONS(8672), 1, + [197292] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10166), 1, + ACTIONS(10127), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9270), 1, + STATE(9329), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646629,21 +642635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198143] = 7, - ACTIONS(8672), 1, + [197321] = 7, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10129), 1, + anon_sym_class, + STATE(3321), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(3984), 1, sym_simple_identifier, - STATE(8967), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646651,18 +642657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198172] = 5, - ACTIONS(10168), 1, - anon_sym_DOT, - STATE(7977), 1, - aux_sym_user_type_repeat1, + [197350] = 7, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, + sym__backtick_identifier, + ACTIONS(10131), 1, + anon_sym_class, + STATE(3321), 1, + sym__lexical_identifier, + STATE(4003), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646670,22 +642679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197379] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - [198197] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10171), 1, + ACTIONS(10133), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9318), 1, + STATE(9218), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646693,16 +642701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198226] = 7, - ACTIONS(211), 1, + [197408] = 7, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - ACTIONS(10173), 1, + ACTIONS(10135), 1, anon_sym_class, - STATE(4534), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(4756), 1, + STATE(4771), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -646715,21 +642723,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198255] = 7, - ACTIONS(8672), 1, + [197437] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10175), 1, + ACTIONS(10137), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9172), 1, + STATE(9202), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646737,21 +642745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198284] = 7, - ACTIONS(8672), 1, + [197466] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10177), 1, + ACTIONS(10139), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9315), 1, + STATE(9194), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646759,21 +642767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198313] = 7, - ACTIONS(8672), 1, + [197495] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10141), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(9457), 1, sym_simple_identifier, - STATE(9425), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646781,21 +642789,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198342] = 7, - ACTIONS(8672), 1, + [197524] = 7, + ACTIONS(9450), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - ACTIONS(10179), 1, - anon_sym_DOT, - STATE(6224), 1, + STATE(5666), 1, sym__lexical_identifier, - STATE(9314), 1, + STATE(5685), 1, sym_simple_identifier, + STATE(5715), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646803,21 +642811,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198371] = 7, - ACTIONS(8672), 1, + [197553] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10181), 1, + ACTIONS(10143), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9417), 1, + STATE(9204), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646825,21 +642833,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198400] = 7, - ACTIONS(9232), 1, + [197582] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4544), 1, - sym_simple_identifier, - STATE(4545), 1, + ACTIONS(10145), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4608), 1, - sym__simple_user_type, + STATE(9187), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646847,21 +642855,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198429] = 7, - ACTIONS(8672), 1, + [197611] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10183), 1, + ACTIONS(10147), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9097), 1, + STATE(9225), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646869,21 +642877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198458] = 7, - ACTIONS(8672), 1, + [197640] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10185), 1, - anon_sym_DOT, - STATE(6224), 1, + ACTIONS(10149), 1, + anon_sym_class, + STATE(4619), 1, sym__lexical_identifier, - STATE(9313), 1, + STATE(5187), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646891,21 +642899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198487] = 7, - ACTIONS(8672), 1, + [197669] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10151), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(9126), 1, sym_simple_identifier, - STATE(8806), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646913,18 +642921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198516] = 5, - ACTIONS(10187), 1, + [197698] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10153), 1, anon_sym_DOT, - STATE(8012), 1, - aux_sym_user_type_repeat1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9228), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646932,22 +642943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [197727] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - [198541] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10190), 1, + ACTIONS(10155), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9261), 1, + STATE(9233), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646955,21 +642965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198570] = 7, - ACTIONS(115), 1, + [197756] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10192), 1, - anon_sym_class, - STATE(2955), 1, + ACTIONS(10157), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3583), 1, + STATE(9173), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646977,21 +642987,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198599] = 7, - ACTIONS(473), 1, + [197785] = 7, + ACTIONS(9470), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(9478), 1, sym__backtick_identifier, - ACTIONS(10194), 1, - anon_sym_class, - STATE(3332), 1, + STATE(5839), 1, + sym_simple_identifier, + STATE(5847), 1, sym__lexical_identifier, - STATE(3960), 1, + STATE(5857), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9476), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197814] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10159), 1, + anon_sym_DOT, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9245), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646999,21 +643031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198628] = 7, - ACTIONS(8672), 1, + [197843] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10196), 1, + ACTIONS(10161), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9380), 1, + STATE(9163), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647021,18 +643053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198657] = 5, - ACTIONS(10198), 1, + [197872] = 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(4155), 2, + ACTIONS(4124), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647041,21 +643073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198682] = 7, - ACTIONS(7), 1, + [197897] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4612), 1, + ACTIONS(10166), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4683), 1, + STATE(9305), 1, sym_simple_identifier, - STATE(4857), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647063,21 +643095,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198711] = 7, - ACTIONS(8672), 1, + [197926] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10201), 1, + ACTIONS(10168), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9413), 1, + STATE(9156), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647085,21 +643117,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198740] = 7, - ACTIONS(8672), 1, + [197955] = 4, + ACTIONS(10170), 1, + anon_sym_DOT, + STATE(7971), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 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, + [197978] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10173), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(9113), 1, sym_simple_identifier, - STATE(9092), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647107,18 +643158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198769] = 5, - ACTIONS(10203), 1, - anon_sym_DOT, - STATE(7997), 1, - aux_sym_user_type_repeat1, + [198007] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8510), 1, + sym_simple_identifier, + STATE(8826), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647126,22 +643180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198036] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - [198794] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10206), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9459), 1, + STATE(9247), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647149,47 +643202,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [198065] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10228), 1, + ACTIONS(10177), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9165), 1, + STATE(9100), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647197,21 +643224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198889] = 7, - ACTIONS(8672), 1, + [198094] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10179), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(9022), 1, - sym_parameter, - STATE(9513), 1, + STATE(9274), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647219,21 +643246,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198918] = 7, - ACTIONS(387), 1, + [198123] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(823), 1, + ACTIONS(10181), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(824), 1, + STATE(9443), 1, sym_simple_identifier, - STATE(858), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647241,21 +643268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198947] = 7, - ACTIONS(8672), 1, + [198152] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10230), 1, + ACTIONS(10183), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9304), 1, + STATE(9159), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647263,18 +643290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198976] = 5, - ACTIONS(10232), 1, + [198181] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10185), 1, anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9279), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647282,22 +643312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198210] = 4, + ACTIONS(9169), 1, + anon_sym_LT, + STATE(6557), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4161), 10, + anon_sym_DOT, + 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, + [198233] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - [199001] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10235), 1, + ACTIONS(10187), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9361), 1, + STATE(9139), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647305,21 +643353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199030] = 7, - ACTIONS(8672), 1, + [198262] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10237), 1, + ACTIONS(10189), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9116), 1, + STATE(9281), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647327,21 +643375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199059] = 7, - ACTIONS(9484), 1, + [198291] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9492), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(7150), 1, - sym_simple_identifier, - STATE(7215), 1, + ACTIONS(10191), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(7279), 1, - sym__simple_user_type, + STATE(9291), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9490), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647349,18 +643397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199088] = 5, - ACTIONS(10239), 1, + [198320] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10193), 1, anon_sym_DOT, - STATE(6591), 1, - aux_sym_user_type_repeat1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9292), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647368,22 +643419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [199113] = 7, - ACTIONS(1724), 1, - sym__alpha_identifier, - ACTIONS(1788), 1, - sym__backtick_identifier, - STATE(5340), 1, - sym_simple_identifier, - STATE(5458), 1, - sym__lexical_identifier, - STATE(5503), 1, - sym__simple_user_type, + [198349] = 5, + ACTIONS(10195), 1, + anon_sym_DOT, + STATE(7968), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3092), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647391,21 +643438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199142] = 7, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [198374] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10242), 1, + ACTIONS(10198), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9227), 1, + STATE(9146), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647413,21 +643461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199171] = 7, - ACTIONS(9448), 1, + [198403] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9456), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(7266), 1, - sym_simple_identifier, - STATE(7314), 1, + ACTIONS(10200), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(7501), 1, - sym__simple_user_type, + STATE(9297), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9454), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647435,18 +643483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199200] = 5, - ACTIONS(10244), 1, + [198432] = 5, + ACTIONS(10202), 1, anon_sym_DOT, - STATE(8022), 1, + STATE(7994), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 2, + ACTIONS(4141), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4193), 8, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647455,21 +643503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [199225] = 7, - ACTIONS(8672), 1, + [198457] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10205), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(9143), 1, sym_simple_identifier, - STATE(9748), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647477,21 +643525,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199254] = 7, - ACTIONS(9248), 1, + [198486] = 7, + ACTIONS(9254), 1, sym__alpha_identifier, - ACTIONS(9256), 1, + ACTIONS(9258), 1, sym__backtick_identifier, - STATE(5602), 1, - sym__lexical_identifier, - STATE(5617), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(5649), 1, + STATE(5698), 1, + sym__lexical_identifier, + STATE(5714), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9252), 7, + ACTIONS(9256), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647499,21 +643547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199283] = 7, - ACTIONS(8672), 1, + [198515] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10207), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8564), 1, + STATE(9140), 1, sym_simple_identifier, - STATE(8929), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647521,21 +643569,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199312] = 7, - ACTIONS(8672), 1, + [198544] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10247), 1, + ACTIONS(10209), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9259), 1, + STATE(9300), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647543,21 +643591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199341] = 7, - ACTIONS(8672), 1, + [198573] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10249), 1, + ACTIONS(10211), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9435), 1, + STATE(9306), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647565,18 +643613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199370] = 5, - ACTIONS(10251), 1, + [198602] = 5, + ACTIONS(10213), 1, anon_sym_DOT, STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 2, + ACTIONS(4124), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4153), 8, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647585,21 +643633,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [199395] = 7, - ACTIONS(473), 1, + [198627] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10254), 1, - anon_sym_class, - STATE(3332), 1, + ACTIONS(10216), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(3994), 1, + STATE(9114), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647607,21 +643655,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199424] = 7, - ACTIONS(8672), 1, + [198656] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - ACTIONS(10256), 1, + ACTIONS(10218), 1, anon_sym_DOT, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9305), 1, + STATE(9168), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647629,21 +643677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199453] = 7, - ACTIONS(8672), 1, - sym__alpha_identifier, - ACTIONS(8702), 1, - sym__backtick_identifier, - ACTIONS(10258), 1, + [198685] = 5, + ACTIONS(10220), 1, anon_sym_DOT, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9122), 1, - sym_simple_identifier, + STATE(7999), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647651,19 +643696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199482] = 6, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [198710] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10223), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(9385), 1, + STATE(9293), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647671,19 +643719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199508] = 6, - ACTIONS(10260), 1, - sym__alpha_identifier, - ACTIONS(10264), 1, - sym__backtick_identifier, - STATE(577), 1, - sym_simple_identifier, - STATE(877), 1, - sym__lexical_identifier, + [198739] = 5, + ACTIONS(10225), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647691,19 +643738,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199534] = 6, - ACTIONS(8672), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + [198764] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10228), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(8833), 1, + STATE(9307), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647711,19 +643761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199560] = 6, - ACTIONS(10266), 1, + [198793] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2308), 1, - sym_simple_identifier, - STATE(3630), 1, + ACTIONS(10230), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, + STATE(9345), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647731,19 +643783,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [198822] = 5, + ACTIONS(10232), 1, + anon_sym_DOT, + STATE(8004), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647751,19 +643802,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199612] = 6, - ACTIONS(211), 1, sym__alpha_identifier, - ACTIONS(293), 1, + [198847] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4534), 1, + ACTIONS(10235), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, - STATE(4595), 1, + STATE(9407), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198876] = 5, + ACTIONS(10237), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4122), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647771,19 +643844,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199638] = 6, - ACTIONS(10266), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + [198901] = 5, + ACTIONS(10240), 1, + anon_sym_DOT, + STATE(8015), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 2, + sym__quest, sym__backtick_identifier, - STATE(2576), 1, + ACTIONS(4139), 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, + [198926] = 7, + ACTIONS(1724), 1, + sym__alpha_identifier, + ACTIONS(1788), 1, + sym__backtick_identifier, + STATE(5424), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(5441), 1, sym__lexical_identifier, + STATE(5513), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(3092), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647791,43 +643887,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199664] = 10, - ACTIONS(1646), 1, + [198955] = 4, + ACTIONS(10243), 1, + anon_sym_DOT, + STATE(7971), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(3656), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3670), 1, - sym_label, - STATE(2976), 1, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [198978] = 5, + ACTIONS(10245), 1, + anon_sym_LPAREN, + STATE(7169), 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, + ACTIONS(7118), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7116), 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(9224), 1, + [199003] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5328), 1, - sym_simple_identifier, - STATE(5685), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(8510), 1, + sym_simple_identifier, + STATE(9692), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647835,19 +643948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199724] = 6, - ACTIONS(8672), 1, + [199032] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10248), 1, + anon_sym_class, + STATE(2803), 1, sym__lexical_identifier, - STATE(9259), 1, + STATE(3213), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647855,19 +643970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199750] = 6, - ACTIONS(10266), 1, + [199061] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2262), 1, - sym_simple_identifier, - STATE(3630), 1, + ACTIONS(10250), 1, + anon_sym_DOT, + STATE(6386), 1, sym__lexical_identifier, + STATE(9368), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647875,19 +643992,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199776] = 6, - ACTIONS(10272), 1, + [199090] = 7, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(1383), 1, + STATE(5687), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(5692), 1, sym__lexical_identifier, + STATE(5714), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647895,37 +644014,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199802] = 4, - ACTIONS(10278), 1, + [199119] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + ACTIONS(10252), 1, anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9428), 1, + sym_simple_identifier, 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, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199148] = 7, + ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9212), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9305), 1, + STATE(5602), 1, sym_simple_identifier, + STATE(5616), 1, + sym__lexical_identifier, + STATE(5644), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647933,37 +644058,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199850] = 4, - ACTIONS(10281), 1, + [199177] = 5, + ACTIONS(10254), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(6591), 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, + ACTIONS(4124), 2, sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [199872] = 6, - ACTIONS(10260), 1, + sym__backtick_identifier, + ACTIONS(4122), 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, + [199202] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(399), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(8510), 1, + sym_simple_identifier, + STATE(8837), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647971,19 +644100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199898] = 6, - ACTIONS(8672), 1, + [199231] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9226), 1, + STATE(8510), 1, sym_simple_identifier, + STATE(9418), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647991,19 +644122,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199924] = 6, - ACTIONS(10260), 1, + [199260] = 7, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(384), 1, + STATE(5692), 1, + sym__lexical_identifier, + STATE(8484), 1, + sym__import_identifier, + STATE(9028), 1, sym_simple_identifier, - STATE(877), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199289] = 7, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(6569), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648011,43 +644166,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [199318] = 3, 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, + ACTIONS(4313), 4, + anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4311), 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(10276), 1, + [199339] = 7, + ACTIONS(9214), 1, + sym__alpha_identifier, + ACTIONS(9220), 1, sym__backtick_identifier, - STATE(1359), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(5683), 1, sym__lexical_identifier, + STATE(5783), 1, + sym_simple_identifier, + STATE(5835), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(9218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648055,19 +644206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200010] = 6, - ACTIONS(8672), 1, + [199368] = 7, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9330), 1, + STATE(6569), 1, + sym__simple_user_type, + STATE(6590), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648075,19 +644228,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200036] = 6, - ACTIONS(8672), 1, + [199397] = 7, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(8809), 1, + STATE(9031), 1, sym_simple_identifier, + STATE(9129), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648095,19 +644250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200062] = 6, - ACTIONS(10266), 1, + [199426] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(2290), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(4619), 1, sym__lexical_identifier, + STATE(4679), 1, + sym_simple_identifier, + STATE(4774), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648115,19 +644272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200088] = 6, - ACTIONS(8672), 1, + [199455] = 7, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(6224), 1, + ACTIONS(10257), 1, + anon_sym_class, + STATE(2803), 1, sym__lexical_identifier, - STATE(9129), 1, + STATE(3074), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648135,19 +644294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200114] = 6, - ACTIONS(9216), 1, - sym__alpha_identifier, - ACTIONS(9224), 1, - sym__backtick_identifier, - STATE(5331), 1, - sym_simple_identifier, - STATE(5685), 1, - sym__lexical_identifier, + [199484] = 5, + ACTIONS(10259), 1, + anon_sym_DOT, + STATE(7899), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(4141), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4139), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648155,19 +644313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200140] = 6, - ACTIONS(10283), 1, sym__alpha_identifier, - ACTIONS(10287), 1, + [199509] = 6, + ACTIONS(10262), 1, + sym__alpha_identifier, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2195), 1, + STATE(2532), 1, sym_simple_identifier, - STATE(3680), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10285), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648175,19 +644334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200166] = 6, - ACTIONS(10272), 1, + [199535] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(1358), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(8912), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648195,19 +644354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200192] = 6, - ACTIONS(10272), 1, + [199561] = 4, + ACTIONS(10268), 1, + anon_sym_DOT, + STATE(6601), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 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, + [199583] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(1323), 1, + STATE(2388), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648215,19 +644392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200218] = 6, - ACTIONS(211), 1, + [199609] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(293), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4534), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5290), 1, + STATE(9128), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648235,19 +644412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200244] = 6, - ACTIONS(7), 1, + [199635] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4612), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5510), 1, + STATE(9173), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648255,19 +644432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200270] = 6, - ACTIONS(10260), 1, + [199661] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(393), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9305), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648275,19 +644452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200296] = 6, - ACTIONS(557), 1, + [199687] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2791), 1, - sym__lexical_identifier, - STATE(2940), 1, + STATE(540), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648295,19 +644472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200322] = 6, - ACTIONS(10272), 1, + [199713] = 6, + ACTIONS(9450), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - STATE(1304), 1, + STATE(5480), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(5666), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648315,14 +644492,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200348] = 6, - ACTIONS(211), 1, + [199739] = 4, + ACTIONS(9958), 1, + sym__quest, + STATE(6688), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4269), 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, + [199761] = 6, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - STATE(4534), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(5554), 1, + STATE(5574), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -648335,19 +644530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200374] = 6, - ACTIONS(10272), 1, + [199787] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2597), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9394), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648355,19 +644550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200400] = 6, - ACTIONS(10272), 1, + [199813] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(1303), 1, + STATE(2567), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648375,19 +644570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200426] = 6, - ACTIONS(10272), 1, + [199839] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2563), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9315), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648395,19 +644590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200452] = 6, - ACTIONS(10272), 1, + [199865] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2599), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9307), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648415,19 +644610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200478] = 6, - ACTIONS(473), 1, + [199891] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4211), 1, + STATE(9024), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648435,19 +644630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200504] = 6, - ACTIONS(10272), 1, + [199917] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(2595), 1, + STATE(5406), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(5692), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648455,19 +644650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200530] = 6, - ACTIONS(10266), 1, + [199943] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2590), 1, + STATE(2418), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648475,19 +644670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200556] = 6, - ACTIONS(387), 1, + [199969] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(867), 1, + STATE(9306), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648495,19 +644690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200582] = 6, - ACTIONS(10266), 1, + [199995] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2584), 1, + STATE(2561), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648515,19 +644710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200608] = 6, - ACTIONS(10266), 1, + [200021] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2582), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9273), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648535,19 +644730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200634] = 6, - ACTIONS(115), 1, + [200047] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2955), 1, - sym__lexical_identifier, - STATE(4052), 1, + STATE(2559), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648555,19 +644750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200660] = 6, - ACTIONS(10266), 1, + [200073] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2564), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9299), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648575,19 +644770,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200686] = 6, - ACTIONS(10272), 1, - sym__alpha_identifier, + [200099] = 4, ACTIONS(10276), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4124), 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, + [200121] = 6, + ACTIONS(471), 1, + sym__alpha_identifier, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(2415), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(3321), 1, sym__lexical_identifier, + STATE(4214), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648595,19 +644808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200712] = 6, - ACTIONS(10272), 1, + [200147] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(1351), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9297), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648615,19 +644828,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200738] = 6, - ACTIONS(10272), 1, + [200173] = 4, + ACTIONS(10278), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 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, + [200195] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(1317), 1, + STATE(407), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648635,19 +644866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200764] = 6, - ACTIONS(10272), 1, + [200221] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2416), 1, + STATE(409), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648655,19 +644886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200790] = 6, - ACTIONS(10266), 1, - sym__alpha_identifier, + [200247] = 6, ACTIONS(10270), 1, + sym__alpha_identifier, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2585), 1, + STATE(410), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648675,19 +644906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200816] = 6, - ACTIONS(557), 1, + [200273] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2791), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3735), 1, + STATE(9137), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648695,19 +644926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200842] = 6, - ACTIONS(10272), 1, + [200299] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2387), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9292), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648715,19 +644946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200868] = 6, - ACTIONS(10260), 1, + [200325] = 6, + ACTIONS(9230), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(9238), 1, sym__backtick_identifier, - STATE(417), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(4536), 1, sym__lexical_identifier, + STATE(5186), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(9234), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648735,19 +644966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200894] = 6, - ACTIONS(10260), 1, + [200351] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(413), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(4619), 1, sym__lexical_identifier, + STATE(5169), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648755,19 +644986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200920] = 6, - ACTIONS(10260), 1, + [200377] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(408), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9288), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648775,19 +645006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200946] = 6, - ACTIONS(10260), 1, + [200403] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(536), 1, + STATE(411), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648795,19 +645026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200972] = 6, - ACTIONS(10260), 1, + [200429] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(558), 1, + STATE(580), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648815,19 +645046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200998] = 6, - ACTIONS(9232), 1, + [200455] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(4545), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(5151), 1, + STATE(9114), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9236), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648835,19 +645066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201024] = 6, - ACTIONS(10260), 1, + [200481] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(416), 1, + STATE(2546), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648855,19 +645086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201050] = 6, - ACTIONS(10260), 1, + [200507] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(542), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(825), 1, sym__lexical_identifier, + STATE(1086), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648875,19 +645106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201076] = 6, - ACTIONS(115), 1, + [200533] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4228), 1, + STATE(9274), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648895,19 +645126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201102] = 6, - ACTIONS(10260), 1, + [200559] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(539), 1, + STATE(591), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648915,19 +645146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201128] = 6, - ACTIONS(8672), 1, + [200585] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9122), 1, + STATE(9140), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648935,19 +645166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201154] = 6, - ACTIONS(10283), 1, + [200611] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10287), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2192), 1, - sym_simple_identifier, - STATE(3680), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9145), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10285), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648955,19 +645186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201180] = 6, - ACTIONS(10260), 1, + [200637] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(552), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9247), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648975,19 +645206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201206] = 6, - ACTIONS(387), 1, + [200663] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(823), 1, - sym__lexical_identifier, - STATE(1387), 1, + STATE(596), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648995,19 +645226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201232] = 6, - ACTIONS(10260), 1, + [200689] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(541), 1, + STATE(2258), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649015,19 +645246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201258] = 6, - ACTIONS(10266), 1, - sym__alpha_identifier, + [200715] = 6, ACTIONS(10270), 1, + sym__alpha_identifier, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2641), 1, + STATE(584), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649035,19 +645266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201284] = 6, - ACTIONS(387), 1, + [200741] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(1015), 1, + STATE(9169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649055,19 +645286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201310] = 6, - ACTIONS(10260), 1, + [200767] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(592), 1, + STATE(2207), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649075,19 +645306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201336] = 6, - ACTIONS(10260), 1, + [200793] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(578), 1, + STATE(420), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649095,19 +645326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201362] = 6, - ACTIONS(10260), 1, + [200819] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(540), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9146), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649115,19 +645346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201388] = 6, - ACTIONS(10260), 1, + [200845] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(546), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(2803), 1, sym__lexical_identifier, + STATE(4061), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649135,19 +645366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201414] = 6, - ACTIONS(10272), 1, + [200871] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2214), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9239), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649155,19 +645386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201440] = 6, - ACTIONS(557), 1, + [200897] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2791), 1, - sym__lexical_identifier, - STATE(4081), 1, + STATE(2246), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649175,19 +645406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201466] = 6, - ACTIONS(10272), 1, + [200923] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2247), 1, + STATE(1307), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649195,19 +645426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201492] = 6, - ACTIONS(8672), 1, + [200949] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9292), 1, + STATE(2551), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649215,19 +645446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201518] = 6, - ACTIONS(8672), 1, + [200975] = 6, + ACTIONS(9450), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9116), 1, + STATE(5481), 1, sym_simple_identifier, + STATE(5666), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649235,19 +645466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201544] = 6, - ACTIONS(10272), 1, + [201001] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2206), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9139), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649255,19 +645486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201570] = 6, - ACTIONS(10272), 1, + [201027] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2212), 1, + STATE(2235), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649275,19 +645506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201596] = 6, - ACTIONS(8672), 1, + [201053] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8400), 1, + STATE(2224), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649295,19 +645526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201622] = 6, - ACTIONS(10266), 1, + [201079] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2662), 1, + STATE(2297), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649315,43 +645546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [201105] = 6, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(203), 1, + sym__backtick_identifier, + STATE(2892), 1, + sym__lexical_identifier, + STATE(3805), 1, + sym_simple_identifier, 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, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201131] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8818), 1, + STATE(9233), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649359,19 +645586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201708] = 6, - ACTIONS(10260), 1, + [201157] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(537), 1, + STATE(2306), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649379,19 +645606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201734] = 6, - ACTIONS(10260), 1, + [201183] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(518), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(8788), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649399,19 +645626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201760] = 6, - ACTIONS(10266), 1, + [201209] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2291), 1, + STATE(1305), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649419,19 +645646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201786] = 6, - ACTIONS(10260), 1, + [201235] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(538), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9228), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649439,19 +645666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201812] = 6, - ACTIONS(115), 1, + [201261] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3762), 1, + STATE(9149), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649459,19 +645686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201838] = 6, - ACTIONS(8672), 1, + [201287] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8917), 1, + STATE(9100), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649479,19 +645706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201864] = 6, - ACTIONS(10266), 1, + [201313] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2573), 1, + STATE(2298), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649499,19 +645726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201890] = 6, - ACTIONS(10266), 1, + [201339] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2259), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9156), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649519,19 +645746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201916] = 6, - ACTIONS(10283), 1, + [201365] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10287), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2215), 1, - sym_simple_identifier, - STATE(3680), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9477), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10285), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649539,19 +645766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201942] = 6, - ACTIONS(8672), 1, + [201391] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9304), 1, + STATE(1303), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649559,19 +645786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201968] = 6, - ACTIONS(10266), 1, - sym__alpha_identifier, + [201417] = 6, ACTIONS(10270), 1, + sym__alpha_identifier, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2282), 1, + STATE(419), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649579,19 +645806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201994] = 6, - ACTIONS(10266), 1, + [201443] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2252), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9432), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649599,19 +645826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202020] = 6, - ACTIONS(10266), 1, + [201469] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2533), 1, + STATE(2289), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649619,14 +645846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202046] = 6, - ACTIONS(473), 1, + [201495] = 6, + ACTIONS(471), 1, sym__alpha_identifier, ACTIONS(553), 1, sym__backtick_identifier, - STATE(3332), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(4029), 1, + STATE(4016), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -649639,37 +645866,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202072] = 4, - ACTIONS(10291), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + [201521] = 6, + ACTIONS(557), 1, + sym__alpha_identifier, + ACTIONS(637), 1, + sym__backtick_identifier, + STATE(825), 1, + sym__lexical_identifier, + STATE(2240), 1, + sym_simple_identifier, 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, + ACTIONS(1664), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201547] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2221), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9450), 1, sym_simple_identifier, - STATE(3630), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201573] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(9166), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649677,19 +645926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202120] = 6, - ACTIONS(115), 1, + [201599] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(203), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2955), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3113), 1, + STATE(9443), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649697,19 +645946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202146] = 6, - ACTIONS(473), 1, + [201625] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(3332), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(4270), 1, + STATE(9205), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649717,19 +645966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202172] = 6, - ACTIONS(8672), 1, + [201651] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9718), 1, + STATE(9204), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649737,19 +645986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202198] = 6, - ACTIONS(10272), 1, + [201677] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2405), 1, + STATE(1302), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649757,19 +646006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202224] = 6, - ACTIONS(8672), 1, + [201703] = 6, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(9165), 1, + STATE(4604), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649777,19 +646026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202250] = 6, - ACTIONS(10260), 1, + [201729] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(395), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(4619), 1, sym__lexical_identifier, + STATE(5493), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649797,19 +646046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202276] = 6, - ACTIONS(8672), 1, + [201755] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8973), 1, + STATE(9202), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649817,19 +646066,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202302] = 6, - ACTIONS(10272), 1, + [201781] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2402), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9278), 1, sym_simple_identifier, - STATE(3193), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201807] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(9279), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649837,19 +646106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202328] = 6, - ACTIONS(9216), 1, + [201833] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5685), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8548), 1, + STATE(9281), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649857,19 +646126,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202354] = 6, - ACTIONS(10266), 1, + [201859] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(2653), 1, + STATE(2892), 1, + sym__lexical_identifier, + STATE(4060), 1, sym_simple_identifier, - STATE(3630), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201885] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(9324), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649877,19 +646166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202380] = 6, - ACTIONS(10272), 1, + [201911] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2594), 1, + STATE(2569), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649897,61 +646186,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202406] = 4, - ACTIONS(10293), 1, - anon_sym_DOT, - STATE(8040), 1, - aux_sym_user_type_repeat1, + [201937] = 6, + ACTIONS(10281), 1, + sym__alpha_identifier, + ACTIONS(10285), 1, + sym__backtick_identifier, + STATE(2673), 1, + sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, 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(10283), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201963] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9345), 1, + sym_simple_identifier, 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, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [201989] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8836), 1, + STATE(9376), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649959,19 +646246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202488] = 6, - ACTIONS(10266), 1, + [202015] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2240), 1, + STATE(2404), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649979,19 +646266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202514] = 6, - ACTIONS(8672), 1, + [202041] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9413), 1, + STATE(9368), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -649999,19 +646286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202540] = 6, - ACTIONS(10272), 1, + [202067] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2596), 1, + STATE(2400), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650019,15 +646306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202566] = 3, + [202093] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9266), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9965), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym__backtick_identifier, - ACTIONS(9963), 8, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650035,20 +646326,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [202119] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - [202586] = 6, - ACTIONS(8672), 1, + ACTIONS(10285), 1, + sym__backtick_identifier, + STATE(2627), 1, + sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10283), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202145] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9380), 1, + STATE(9407), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650056,19 +646366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202612] = 6, - ACTIONS(8672), 1, + [202171] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9345), 1, + STATE(2399), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650076,19 +646386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202638] = 6, - ACTIONS(8672), 1, + [202197] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8840), 1, + STATE(9187), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650096,19 +646406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202664] = 6, - ACTIONS(8672), 1, + [202223] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(9339), 1, + STATE(3716), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650116,19 +646426,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202690] = 6, - ACTIONS(8672), 1, + [202249] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(5361), 1, + sym_simple_identifier, + STATE(5692), 1, sym__lexical_identifier, - STATE(8851), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202275] = 6, + ACTIONS(10281), 1, + sym__alpha_identifier, + ACTIONS(10285), 1, + sym__backtick_identifier, + STATE(2616), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650136,19 +646466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202716] = 6, - ACTIONS(10272), 1, + [202301] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2409), 1, + STATE(2396), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650156,19 +646486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202742] = 6, - ACTIONS(8672), 1, + [202327] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8859), 1, + STATE(9151), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650176,19 +646506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202768] = 6, - ACTIONS(8672), 1, + [202353] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8871), 1, + STATE(9208), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650196,19 +646526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202794] = 6, - ACTIONS(10272), 1, + [202379] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2386), 1, + STATE(535), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650216,19 +646546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202820] = 6, - ACTIONS(10266), 1, - sym__alpha_identifier, + [202405] = 6, ACTIONS(10270), 1, + sym__alpha_identifier, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2654), 1, + STATE(533), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650236,19 +646566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202846] = 6, - ACTIONS(8672), 1, + [202431] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9250), 1, + STATE(2278), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650256,19 +646586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202872] = 6, - ACTIONS(8672), 1, + [202457] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9312), 1, + STATE(9218), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650276,19 +646606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202898] = 6, - ACTIONS(8672), 1, + [202483] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9097), 1, + STATE(531), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650296,19 +646626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202924] = 6, - ACTIONS(8672), 1, + [202509] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9197), 1, + STATE(9338), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650316,19 +646646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202950] = 6, - ACTIONS(8672), 1, + [202535] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9417), 1, + STATE(2598), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650336,19 +646666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202976] = 6, - ACTIONS(8672), 1, + [202561] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9313), 1, + STATE(2663), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650356,19 +646686,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203002] = 6, - ACTIONS(8672), 1, + [202587] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1914), 1, + anon_sym_LBRACE, + ACTIONS(4539), 1, + anon_sym_LPAREN, + ACTIONS(10287), 1, + sym_label, + STATE(2751), 1, + sym_value_arguments, + STATE(3067), 1, + sym_annotated_lambda, + STATE(3182), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8357), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [202621] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(9238), 1, + STATE(1413), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650376,19 +646730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203028] = 6, - ACTIONS(8672), 1, + [202647] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8872), 1, + STATE(9323), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650396,19 +646750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203054] = 6, - ACTIONS(8672), 1, + [202673] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9314), 1, + STATE(418), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650416,19 +646770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203080] = 6, - ACTIONS(10297), 1, + [202699] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10301), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(8695), 1, + STATE(413), 1, sym_simple_identifier, - STATE(8761), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10299), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650436,19 +646790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203106] = 6, - ACTIONS(8672), 1, + [202725] = 6, + ACTIONS(10289), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10293), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(8639), 1, sym__lexical_identifier, - STATE(9316), 1, + STATE(8749), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10291), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650456,19 +646810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203132] = 6, - ACTIONS(8672), 1, + [202751] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8874), 1, + STATE(9363), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650476,19 +646830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203158] = 6, - ACTIONS(7), 1, + [202777] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(4612), 1, - sym__lexical_identifier, - STATE(5265), 1, + STATE(536), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650496,19 +646850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203184] = 6, - ACTIONS(8672), 1, + [202803] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9318), 1, + STATE(9364), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650516,19 +646870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203210] = 6, - ACTIONS(10283), 1, + [202829] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10287), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2223), 1, - sym_simple_identifier, - STATE(3680), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9379), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10285), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650536,19 +646890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203236] = 6, - ACTIONS(8672), 1, + [202855] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9270), 1, + STATE(9085), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650556,19 +646910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203262] = 6, - ACTIONS(10272), 1, + [202881] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2598), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9425), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650576,19 +646930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203288] = 6, - ACTIONS(8672), 1, + [202907] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9240), 1, + STATE(9369), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650596,19 +646950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203314] = 6, - ACTIONS(8672), 1, + [202933] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9321), 1, + STATE(9456), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650616,19 +646970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203340] = 6, - ACTIONS(8672), 1, + [202959] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9239), 1, + STATE(9449), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650636,19 +646990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203366] = 6, - ACTIONS(8672), 1, + [202985] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9236), 1, + STATE(9441), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650656,19 +647010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203392] = 6, - ACTIONS(557), 1, + [203011] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2791), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(3164), 1, + STATE(8795), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650676,19 +647030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203418] = 6, - ACTIONS(8672), 1, + [203037] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9326), 1, + STATE(8838), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650696,19 +647050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203444] = 6, - ACTIONS(10260), 1, + [203063] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(419), 1, + STATE(2403), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650716,19 +647070,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203470] = 6, - ACTIONS(8672), 1, + [203089] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(520), 1, + sym_simple_identifier, + STATE(881), 1, sym__lexical_identifier, - STATE(9234), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10272), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203115] = 6, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5319), 1, sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650736,19 +647110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203496] = 6, - ACTIONS(8672), 1, + [203141] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9328), 1, + STATE(9410), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650756,19 +647130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203522] = 6, - ACTIONS(8672), 1, + [203167] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9228), 1, + STATE(9404), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650776,19 +647150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203548] = 6, - ACTIONS(8672), 1, + [203193] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9338), 1, + STATE(9258), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650796,19 +647170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203574] = 6, - ACTIONS(8672), 1, + [203219] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9218), 1, + STATE(9400), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650816,19 +647190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203600] = 6, - ACTIONS(8672), 1, + [203245] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9344), 1, + STATE(8810), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650836,37 +647210,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203626] = 4, - ACTIONS(9961), 1, - sym__quest, - STATE(6738), 1, - aux_sym_nullable_type_repeat1, + [203271] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8899), 1, + sym_simple_identifier, 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, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203297] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9331), 1, + STATE(8879), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650874,19 +647250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203674] = 6, - ACTIONS(8672), 1, + [203323] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8875), 1, + STATE(522), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650894,19 +647270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203700] = 6, - ACTIONS(8672), 1, + [203349] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9211), 1, + STATE(9074), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650914,19 +647290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203726] = 6, - ACTIONS(8672), 1, + [203375] = 6, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(9223), 1, + STATE(4284), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650934,19 +647310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203752] = 6, - ACTIONS(8672), 1, + [203401] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8878), 1, + STATE(524), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650954,19 +647330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203778] = 6, - ACTIONS(8672), 1, + [203427] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9208), 1, + STATE(9229), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650974,19 +647350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203804] = 6, - ACTIONS(8672), 1, + [203453] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(9357), 1, + STATE(3169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1920), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -650994,19 +647370,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203830] = 6, - ACTIONS(8672), 1, + [203479] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2566), 1, + sym_simple_identifier, + STATE(3141), 1, sym__lexical_identifier, - STATE(9420), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10264), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203505] = 6, + ACTIONS(9450), 1, + sym__alpha_identifier, + ACTIONS(9458), 1, + sym__backtick_identifier, + STATE(5478), 1, sym_simple_identifier, + STATE(5666), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651014,19 +647410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203856] = 6, - ACTIONS(8672), 1, + [203531] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9203), 1, + STATE(9030), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651034,19 +647430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203882] = 6, - ACTIONS(8672), 1, + [203557] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8885), 1, + STATE(2599), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651054,19 +647450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203908] = 6, - ACTIONS(8672), 1, + [203583] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9348), 1, + STATE(9355), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651074,19 +647470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203934] = 6, - ACTIONS(10260), 1, + [203609] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(403), 1, + STATE(2597), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651094,19 +647490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203960] = 6, - ACTIONS(8672), 1, + [203635] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9199), 1, + STATE(9721), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651114,19 +647510,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203986] = 6, - ACTIONS(10266), 1, + [203661] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2293), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9282), 1, sym_simple_identifier, - STATE(3630), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203687] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(8840), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651134,19 +647550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204012] = 6, - ACTIONS(10260), 1, + [203713] = 6, + ACTIONS(10295), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10299), 1, sym__backtick_identifier, - STATE(402), 1, + STATE(2195), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10297), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651154,19 +647570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204038] = 6, - ACTIONS(387), 1, + [203739] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(469), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(823), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(2217), 1, + STATE(9290), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651174,19 +647590,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204064] = 6, - ACTIONS(10272), 1, + [203765] = 10, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1836), 1, + anon_sym_LBRACE, + ACTIONS(6732), 1, + anon_sym_LPAREN, + ACTIONS(6738), 1, + sym_label, + STATE(4528), 1, + sym_value_arguments, + STATE(4753), 1, + sym_lambda_literal, + STATE(4844), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8349), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [203799] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2209), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9283), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651194,19 +647634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204090] = 6, - ACTIONS(10260), 1, + [203825] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(406), 1, - sym_simple_identifier, - STATE(877), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9216), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651214,19 +647654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204116] = 6, - ACTIONS(8672), 1, + [203851] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9196), 1, + STATE(9091), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651234,19 +647674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204142] = 6, - ACTIONS(8672), 1, + [203877] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9365), 1, + STATE(9280), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651254,19 +647694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204168] = 6, - ACTIONS(8672), 1, + [203903] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(8978), 1, + STATE(9391), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651274,19 +647714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204194] = 6, - ACTIONS(10272), 1, + [203929] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2399), 1, + STATE(2191), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651294,19 +647734,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204220] = 6, - ACTIONS(10260), 1, + [203955] = 10, + ACTIONS(1646), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3812), 1, + sym_label, + STATE(3052), 1, + sym_value_arguments, + STATE(3865), 1, + sym_lambda_literal, + STATE(3957), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8354), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [203989] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(418), 1, + STATE(2194), 1, sym_simple_identifier, - STATE(877), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651314,19 +647778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204246] = 6, - ACTIONS(9216), 1, + [204015] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(9505), 1, + STATE(2644), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651334,19 +647798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204272] = 6, - ACTIONS(10266), 1, + [204041] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2618), 1, + STATE(2200), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651354,19 +647818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204298] = 6, - ACTIONS(10266), 1, + [204067] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2239), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(8982), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651374,19 +647838,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204324] = 6, - ACTIONS(10260), 1, + [204093] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(412), 1, + STATE(6386), 1, + sym__lexical_identifier, + STATE(8370), 1, sym_simple_identifier, - STATE(877), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204119] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, sym__lexical_identifier, + STATE(9423), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651394,19 +647878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204350] = 6, - ACTIONS(8672), 1, + [204145] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9184), 1, + STATE(9096), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651414,19 +647898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204376] = 6, - ACTIONS(8672), 1, + [204171] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2285), 1, + sym_simple_identifier, + STATE(3635), 1, sym__lexical_identifier, - STATE(9340), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10283), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204197] = 6, + ACTIONS(10262), 1, + sym__alpha_identifier, + ACTIONS(10266), 1, + sym__backtick_identifier, + STATE(2203), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651434,19 +647938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204402] = 6, - ACTIONS(8672), 1, + [204223] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9182), 1, + STATE(9387), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651454,15 +647958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204428] = 4, - ACTIONS(9961), 1, + [204249] = 4, + ACTIONS(9958), 1, sym__quest, - STATE(6738), 1, + STATE(6688), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 9, + ACTIONS(4325), 9, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -651472,19 +647976,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_DASH_GT, anon_sym_while, - [204450] = 6, - ACTIONS(8672), 1, + [204271] = 6, + ACTIONS(9244), 1, + sym__alpha_identifier, + ACTIONS(9252), 1, + sym__backtick_identifier, + STATE(5692), 1, + sym__lexical_identifier, + STATE(8468), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9248), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204297] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9113), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204323] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9965), 3, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9963), 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, + [204343] = 6, + ACTIONS(10281), 1, + sym__alpha_identifier, + ACTIONS(10285), 1, + sym__backtick_identifier, + STATE(2576), 1, + sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10283), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204369] = 6, + ACTIONS(8735), 1, + sym__alpha_identifier, + ACTIONS(8765), 1, + sym__backtick_identifier, + STATE(6386), 1, + sym__lexical_identifier, + STATE(9068), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8745), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [204395] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9180), 1, + STATE(2579), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651492,19 +648093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204476] = 6, - ACTIONS(8672), 1, + [204421] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9374), 1, + STATE(9066), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651512,19 +648113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204502] = 6, - ACTIONS(8672), 1, + [204447] = 6, + ACTIONS(207), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(293), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(9375), 1, + STATE(4968), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1842), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651532,19 +648133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204528] = 6, - ACTIONS(10266), 1, - sym__alpha_identifier, + [204473] = 6, ACTIONS(10270), 1, + sym__alpha_identifier, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2667), 1, + STATE(587), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651552,19 +648153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204554] = 6, - ACTIONS(8672), 1, + [204499] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9381), 1, + STATE(9058), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651572,19 +648173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204580] = 6, - ACTIONS(8672), 1, + [204525] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9145), 1, + STATE(9126), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651592,19 +648193,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204606] = 6, - ACTIONS(8672), 1, + [204551] = 3, + ACTIONS(4315), 1, + anon_sym_DASH_GT, + 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, + [204571] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(8918), 1, + STATE(5607), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651612,19 +648230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204632] = 6, - ACTIONS(8672), 1, + [204597] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9143), 1, + STATE(9046), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651632,19 +648250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204658] = 6, - ACTIONS(8672), 1, + [204623] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4678), 11, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_by, + anon_sym_GT, + anon_sym_where, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_in, + anon_sym_while, + [204641] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9332), 1, + STATE(9164), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651652,19 +648286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204684] = 6, - ACTIONS(8672), 1, + [204667] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9183), 1, + STATE(2581), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651672,19 +648306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204710] = 6, - ACTIONS(9434), 1, + [204693] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(5453), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9154), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651692,19 +648326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204736] = 6, - ACTIONS(8672), 1, + [204719] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9141), 1, + STATE(2611), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651712,19 +648346,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204762] = 6, - ACTIONS(8672), 1, + [204745] = 4, + ACTIONS(10301), 1, + anon_sym_DOT, + STATE(8050), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4141), 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, + [204767] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9308), 1, + STATE(549), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651732,19 +648384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204788] = 6, - ACTIONS(8672), 1, + [204793] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9433), 1, + STATE(9134), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651752,19 +648404,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204814] = 6, - ACTIONS(8672), 1, + [204819] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(7049), 1, + anon_sym_LPAREN, + ACTIONS(7055), 1, + sym_label, + STATE(4566), 1, + sym_value_arguments, + STATE(5122), 1, + sym_lambda_literal, + STATE(5126), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8355), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [204853] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9255), 1, + STATE(9148), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651772,19 +648448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204840] = 6, - ACTIONS(8672), 1, + [204879] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9439), 1, + STATE(9155), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651792,19 +648468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204866] = 6, - ACTIONS(8672), 1, + [204905] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9188), 1, + STATE(9157), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651812,19 +648488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204892] = 6, - ACTIONS(8672), 1, + [204931] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8943), 1, + STATE(2649), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651832,19 +648508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204918] = 6, - ACTIONS(8672), 1, + [204957] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(4619), 1, sym__lexical_identifier, - STATE(9247), 1, + STATE(4901), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1908), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651852,19 +648528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204944] = 6, - ACTIONS(10272), 1, + [204983] = 6, + ACTIONS(10295), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10299), 1, sym__backtick_identifier, - STATE(2218), 1, + STATE(2192), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10297), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651872,19 +648548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204970] = 6, - ACTIONS(10272), 1, + [205009] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2220), 1, - sym_simple_identifier, - STATE(3193), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9161), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651892,19 +648568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204996] = 6, - ACTIONS(10260), 1, + [205035] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(386), 1, + STATE(392), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651912,19 +648588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205022] = 6, - ACTIONS(10272), 1, + [205061] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(2229), 1, + STATE(396), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651932,14 +648608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205048] = 6, - ACTIONS(211), 1, + [205087] = 6, + ACTIONS(207), 1, sym__alpha_identifier, ACTIONS(293), 1, sym__backtick_identifier, - STATE(4534), 1, + STATE(4543), 1, sym__lexical_identifier, - STATE(5053), 1, + STATE(5274), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -651952,19 +648628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205074] = 6, - ACTIONS(7), 1, + [205113] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(4612), 1, - sym__lexical_identifier, - STATE(5619), 1, + STATE(397), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651972,19 +648648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205100] = 6, - ACTIONS(10260), 1, + [205139] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(555), 1, + STATE(402), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -651992,19 +648668,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205126] = 6, - ACTIONS(10266), 1, + [205165] = 6, + ACTIONS(10295), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10299), 1, sym__backtick_identifier, - STATE(2670), 1, + STATE(2221), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10297), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652012,19 +648688,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205152] = 6, - ACTIONS(10260), 1, + [205191] = 10, + ACTIONS(1618), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(3578), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + sym_label, + STATE(2800), 1, + sym_value_arguments, + STATE(3429), 1, + sym_annotated_lambda, + STATE(3533), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8356), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [205225] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(387), 1, + STATE(391), 1, sym_simple_identifier, - STATE(877), 1, + STATE(881), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652032,19 +648732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205178] = 6, - ACTIONS(8672), 1, + [205251] = 6, + ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(637), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(825), 1, sym__lexical_identifier, - STATE(9166), 1, + STATE(894), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1664), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652052,19 +648752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205204] = 6, - ACTIONS(9434), 1, + [205277] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(5477), 1, - sym_simple_identifier, - STATE(5660), 1, + STATE(5692), 1, sym__lexical_identifier, + STATE(9616), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652072,19 +648772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205230] = 6, - ACTIONS(10272), 1, + [205303] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10276), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2538), 1, + STATE(2284), 1, sym_simple_identifier, - STATE(3193), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10274), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652092,19 +648792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205256] = 6, - ACTIONS(8672), 1, + [205329] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(9191), 1, + STATE(9353), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652112,43 +648812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [205355] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9138), 1, + STATE(543), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652156,19 +648832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205342] = 6, - ACTIONS(8672), 1, + [205381] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9446), 1, + STATE(389), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652176,19 +648852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205368] = 6, - ACTIONS(9216), 1, + [205407] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(5685), 1, - sym__lexical_identifier, - STATE(8654), 1, + STATE(381), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652196,19 +648872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205394] = 6, - ACTIONS(8672), 1, + [205433] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9299), 1, + STATE(385), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652216,19 +648892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205420] = 6, - ACTIONS(8672), 1, + [205459] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9224), 1, + STATE(1368), 1, sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652236,19 +648912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205446] = 6, - ACTIONS(8672), 1, + [205485] = 6, + ACTIONS(10270), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10274), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9273), 1, + STATE(554), 1, sym_simple_identifier, + STATE(881), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10272), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652256,19 +648932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205472] = 6, - ACTIONS(10266), 1, + [205511] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(2236), 1, - sym_simple_identifier, - STATE(3630), 1, + STATE(6386), 1, sym__lexical_identifier, + STATE(9255), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652276,14 +648952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205498] = 6, - ACTIONS(7), 1, + [205537] = 6, + ACTIONS(387), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(467), 1, sym__backtick_identifier, - STATE(4612), 1, + STATE(2803), 1, sym__lexical_identifier, - STATE(4916), 1, + STATE(2961), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -652296,19 +648972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205524] = 6, - ACTIONS(9434), 1, + [205563] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(5481), 1, + STATE(1373), 1, sym_simple_identifier, - STATE(5660), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652316,19 +648992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205550] = 6, - ACTIONS(8672), 1, + [205589] = 6, + ACTIONS(9450), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9458), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(8725), 1, + STATE(5428), 1, sym_simple_identifier, + STATE(5666), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9456), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652336,35 +649012,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205576] = 2, + [205615] = 6, + ACTIONS(10262), 1, + sym__alpha_identifier, + ACTIONS(10266), 1, + sym__backtick_identifier, + STATE(1374), 1, + sym_simple_identifier, + STATE(3141), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4708), 11, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_by, - anon_sym_GT, - anon_sym_where, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [205594] = 6, - ACTIONS(8672), 1, + ACTIONS(10264), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [205641] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9158), 1, + STATE(2584), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652372,19 +649052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205620] = 6, - ACTIONS(10266), 1, + [205667] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2627), 1, + STATE(1294), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652392,19 +649072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205646] = 6, - ACTIONS(8672), 1, + [205693] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9171), 1, + STATE(2222), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652412,19 +649092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205672] = 6, - ACTIONS(473), 1, + [205719] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(553), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(3332), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(3667), 1, + STATE(3150), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652432,19 +649112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205698] = 6, - ACTIONS(8672), 1, + [205745] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9169), 1, + STATE(8859), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652452,19 +649132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205724] = 6, - ACTIONS(8672), 1, + [205771] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9204), 1, + STATE(2229), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652472,19 +649152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205750] = 6, - ACTIONS(9434), 1, + [205797] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(9442), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(5454), 1, + STATE(2230), 1, sym_simple_identifier, - STATE(5660), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652492,19 +649172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205776] = 6, - ACTIONS(8672), 1, + [205823] = 6, + ACTIONS(8735), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(8765), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(6386), 1, sym__lexical_identifier, - STATE(9776), 1, + STATE(9428), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(8745), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652512,19 +649192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205802] = 6, - ACTIONS(8672), 1, + [205849] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9262), 1, + STATE(2231), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652532,19 +649212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205828] = 6, - ACTIONS(9216), 1, + [205875] = 6, + ACTIONS(471), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(553), 1, sym__backtick_identifier, - STATE(5685), 1, + STATE(3321), 1, sym__lexical_identifier, - STATE(8617), 1, + STATE(3640), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(1652), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652552,19 +649232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205854] = 6, - ACTIONS(9216), 1, + [205901] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(9224), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(5362), 1, + STATE(2220), 1, sym_simple_identifier, - STATE(5685), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652572,19 +649252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205880] = 6, - ACTIONS(10266), 1, + [205927] = 6, + ACTIONS(10262), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10266), 1, sym__backtick_identifier, - STATE(2193), 1, + STATE(2407), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3141), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10264), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652592,19 +649272,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205906] = 6, - ACTIONS(8672), 1, + [205953] = 10, + ACTIONS(1658), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(10303), 1, + sym_label, + STATE(773), 1, + sym_value_arguments, + STATE(1031), 1, + sym_annotated_lambda, + STATE(1058), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8340), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [205987] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9200), 1, + STATE(2225), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652612,19 +649316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205932] = 6, - ACTIONS(8672), 1, + [206013] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9225), 1, + STATE(2228), 1, sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652632,19 +649336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205958] = 6, - ACTIONS(8672), 1, + [206039] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(5692), 1, sym__lexical_identifier, - STATE(8919), 1, + STATE(8513), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652652,19 +649356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205984] = 6, - ACTIONS(10266), 1, + [206065] = 6, + ACTIONS(10295), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10299), 1, sym__backtick_identifier, - STATE(2201), 1, + STATE(2204), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10297), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652672,19 +649376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206010] = 6, - ACTIONS(10266), 1, + [206091] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2203), 1, + STATE(2554), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652692,36 +649396,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [206117] = 6, + ACTIONS(10281), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10285), 1, sym__backtick_identifier, - STATE(2204), 1, + STATE(2646), 1, sym_simple_identifier, - STATE(3630), 1, + STATE(3635), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10283), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652729,19 +649416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206082] = 6, - ACTIONS(8672), 1, + [206143] = 6, + ACTIONS(9244), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(9252), 1, sym__backtick_identifier, - STATE(6224), 1, - sym__lexical_identifier, - STATE(9192), 1, + STATE(5345), 1, sym_simple_identifier, + STATE(5692), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(9248), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652749,43 +649436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [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, + [206169] = 6, + ACTIONS(10281), 1, + sym__alpha_identifier, + ACTIONS(10285), 1, + sym__backtick_identifier, + STATE(2232), 1, + sym_simple_identifier, + STATE(3635), 1, + sym__lexical_identifier, 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, + ACTIONS(10283), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [206195] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8702), 1, + ACTIONS(203), 1, sym__backtick_identifier, - STATE(6224), 1, + STATE(2892), 1, sym__lexical_identifier, - STATE(9435), 1, + STATE(4253), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8682), 7, + ACTIONS(1624), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652793,19 +649476,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [206221] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9220), 7, + ACTIONS(10307), 2, + anon_sym_LBRACK, + sym__backtick_identifier, + ACTIONS(10305), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -652813,129 +649491,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [206194] = 9, - ACTIONS(10303), 1, + sym__alpha_identifier, + [206240] = 9, + ACTIONS(10309), 1, anon_sym_typealias, - ACTIONS(10307), 1, + ACTIONS(10313), 1, anon_sym_enum, - ACTIONS(10311), 1, + ACTIONS(10317), 1, anon_sym_object, - ACTIONS(10313), 1, + ACTIONS(10319), 1, anon_sym_fun, - ACTIONS(10315), 1, + ACTIONS(10321), 1, anon_sym_get, - ACTIONS(10317), 1, + ACTIONS(10323), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10305), 2, + ACTIONS(10311), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10309), 2, + ACTIONS(10315), 2, anon_sym_val, anon_sym_var, - [206225] = 9, - ACTIONS(10319), 1, + [206271] = 9, + ACTIONS(10325), 1, anon_sym_typealias, - ACTIONS(10323), 1, + ACTIONS(10329), 1, anon_sym_enum, - ACTIONS(10327), 1, + ACTIONS(10333), 1, anon_sym_object, - ACTIONS(10329), 1, + ACTIONS(10335), 1, anon_sym_fun, - ACTIONS(10331), 1, + ACTIONS(10337), 1, anon_sym_get, - ACTIONS(10333), 1, + ACTIONS(10339), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10321), 2, + ACTIONS(10327), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10325), 2, + ACTIONS(10331), 2, anon_sym_val, anon_sym_var, - [206256] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4681), 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, - [206273] = 2, + [206302] = 9, + ACTIONS(10341), 1, + anon_sym_typealias, + ACTIONS(10345), 1, + anon_sym_enum, + ACTIONS(10349), 1, + anon_sym_object, + ACTIONS(10351), 1, + anon_sym_fun, + ACTIONS(10353), 1, + anon_sym_get, + ACTIONS(10355), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + ACTIONS(10343), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10347), 2, + anon_sym_val, + anon_sym_var, + [206333] = 9, + ACTIONS(10341), 1, anon_sym_typealias, - ACTIONS(10337), 1, + ACTIONS(10359), 1, anon_sym_enum, - ACTIONS(10341), 1, + ACTIONS(10363), 1, anon_sym_object, - ACTIONS(10343), 1, + ACTIONS(10365), 1, anon_sym_fun, - ACTIONS(10345), 1, + ACTIONS(10367), 1, anon_sym_get, - ACTIONS(10347), 1, + ACTIONS(10369), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10335), 2, + ACTIONS(10357), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10339), 2, + ACTIONS(10361), 2, anon_sym_val, anon_sym_var, - [206321] = 9, - ACTIONS(10349), 1, + [206364] = 9, + ACTIONS(10371), 1, anon_sym_typealias, - ACTIONS(10353), 1, + ACTIONS(10375), 1, anon_sym_enum, - ACTIONS(10357), 1, + ACTIONS(10379), 1, anon_sym_object, - ACTIONS(10359), 1, + ACTIONS(10381), 1, anon_sym_fun, - ACTIONS(10361), 1, + ACTIONS(10383), 1, anon_sym_get, - ACTIONS(10363), 1, + ACTIONS(10385), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10351), 2, + ACTIONS(10373), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10355), 2, + ACTIONS(10377), 2, anon_sym_val, anon_sym_var, - [206352] = 2, + [206395] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 10, + ACTIONS(4513), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -652946,11 +649617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206369] = 2, + [206412] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4765), 10, + ACTIONS(4682), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -652961,11 +649632,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206386] = 2, + [206429] = 9, + ACTIONS(10387), 1, + anon_sym_typealias, + ACTIONS(10391), 1, + anon_sym_enum, + ACTIONS(10395), 1, + anon_sym_object, + ACTIONS(10397), 1, + anon_sym_fun, + ACTIONS(10399), 1, + anon_sym_get, + ACTIONS(10401), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10389), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10393), 2, + anon_sym_val, + anon_sym_var, + [206460] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4573), 10, + ACTIONS(4751), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -652976,72 +649669,92 @@ static const uint16_t ts_small_parse_table[] = { 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, + [206477] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 8, + ACTIONS(4674), 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, - [206424] = 9, - ACTIONS(10349), 1, + [206494] = 9, + ACTIONS(10341), 1, anon_sym_typealias, - ACTIONS(10367), 1, + ACTIONS(10405), 1, anon_sym_enum, - ACTIONS(10371), 1, + ACTIONS(10409), 1, anon_sym_object, - ACTIONS(10373), 1, + ACTIONS(10411), 1, anon_sym_fun, - ACTIONS(10375), 1, + ACTIONS(10413), 1, anon_sym_get, - ACTIONS(10377), 1, + ACTIONS(10415), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10365), 2, + ACTIONS(10403), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10369), 2, + ACTIONS(10407), 2, anon_sym_val, anon_sym_var, - [206455] = 9, - ACTIONS(10379), 1, + [206525] = 9, + ACTIONS(10325), 1, anon_sym_typealias, - ACTIONS(10383), 1, + ACTIONS(10419), 1, anon_sym_enum, - ACTIONS(10387), 1, + ACTIONS(10423), 1, anon_sym_object, - ACTIONS(10389), 1, + ACTIONS(10425), 1, anon_sym_fun, - ACTIONS(10391), 1, + ACTIONS(10427), 1, + anon_sym_get, + ACTIONS(10429), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10417), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(10421), 2, + anon_sym_val, + anon_sym_var, + [206556] = 9, + ACTIONS(10325), 1, + anon_sym_typealias, + ACTIONS(10433), 1, + anon_sym_enum, + ACTIONS(10437), 1, + anon_sym_object, + ACTIONS(10439), 1, + anon_sym_fun, + ACTIONS(10441), 1, anon_sym_get, - ACTIONS(10393), 1, + ACTIONS(10443), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10381), 2, + ACTIONS(10431), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10385), 2, + ACTIONS(10435), 2, anon_sym_val, anon_sym_var, - [206486] = 2, + [206587] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4730), 10, + ACTIONS(4269), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -653052,376 +649765,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206503] = 9, - ACTIONS(10395), 1, + [206604] = 9, + ACTIONS(10063), 1, anon_sym_typealias, - ACTIONS(10399), 1, + ACTIONS(10067), 1, anon_sym_enum, - ACTIONS(10403), 1, + ACTIONS(10075), 1, anon_sym_object, - ACTIONS(10405), 1, + ACTIONS(10077), 1, anon_sym_fun, - ACTIONS(10407), 1, + ACTIONS(10079), 1, anon_sym_get, - ACTIONS(10409), 1, + ACTIONS(10081), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10397), 2, + ACTIONS(10065), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10401), 2, + ACTIONS(10071), 2, anon_sym_val, anon_sym_var, - [206534] = 9, - ACTIONS(10411), 1, + [206635] = 9, + ACTIONS(10387), 1, anon_sym_typealias, - ACTIONS(10415), 1, + ACTIONS(10447), 1, anon_sym_enum, - ACTIONS(10419), 1, + ACTIONS(10451), 1, anon_sym_object, - ACTIONS(10421), 1, + ACTIONS(10453), 1, anon_sym_fun, - ACTIONS(10423), 1, + ACTIONS(10455), 1, anon_sym_get, - ACTIONS(10425), 1, + ACTIONS(10457), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10413), 2, + ACTIONS(10445), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10417), 2, + ACTIONS(10449), 2, anon_sym_val, anon_sym_var, - [206565] = 9, - ACTIONS(10303), 1, + [206666] = 9, + ACTIONS(10459), 1, anon_sym_typealias, - ACTIONS(10429), 1, + ACTIONS(10463), 1, anon_sym_enum, - ACTIONS(10433), 1, + ACTIONS(10467), 1, anon_sym_object, - ACTIONS(10435), 1, + ACTIONS(10469), 1, anon_sym_fun, - ACTIONS(10437), 1, + ACTIONS(10471), 1, anon_sym_get, - ACTIONS(10439), 1, + ACTIONS(10473), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10427), 2, + ACTIONS(10461), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10431), 2, + ACTIONS(10465), 2, anon_sym_val, anon_sym_var, - [206596] = 9, - ACTIONS(10303), 1, + [206697] = 9, + ACTIONS(10459), 1, anon_sym_typealias, - ACTIONS(10443), 1, + ACTIONS(10477), 1, anon_sym_enum, - ACTIONS(10447), 1, + ACTIONS(10481), 1, anon_sym_object, - ACTIONS(10449), 1, + ACTIONS(10483), 1, anon_sym_fun, - ACTIONS(10451), 1, + ACTIONS(10485), 1, anon_sym_get, - ACTIONS(10453), 1, + ACTIONS(10487), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10441), 2, + ACTIONS(10475), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10445), 2, + ACTIONS(10479), 2, anon_sym_val, anon_sym_var, - [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, + [206728] = 9, + ACTIONS(10489), 1, anon_sym_typealias, - ACTIONS(10461), 1, + ACTIONS(10493), 1, anon_sym_enum, - ACTIONS(10465), 1, + ACTIONS(10497), 1, anon_sym_object, - ACTIONS(10467), 1, + ACTIONS(10499), 1, anon_sym_fun, - ACTIONS(10469), 1, + ACTIONS(10501), 1, anon_sym_get, - ACTIONS(10471), 1, + ACTIONS(10503), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10459), 2, + ACTIONS(10491), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10463), 2, + ACTIONS(10495), 2, anon_sym_val, anon_sym_var, - [206677] = 9, - ACTIONS(10319), 1, + [206759] = 9, + ACTIONS(10341), 1, anon_sym_typealias, - ACTIONS(10475), 1, + ACTIONS(10507), 1, anon_sym_enum, - ACTIONS(10479), 1, + ACTIONS(10511), 1, anon_sym_object, - ACTIONS(10481), 1, + ACTIONS(10513), 1, anon_sym_fun, - ACTIONS(10483), 1, + ACTIONS(10515), 1, anon_sym_get, - ACTIONS(10485), 1, + ACTIONS(10517), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10473), 2, + ACTIONS(10505), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10477), 2, + ACTIONS(10509), 2, anon_sym_val, anon_sym_var, - [206708] = 9, - ACTIONS(10349), 1, + [206790] = 9, + ACTIONS(10519), 1, anon_sym_typealias, - ACTIONS(10489), 1, + ACTIONS(10523), 1, anon_sym_enum, - ACTIONS(10493), 1, + ACTIONS(10527), 1, anon_sym_object, - ACTIONS(10495), 1, + ACTIONS(10529), 1, anon_sym_fun, - ACTIONS(10497), 1, + ACTIONS(10531), 1, anon_sym_get, - ACTIONS(10499), 1, + ACTIONS(10533), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10487), 2, + ACTIONS(10521), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10491), 2, + ACTIONS(10525), 2, anon_sym_val, anon_sym_var, - [206739] = 9, - ACTIONS(10379), 1, + [206821] = 9, + ACTIONS(10309), 1, anon_sym_typealias, - ACTIONS(10503), 1, + ACTIONS(10537), 1, anon_sym_enum, - ACTIONS(10507), 1, + ACTIONS(10541), 1, anon_sym_object, - ACTIONS(10509), 1, + ACTIONS(10543), 1, anon_sym_fun, - ACTIONS(10511), 1, + ACTIONS(10545), 1, anon_sym_get, - ACTIONS(10513), 1, + ACTIONS(10547), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10501), 2, + ACTIONS(10535), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10505), 2, + ACTIONS(10539), 2, anon_sym_val, anon_sym_var, - [206770] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4672), 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, - [206787] = 9, - ACTIONS(10411), 1, + [206852] = 9, + ACTIONS(10325), 1, anon_sym_typealias, - ACTIONS(10517), 1, + ACTIONS(10551), 1, anon_sym_enum, - ACTIONS(10521), 1, + ACTIONS(10555), 1, anon_sym_object, - ACTIONS(10523), 1, + ACTIONS(10557), 1, anon_sym_fun, - ACTIONS(10525), 1, + ACTIONS(10559), 1, anon_sym_get, - ACTIONS(10527), 1, + ACTIONS(10561), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10515), 2, + ACTIONS(10549), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10519), 2, + ACTIONS(10553), 2, anon_sym_val, anon_sym_var, - [206818] = 9, - ACTIONS(10319), 1, + [206883] = 9, + ACTIONS(10387), 1, anon_sym_typealias, - ACTIONS(10531), 1, + ACTIONS(10565), 1, anon_sym_enum, - ACTIONS(10535), 1, + ACTIONS(10569), 1, anon_sym_object, - ACTIONS(10537), 1, + ACTIONS(10571), 1, anon_sym_fun, - ACTIONS(10539), 1, + ACTIONS(10573), 1, anon_sym_get, - ACTIONS(10541), 1, + ACTIONS(10575), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10529), 2, + ACTIONS(10563), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10533), 2, + ACTIONS(10567), 2, anon_sym_val, anon_sym_var, - [206849] = 9, - ACTIONS(10319), 1, - anon_sym_typealias, - ACTIONS(10545), 1, - anon_sym_enum, - ACTIONS(10549), 1, - anon_sym_object, - ACTIONS(10551), 1, - anon_sym_fun, - ACTIONS(10553), 1, - anon_sym_get, - ACTIONS(10555), 1, - anon_sym_set, + [206914] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10543), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10547), 2, - anon_sym_val, - anon_sym_var, - [206880] = 9, - ACTIONS(10208), 1, + ACTIONS(4716), 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, + [206931] = 9, + ACTIONS(10387), 1, anon_sym_typealias, - ACTIONS(10212), 1, + ACTIONS(10579), 1, anon_sym_enum, - ACTIONS(10220), 1, + ACTIONS(10583), 1, anon_sym_object, - ACTIONS(10222), 1, + ACTIONS(10585), 1, anon_sym_fun, - ACTIONS(10224), 1, + ACTIONS(10587), 1, anon_sym_get, - ACTIONS(10226), 1, + ACTIONS(10589), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10210), 2, + ACTIONS(10577), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10216), 2, + ACTIONS(10581), 2, anon_sym_val, anon_sym_var, - [206911] = 9, - ACTIONS(10379), 1, + [206962] = 9, + ACTIONS(10371), 1, anon_sym_typealias, - ACTIONS(10559), 1, + ACTIONS(10593), 1, anon_sym_enum, - ACTIONS(10563), 1, + ACTIONS(10597), 1, anon_sym_object, - ACTIONS(10565), 1, + ACTIONS(10599), 1, anon_sym_fun, - ACTIONS(10567), 1, + ACTIONS(10601), 1, anon_sym_get, - ACTIONS(10569), 1, + ACTIONS(10603), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10557), 2, + ACTIONS(10591), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10561), 2, + ACTIONS(10595), 2, anon_sym_val, anon_sym_var, - [206942] = 9, - ACTIONS(10571), 1, + [206993] = 9, + ACTIONS(10371), 1, anon_sym_typealias, - ACTIONS(10575), 1, + ACTIONS(10607), 1, anon_sym_enum, - ACTIONS(10579), 1, + ACTIONS(10611), 1, anon_sym_object, - ACTIONS(10581), 1, + ACTIONS(10613), 1, anon_sym_fun, - ACTIONS(10583), 1, + ACTIONS(10615), 1, anon_sym_get, - ACTIONS(10585), 1, + ACTIONS(10617), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10573), 2, + ACTIONS(10605), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10577), 2, + ACTIONS(10609), 2, anon_sym_val, anon_sym_var, - [206973] = 9, - ACTIONS(10395), 1, - anon_sym_typealias, - ACTIONS(10589), 1, - anon_sym_enum, - ACTIONS(10593), 1, - anon_sym_object, - ACTIONS(10595), 1, - anon_sym_fun, - ACTIONS(10597), 1, - anon_sym_get, - ACTIONS(10599), 1, - anon_sym_set, + [207024] = 4, + ACTIONS(10276), 1, + anon_sym_DOT, + STATE(8050), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10587), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10591), 2, - anon_sym_val, - anon_sym_var, - [207004] = 4, - ACTIONS(9979), 1, + ACTIONS(4141), 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, + [207045] = 4, + ACTIONS(10243), 1, anon_sym_DOT, - STATE(7873), 1, + STATE(8007), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 8, + ACTIONS(4141), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -653430,77 +650100,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_by, anon_sym_where, - [207025] = 9, - ACTIONS(10601), 1, - anon_sym_typealias, - ACTIONS(10605), 1, - anon_sym_enum, - ACTIONS(10609), 1, - anon_sym_object, - ACTIONS(10611), 1, - anon_sym_fun, - ACTIONS(10613), 1, - anon_sym_get, - ACTIONS(10615), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10603), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10607), 2, - anon_sym_val, - anon_sym_var, - [207056] = 9, - ACTIONS(10411), 1, + [207066] = 9, + ACTIONS(10371), 1, anon_sym_typealias, - ACTIONS(10619), 1, + ACTIONS(10621), 1, anon_sym_enum, - ACTIONS(10623), 1, - anon_sym_object, ACTIONS(10625), 1, - anon_sym_fun, + anon_sym_object, ACTIONS(10627), 1, - anon_sym_get, + anon_sym_fun, ACTIONS(10629), 1, + anon_sym_get, + ACTIONS(10631), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10617), 2, + ACTIONS(10619), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10621), 2, + ACTIONS(10623), 2, anon_sym_val, anon_sym_var, - [207087] = 9, - ACTIONS(10379), 1, + [207097] = 9, + ACTIONS(10459), 1, anon_sym_typealias, - ACTIONS(10633), 1, + ACTIONS(10635), 1, anon_sym_enum, - ACTIONS(10637), 1, - anon_sym_object, ACTIONS(10639), 1, - anon_sym_fun, + anon_sym_object, ACTIONS(10641), 1, - anon_sym_get, + anon_sym_fun, ACTIONS(10643), 1, + anon_sym_get, + ACTIONS(10645), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10631), 2, + ACTIONS(10633), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10635), 2, + ACTIONS(10637), 2, anon_sym_val, anon_sym_var, - [207118] = 2, + [207128] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4676), 10, + ACTIONS(4721), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -653511,100 +650159,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [207135] = 9, - ACTIONS(10411), 1, + [207145] = 9, + ACTIONS(10309), 1, anon_sym_typealias, - ACTIONS(10647), 1, + ACTIONS(10649), 1, anon_sym_enum, - ACTIONS(10651), 1, - anon_sym_object, ACTIONS(10653), 1, - anon_sym_fun, + anon_sym_object, ACTIONS(10655), 1, - anon_sym_get, + anon_sym_fun, ACTIONS(10657), 1, + anon_sym_get, + ACTIONS(10659), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10645), 2, + ACTIONS(10647), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10649), 2, + ACTIONS(10651), 2, anon_sym_val, anon_sym_var, - [207166] = 9, - ACTIONS(10349), 1, + [207176] = 9, + ACTIONS(10459), 1, anon_sym_typealias, - ACTIONS(10661), 1, + ACTIONS(10663), 1, anon_sym_enum, - ACTIONS(10665), 1, - anon_sym_object, ACTIONS(10667), 1, - anon_sym_fun, + anon_sym_object, ACTIONS(10669), 1, - anon_sym_get, + anon_sym_fun, ACTIONS(10671), 1, + anon_sym_get, + ACTIONS(10673), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10659), 2, + ACTIONS(10661), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10663), 2, + ACTIONS(10665), 2, anon_sym_val, anon_sym_var, - [207197] = 9, - ACTIONS(10395), 1, + [207207] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4738), 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, + [207224] = 9, + ACTIONS(10309), 1, anon_sym_typealias, - ACTIONS(10675), 1, + ACTIONS(10677), 1, anon_sym_enum, - ACTIONS(10679), 1, - anon_sym_object, ACTIONS(10681), 1, - anon_sym_fun, + anon_sym_object, ACTIONS(10683), 1, - anon_sym_get, + anon_sym_fun, ACTIONS(10685), 1, + anon_sym_get, + ACTIONS(10687), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10673), 2, + ACTIONS(10675), 2, anon_sym_class, anon_sym_interface, - ACTIONS(10677), 2, + ACTIONS(10679), 2, anon_sym_val, anon_sym_var, - [207228] = 9, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(10687), 1, + [207255] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4035), 9, + anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207271] = 3, ACTIONS(10689), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4224), 8, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [207289] = 9, + ACTIONS(8512), 1, + anon_sym_where, ACTIONS(10691), 1, + anon_sym_COLON, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(8438), 1, + STATE(8415), 1, sym_type_constraints, - STATE(9175), 1, + STATE(9206), 1, sym__block, - STATE(9296), 1, + STATE(9301), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 2, + ACTIONS(4167), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207258] = 3, - ACTIONS(10693), 1, + [207319] = 4, + ACTIONS(10697), 1, + anon_sym_LT, + STATE(8366), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4161), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207339] = 3, + ACTIONS(10699), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 8, + ACTIONS(4224), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -653613,13 +650321,13 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [207276] = 3, - ACTIONS(10695), 1, + [207357] = 3, + ACTIONS(10701), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 8, + ACTIONS(4224), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -653628,142 +650336,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_where, sym__quest, - [207294] = 4, - ACTIONS(10697), 1, - anon_sym_LT, - STATE(8396), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 7, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [207314] = 9, - ACTIONS(8517), 1, + [207375] = 9, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10703), 1, anon_sym_COLON, - STATE(8453), 1, + STATE(8434), 1, sym_type_constraints, - STATE(9136), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9285), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, + ACTIONS(4131), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207344] = 9, - ACTIONS(8517), 1, + [207405] = 9, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10701), 1, + ACTIONS(10705), 1, anon_sym_COLON, - STATE(8447), 1, + STATE(8409), 1, sym_type_constraints, - STATE(9175), 1, + STATE(9206), 1, sym__block, - STATE(9429), 1, + STATE(9431), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4139), 2, + ACTIONS(4155), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207374] = 9, - ACTIONS(8517), 1, + [207435] = 9, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10703), 1, + ACTIONS(10707), 1, anon_sym_COLON, - STATE(8426), 1, + STATE(8420), 1, sym_type_constraints, - STATE(9175), 1, + STATE(9206), 1, sym__block, - STATE(9256), 1, + STATE(9319), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 2, + ACTIONS(4196), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207404] = 9, - ACTIONS(8517), 1, + [207465] = 9, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(10709), 1, anon_sym_COLON, - STATE(8450), 1, + STATE(8431), 1, sym_type_constraints, - STATE(9135), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9210), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [207434] = 3, - ACTIONS(10707), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4239), 8, + ACTIONS(4180), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [207452] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [207495] = 3, + ACTIONS(10711), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 8, + ACTIONS(4224), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -653772,260 +650435,254 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [207486] = 2, + [207513] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 9, + ACTIONS(4192), 9, anon_sym_AT, anon_sym_COLON, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_val, anon_sym_LT, - anon_sym_DOT, anon_sym_AMP, sym__quest, anon_sym_in, - [207502] = 8, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, - anon_sym_LBRACE, - STATE(8413), 1, - sym_type_constraints, - STATE(9157), 1, - sym_function_body, - STATE(9175), 1, - sym__block, + [207529] = 5, + ACTIONS(10713), 1, + anon_sym_LPAREN, + ACTIONS(10715), 1, + anon_sym_by, + STATE(8569), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, + ACTIONS(4464), 5, sym__automatic_semicolon, - anon_sym_RBRACE, - [207529] = 8, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(8450), 1, - sym_type_constraints, - STATE(9135), 1, - sym_function_body, - STATE(9175), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4162), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - [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, - 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_COMMA, anon_sym_where, - ACTIONS(10689), 1, + [207550] = 8, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(8453), 1, + STATE(8446), 1, sym_type_constraints, - STATE(9136), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9341), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, + ACTIONS(4305), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207608] = 9, - ACTIONS(4175), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(10713), 1, - anon_sym_COLON, - ACTIONS(10715), 1, - anon_sym_EQ, + [207577] = 4, ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8536), 1, - sym_type_constraints, - STATE(9782), 1, - sym_function_body, - STATE(9998), 1, - sym__block, + anon_sym_DOT, + STATE(8337), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207596] = 3, + ACTIONS(10720), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207637] = 9, - ACTIONS(4185), 1, + ACTIONS(4224), 7, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, anon_sym_while, - ACTIONS(8644), 1, + [207613] = 8, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON, - STATE(8596), 1, + STATE(8420), 1, sym_type_constraints, - STATE(9621), 1, - sym_function_body, - STATE(9998), 1, + STATE(9206), 1, sym__block, + STATE(9319), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207666] = 7, + ACTIONS(4196), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207640] = 7, + ACTIONS(1658), 1, + anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(1836), 1, - anon_sym_LBRACE, - ACTIONS(10721), 1, + ACTIONS(10722), 1, sym_label, - STATE(4785), 1, + STATE(1036), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6228), 2, + STATE(5899), 2, sym__single_annotation, sym__multi_annotation, - STATE(8360), 2, + STATE(8378), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207691] = 4, - ACTIONS(10723), 1, + [207665] = 4, + ACTIONS(10724), 1, anon_sym_DOT, - STATE(8346), 1, + STATE(8337), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4155), 6, + ACTIONS(4124), 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(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, - 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, + [207684] = 5, + ACTIONS(9169), 1, anon_sym_LT, - ACTIONS(10727), 1, + ACTIONS(10726), 1, anon_sym_COLON, - STATE(6538), 1, + STATE(6557), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 5, + ACTIONS(4161), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT, anon_sym_AMP, sym__quest, - [207756] = 9, - ACTIONS(4162), 1, + [207705] = 9, + ACTIONS(4167), 1, anon_sym_while, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10728), 1, + anon_sym_COLON, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - ACTIONS(10729), 1, - anon_sym_COLON, - STATE(8624), 1, + STATE(8583), 1, sym_type_constraints, - STATE(9600), 1, + STATE(9988), 1, sym_function_body, - STATE(9998), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207785] = 5, - ACTIONS(10731), 1, - anon_sym_LPAREN, - ACTIONS(10733), 1, - anon_sym_by, - STATE(8479), 1, - sym_value_arguments, + [207734] = 8, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(8434), 1, + sym_type_constraints, + STATE(9206), 1, + sym__block, + STATE(9285), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 5, + ACTIONS(4131), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + [207761] = 9, + ACTIONS(4196), 1, + anon_sym_while, + ACTIONS(8589), 1, anon_sym_where, - [207806] = 4, - ACTIONS(10735), 1, - anon_sym_DOT, - STATE(8346), 1, - aux_sym_user_type_repeat1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + ACTIONS(10734), 1, + anon_sym_COLON, + STATE(8557), 1, + sym_type_constraints, + STATE(10115), 1, + sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4168), 6, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, + [207790] = 8, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(8431), 1, + sym_type_constraints, + STATE(9206), 1, + sym__block, + STATE(9210), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4180), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207817] = 6, + ACTIONS(9169), 1, + anon_sym_LT, + ACTIONS(10736), 1, + anon_sym_COLON, + STATE(6557), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4161), 3, + anon_sym_DOT, anon_sym_AMP, sym__quest, - anon_sym_in, - [207825] = 3, + [207840] = 3, ACTIONS(10738), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 7, + ACTIONS(4224), 7, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -654033,201 +650690,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, sym__quest, anon_sym_while, - [207842] = 6, - ACTIONS(9162), 1, - anon_sym_LT, + [207857] = 7, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1836), 1, + anon_sym_LBRACE, ACTIONS(10740), 1, - anon_sym_COLON, - STATE(6538), 1, - sym_type_arguments, + sym_label, + STATE(4848), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4189), 3, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - [207865] = 9, - ACTIONS(4139), 1, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8378), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207882] = 9, + ACTIONS(4180), 1, anon_sym_while, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, ACTIONS(10742), 1, anon_sym_COLON, - STATE(8572), 1, + STATE(8506), 1, sym_type_constraints, - STATE(9464), 1, + STATE(10069), 1, sym_function_body, - STATE(9998), 1, + STATE(10124), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207911] = 9, + ACTIONS(4155), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + ACTIONS(10744), 1, + anon_sym_COLON, + STATE(8565), 1, + sym_type_constraints, + STATE(9893), 1, + sym_function_body, + STATE(10124), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207940] = 9, + ACTIONS(4131), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + ACTIONS(10746), 1, + anon_sym_COLON, + STATE(8460), 1, + sym_type_constraints, + STATE(10102), 1, + sym_function_body, + STATE(10124), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [207969] = 8, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(8424), 1, + sym_type_constraints, + STATE(9206), 1, sym__block, + STATE(9373), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207894] = 7, - ACTIONS(1586), 1, + ACTIONS(4253), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207996] = 7, + ACTIONS(1646), 1, anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10744), 1, + ACTIONS(10748), 1, sym_label, - STATE(3453), 1, + STATE(3956), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6228), 2, + STATE(5899), 2, sym__single_annotation, sym__multi_annotation, - STATE(8360), 2, + STATE(8378), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207919] = 7, + [208021] = 7, ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10746), 1, + ACTIONS(10750), 1, sym_label, - STATE(5176), 1, + STATE(5124), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6228), 2, + STATE(5899), 2, sym__single_annotation, sym__multi_annotation, - STATE(8360), 2, + STATE(8378), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207944] = 7, - ACTIONS(1646), 1, + [208046] = 7, + ACTIONS(1618), 1, anon_sym_LBRACE, ACTIONS(1726), 1, anon_sym_AT, - ACTIONS(10748), 1, + ACTIONS(10752), 1, sym_label, - STATE(3983), 1, + STATE(3436), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6228), 2, + STATE(5899), 2, sym__single_annotation, sym__multi_annotation, - STATE(8360), 2, + STATE(8378), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207969] = 9, - ACTIONS(4149), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [208071] = 7, + ACTIONS(1726), 1, + anon_sym_AT, + ACTIONS(1914), 1, anon_sym_LBRACE, - ACTIONS(10750), 1, - anon_sym_COLON, - 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, - [207998] = 3, - ACTIONS(10752), 1, - anon_sym_AMP, + ACTIONS(10754), 1, + sym_label, + STATE(3066), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 7, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8378), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208096] = 8, + ACTIONS(4253), 1, anon_sym_while, - [208015] = 8, - ACTIONS(8517), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(8426), 1, + STATE(8580), 1, sym_type_constraints, - STATE(9175), 1, + STATE(10124), 1, sym__block, - STATE(9256), 1, + STATE(10144), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208042] = 8, - ACTIONS(8517), 1, + [208122] = 8, + ACTIONS(4180), 1, + anon_sym_while, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10689), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(8436), 1, + STATE(8506), 1, sym_type_constraints, - STATE(9152), 1, + STATE(10069), 1, sym_function_body, - STATE(9175), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208069] = 7, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(8730), 1, - anon_sym_COLON, - STATE(8722), 1, - sym_type_constraints, - 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, - [208093] = 3, - STATE(1742), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - [208109] = 3, - STATE(1758), 1, + [208148] = 3, + STATE(1978), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, @@ -654239,440 +650908,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208125] = 5, - ACTIONS(10758), 1, - anon_sym_AT, + [208164] = 7, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(8672), 1, + anon_sym_COLON, + STATE(8701), 1, + sym_type_constraints, + STATE(9365), 1, + sym_class_body, 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, + ACTIONS(3280), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208188] = 3, + STATE(1586), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10761), 6, + ACTIONS(10758), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208161] = 3, - STATE(1464), 1, + [208204] = 3, + STATE(1632), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10763), 6, + ACTIONS(10760), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208177] = 3, - STATE(1447), 1, + [208220] = 3, + STATE(1850), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10765), 6, + ACTIONS(10762), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208193] = 3, - STATE(1573), 1, + [208236] = 3, + STATE(1589), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10767), 6, + ACTIONS(10764), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208209] = 3, - STATE(1935), 1, + [208252] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4309), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208266] = 7, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8731), 1, + anon_sym_COLON, + STATE(8784), 1, + sym_type_constraints, + STATE(9427), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3296), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208290] = 7, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(10766), 1, + anon_sym_COLON, + STATE(8733), 1, + sym_type_constraints, + STATE(9302), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208314] = 3, + STATE(1473), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10769), 6, + ACTIONS(10768), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208225] = 3, - STATE(1930), 1, + [208330] = 6, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(9697), 1, + anon_sym_LPAREN, + STATE(8520), 1, + sym_value_arguments, + STATE(8929), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10770), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208352] = 3, + STATE(1539), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10771), 6, + ACTIONS(10772), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208241] = 7, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, + [208368] = 7, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10773), 1, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(8775), 1, anon_sym_COLON, - STATE(8767), 1, + STATE(8714), 1, sym_type_constraints, - STATE(9248), 1, - sym_enum_class_body, + STATE(9427), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 2, + ACTIONS(3296), 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, - STATE(8623), 1, - sym_type_constraints, - STATE(9571), 1, - sym_function_body, - STATE(9998), 1, - sym__block, + [208392] = 3, + STATE(1501), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208291] = 8, - ACTIONS(4162), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10774), 6, anon_sym_EQ, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8624), 1, - sym_type_constraints, - STATE(9600), 1, - sym_function_body, - STATE(9998), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208317] = 3, - STATE(1539), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208408] = 3, + STATE(1764), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10775), 6, + ACTIONS(10776), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208333] = 3, - STATE(2130), 1, + [208424] = 3, + STATE(1868), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10777), 6, + ACTIONS(10778), 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, + [208440] = 3, + STATE(2090), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10779), 6, + ACTIONS(10780), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208365] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [208456] = 3, + STATE(2139), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10781), 6, + ACTIONS(10782), 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, + [208472] = 5, + ACTIONS(10784), 1, + anon_sym_AT, 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(8521), 1, + ACTIONS(9826), 2, anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_COLON, - STATE(8655), 1, - sym_type_constraints, - STATE(9445), 1, + sym_label, + STATE(5899), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8378), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208492] = 6, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(9697), 1, + anon_sym_LPAREN, + STATE(8485), 1, + sym_value_arguments, + STATE(9025), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 2, - sym__automatic_semicolon, + ACTIONS(10787), 3, anon_sym_RBRACE, - [208433] = 3, - STATE(1748), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [208514] = 3, + STATE(1571), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10783), 6, + ACTIONS(10789), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208449] = 3, - STATE(1503), 1, + [208530] = 3, + STATE(1454), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10785), 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, - [208465] = 3, - STATE(2158), 1, + [208546] = 3, + STATE(1899), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10787), 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, - [208481] = 8, - ACTIONS(4185), 1, + [208562] = 8, + ACTIONS(4131), 1, anon_sym_while, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(8596), 1, + STATE(8460), 1, sym_type_constraints, - STATE(9621), 1, + STATE(10102), 1, sym_function_body, - STATE(9998), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208507] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, + [208588] = 7, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(8517), 1, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(8774), 1, + ACTIONS(8674), 1, anon_sym_COLON, - STATE(8653), 1, + STATE(8693), 1, sym_type_constraints, - STATE(9402), 1, + STATE(9249), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208545] = 7, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(10789), 1, - anon_sym_COLON, - STATE(8766), 1, - sym_type_constraints, - STATE(9297), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4329), 2, + ACTIONS(3272), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208569] = 3, - STATE(2052), 1, + [208612] = 3, + STATE(1538), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10791), 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, - [208585] = 8, - ACTIONS(4301), 1, + [208628] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4173), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208642] = 8, + ACTIONS(4305), 1, anon_sym_while, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(10715), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(8585), 1, + STATE(8568), 1, sym_type_constraints, - STATE(9656), 1, - sym_function_body, - STATE(9998), 1, + STATE(10124), 1, sym__block, + STATE(10129), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208611] = 3, - STATE(1560), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - 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, - [208627] = 3, - STATE(1843), 1, + [208668] = 3, + STATE(1523), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10795), 6, + ACTIONS(10797), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [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(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(3282), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208689] = 3, - STATE(1547), 1, + [208684] = 3, + STATE(1848), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, @@ -654684,8 +651321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208705] = 3, - STATE(1941), 1, + [208700] = 3, + STATE(1580), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, @@ -654697,8 +651334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208721] = 3, - STATE(1785), 1, + [208716] = 3, + STATE(1699), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, @@ -654710,129 +651347,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208737] = 7, - ACTIONS(8511), 1, + [208732] = 8, + ACTIONS(4196), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8557), 1, + sym_type_constraints, + STATE(10115), 1, + sym_function_body, + STATE(10124), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208758] = 7, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(8517), 1, + ACTIONS(8512), 1, anon_sym_where, ACTIONS(10805), 1, anon_sym_COLON, - STATE(8778), 1, + STATE(8656), 1, sym_type_constraints, - STATE(9113), 1, + STATE(9174), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 2, + ACTIONS(4243), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208761] = 5, - ACTIONS(9671), 1, - anon_sym_LPAREN, - ACTIONS(10807), 1, - anon_sym_by, - STATE(7182), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4507), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [208781] = 3, - STATE(1606), 1, + [208782] = 3, + STATE(1958), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10809), 6, + ACTIONS(10807), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208797] = 2, + [208798] = 7, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(10809), 1, + anon_sym_COLON, + STATE(8687), 1, + sym_type_constraints, + STATE(9174), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4243), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208822] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4337), 7, + ACTIONS(4249), 7, anon_sym_AT, + anon_sym_DOT, 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, + [208836] = 7, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(8590), 1, + ACTIONS(10811), 1, + anon_sym_COLON, + STATE(8750), 1, sym_type_constraints, - STATE(9650), 1, - sym_function_body, - STATE(9998), 1, - sym__block, + STATE(9461), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208837] = 3, - STATE(1709), 1, + ACTIONS(4319), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208860] = 3, + STATE(1648), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10811), 6, + ACTIONS(10813), 6, anon_sym_EQ, 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, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(10813), 1, - anon_sym_COLON, - STATE(8715), 1, - sym_type_constraints, - STATE(9248), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4218), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208877] = 6, - ACTIONS(8638), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + [208876] = 5, + ACTIONS(9697), 1, anon_sym_LPAREN, - STATE(8503), 1, + ACTIONS(10815), 1, + anon_sym_by, + STATE(7169), 1, sym_value_arguments, - STATE(9011), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10815), 3, - anon_sym_RBRACE, + ACTIONS(4464), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [208899] = 3, - STATE(1676), 1, + anon_sym_where, + anon_sym_while, + [208896] = 3, + STATE(1895), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, @@ -654844,17515 +651482,17562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208915] = 5, - ACTIONS(10819), 1, + [208912] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4265), 7, anon_sym_AT, - ACTIONS(10821), 1, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208926] = 3, + STATE(1923), 1, + sym__assignment_and_operator, 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, - [208934] = 7, - ACTIONS(4329), 1, - anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(10819), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208942] = 4, + ACTIONS(10821), 1, + anon_sym_COMMA, + STATE(8450), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 4, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8644), 1, + anon_sym_RBRACE, + [208959] = 6, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10823), 1, + STATE(8733), 1, + sym_type_constraints, + STATE(9302), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208980] = 7, + ACTIONS(3280), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(8904), 1, anon_sym_COLON, - STATE(9007), 1, + STATE(8850), 1, sym_type_constraints, - STATE(9623), 1, + STATE(9861), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208957] = 6, - ACTIONS(10825), 1, + [209003] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10829), 1, + ACTIONS(10827), 1, sym__string_end, - ACTIONS(10831), 1, + ACTIONS(10829), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [208978] = 4, - ACTIONS(10833), 1, - anon_sym_COMMA, - STATE(8431), 1, - aux_sym_type_constraints_repeat1, + [209024] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4341), 4, + ACTIONS(4527), 6, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [208995] = 3, - ACTIONS(9046), 1, - anon_sym_COLON, + anon_sym_where, + [209037] = 4, + ACTIONS(10724), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4009), 5, + ACTIONS(4141), 4, anon_sym_AT, 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, - ACTIONS(8644), 1, - anon_sym_where, - 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, - [209033] = 6, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(8521), 1, + anon_sym_in, + [209054] = 6, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(8749), 1, - sym_type_constraints, - STATE(9147), 1, - sym_class_body, + STATE(9206), 1, + sym__block, + STATE(9301), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 2, + ACTIONS(4167), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209054] = 6, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, - anon_sym_where, - STATE(8747), 1, - sym_type_constraints, - STATE(9144), 1, - sym_enum_class_body, + [209075] = 4, + ACTIONS(10831), 1, + anon_sym_COMMA, + STATE(8410), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 2, + ACTIONS(4667), 4, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, - [209075] = 6, - ACTIONS(10825), 1, + anon_sym_where, + [209092] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10835), 1, + ACTIONS(10834), 1, sym__string_end, - ACTIONS(10837), 1, + ACTIONS(10836), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8423), 2, + STATE(8416), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209096] = 2, + [209113] = 6, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(8751), 1, + sym_type_constraints, + STATE(9309), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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(4377), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209134] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4748), 6, + ACTIONS(4663), 6, sym__automatic_semicolon, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [209122] = 6, - ACTIONS(10689), 1, + [209147] = 6, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, + anon_sym_where, + STATE(8752), 1, + sym_type_constraints, + STATE(9327), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4409), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209168] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(9161), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9210), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4441), 2, + ACTIONS(4180), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209143] = 6, - ACTIONS(10825), 1, + [209189] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10839), 1, - sym__string_end, - ACTIONS(10841), 1, + ACTIONS(10829), 1, sym__string_content, + ACTIONS(10838), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8444), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209164] = 5, - ACTIONS(9890), 1, - anon_sym_val, - ACTIONS(10843), 1, - anon_sym_AT, + [209210] = 4, + ACTIONS(10840), 1, + anon_sym_COMMA, + STATE(8410), 1, + aux_sym__delegation_specifiers_repeat1, 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(8521), 1, + ACTIONS(4692), 4, + sym__automatic_semicolon, anon_sym_LBRACE, - STATE(8715), 1, - sym_type_constraints, - STATE(9248), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_where, + [209227] = 4, + ACTIONS(10840), 1, + anon_sym_COMMA, + STATE(8417), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 2, + ACTIONS(4686), 4, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, - [209204] = 6, - ACTIONS(8517), 1, anon_sym_where, - ACTIONS(8521), 1, + [209244] = 6, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(8766), 1, + STATE(8687), 1, sym_type_constraints, - STATE(9297), 1, + STATE(9174), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 2, + ACTIONS(4243), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209225] = 4, - ACTIONS(10846), 1, - anon_sym_COMMA, - STATE(8425), 1, - aux_sym__delegation_specifiers_repeat1, + [209265] = 6, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(9206), 1, + sym__block, + STATE(9341), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4686), 4, + ACTIONS(4305), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_RBRACE, + [209286] = 7, + ACTIONS(4243), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8589), 1, anon_sym_where, - [209242] = 6, - ACTIONS(10825), 1, + ACTIONS(10842), 1, + anon_sym_COLON, + STATE(9014), 1, + sym_type_constraints, + STATE(10031), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209309] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10848), 1, - sym__string_end, - ACTIONS(10850), 1, + ACTIONS(10829), 1, sym__string_content, + ACTIONS(10844), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8430), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209263] = 7, - ACTIONS(3290), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, - anon_sym_LBRACE, - ACTIONS(8899), 1, - anon_sym_COLON, - STATE(8903), 1, - sym_type_constraints, - STATE(9585), 1, - sym_enum_class_body, + [209330] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209286] = 6, - ACTIONS(8517), 1, + ACTIONS(4627), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(8521), 1, + [209343] = 6, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(8750), 1, - sym_type_constraints, - STATE(9443), 1, - sym_class_body, + STATE(9206), 1, + sym__block, + STATE(9401), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 2, + ACTIONS(4387), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209307] = 3, - ACTIONS(10733), 1, - anon_sym_by, + [209364] = 6, + ACTIONS(10823), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10825), 1, + anon_sym_DOLLAR, + ACTIONS(10846), 1, + sym__string_end, + ACTIONS(10848), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 5, - sym__automatic_semicolon, + STATE(8454), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209385] = 6, + ACTIONS(8506), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(8512), 1, anon_sym_where, - [209322] = 6, - ACTIONS(10825), 1, + STATE(8742), 1, + sym_type_constraints, + STATE(9309), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4377), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209406] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10831), 1, - sym__string_content, - ACTIONS(10852), 1, + ACTIONS(10850), 1, sym__string_end, + ACTIONS(10852), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, + STATE(8422), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209343] = 6, - ACTIONS(10825), 1, + [209427] = 6, + ACTIONS(10854), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10857), 1, anon_sym_DOLLAR, - ACTIONS(10831), 1, - sym__string_content, - ACTIONS(10854), 1, + ACTIONS(10860), 1, sym__string_end, + ACTIONS(10862), 1, + sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209364] = 4, - ACTIONS(10846), 1, - anon_sym_COMMA, - STATE(8455), 1, - aux_sym__delegation_specifiers_repeat1, + [209448] = 6, + ACTIONS(8506), 1, + anon_sym_LBRACE, + ACTIONS(8512), 1, + anon_sym_where, + STATE(8786), 1, + sym_type_constraints, + STATE(9347), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4738), 4, + ACTIONS(4509), 2, sym__automatic_semicolon, + anon_sym_RBRACE, + [209469] = 6, + ACTIONS(10823), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10825), 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, + STATE(8439), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209490] = 6, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, + STATE(9206), 1, + sym__block, + STATE(9285), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4131), 2, + sym__automatic_semicolon, anon_sym_RBRACE, + [209511] = 7, + ACTIONS(3296), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8589), 1, anon_sym_where, - [209381] = 6, - ACTIONS(10689), 1, + ACTIONS(8921), 1, + anon_sym_COLON, + STATE(8965), 1, + sym_type_constraints, + STATE(9961), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209534] = 7, + ACTIONS(4319), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(10869), 1, + anon_sym_COLON, + STATE(8955), 1, + sym_type_constraints, + STATE(9915), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209557] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(9135), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9319), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 2, + ACTIONS(4196), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209402] = 4, - ACTIONS(10856), 1, - anon_sym_COMMA, - STATE(8427), 1, - aux_sym_type_constraints_repeat1, + [209578] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4432), 4, + ACTIONS(4696), 6, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [209419] = 6, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, anon_sym_where, - STATE(8748), 1, + [209591] = 6, + ACTIONS(10823), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10825), 1, + anon_sym_DOLLAR, + ACTIONS(10871), 1, + sym__string_end, + ACTIONS(10873), 1, + sym__string_content, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8406), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209612] = 6, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(8750), 1, sym_type_constraints, - STATE(9453), 1, - sym_enum_class_body, + STATE(9461), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 2, + ACTIONS(4319), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209440] = 7, - ACTIONS(4218), 1, - anon_sym_while, - ACTIONS(8638), 1, + [209633] = 6, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, + ACTIONS(8512), 1, anon_sym_where, - ACTIONS(10859), 1, - anon_sym_COLON, - STATE(8904), 1, + STATE(8656), 1, sym_type_constraints, - STATE(9543), 1, - sym_class_body, + STATE(9174), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209463] = 6, - ACTIONS(10825), 1, + ACTIONS(4243), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209654] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10831), 1, + ACTIONS(10829), 1, sym__string_content, - ACTIONS(10861), 1, + ACTIONS(10875), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209484] = 4, - ACTIONS(10833), 1, - anon_sym_COMMA, - STATE(8427), 1, - aux_sym_type_constraints_repeat1, + [209675] = 7, + ACTIONS(4230), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(10877), 1, + anon_sym_COLON, + STATE(9080), 1, + sym_type_constraints, + STATE(10108), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209698] = 3, + ACTIONS(10715), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4426), 4, + ACTIONS(4464), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [209501] = 2, + anon_sym_COMMA, + anon_sym_where, + [209713] = 6, + ACTIONS(8512), 1, + anon_sym_where, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(8732), 1, + sym_type_constraints, + STATE(9162), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 6, + ACTIONS(4413), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, + [209734] = 6, + ACTIONS(8512), 1, anon_sym_where, - [209514] = 7, - ACTIONS(4218), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(10863), 1, - anon_sym_COLON, - STATE(8795), 1, + STATE(8655), 1, sym_type_constraints, - STATE(9543), 1, - sym_enum_class_body, + STATE(9251), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4381), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209755] = 3, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8424), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209558] = 6, - ACTIONS(8517), 1, + ACTIONS(4035), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + [209770] = 7, + ACTIONS(4243), 1, + anon_sym_while, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(8521), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(8783), 1, + ACTIONS(10879), 1, + anon_sym_COLON, + STATE(9050), 1, sym_type_constraints, - STATE(9453), 1, + STATE(10031), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209579] = 6, - ACTIONS(10689), 1, + [209793] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(9157), 1, - sym_function_body, - STATE(9175), 1, + STATE(9206), 1, sym__block, + STATE(9373), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, + ACTIONS(4253), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209600] = 7, - ACTIONS(4323), 1, + [209814] = 7, + ACTIONS(3272), 1, anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(10869), 1, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8859), 1, anon_sym_COLON, - STATE(8893), 1, + STATE(9054), 1, sym_type_constraints, - STATE(9611), 1, + STATE(10089), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209623] = 6, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, - anon_sym_LBRACE, - STATE(9175), 1, - sym__block, - STATE(9429), 1, - sym_function_body, + [209837] = 5, + ACTIONS(10881), 1, + anon_sym_AT, + ACTIONS(10883), 1, + anon_sym_val, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4139), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209644] = 2, + STATE(8451), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9295), 2, + sym__single_annotation, + sym__multi_annotation, + [209856] = 6, + ACTIONS(10823), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10825), 1, + anon_sym_DOLLAR, + ACTIONS(10829), 1, + sym__string_content, + ACTIONS(10885), 1, + sym__string_end, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(8428), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209877] = 4, + ACTIONS(10821), 1, + anon_sym_COMMA, + STATE(8456), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4545), 6, + ACTIONS(4441), 4, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [209657] = 6, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, - anon_sym_where, - STATE(8778), 1, - sym_type_constraints, - STATE(9113), 1, - sym_enum_class_body, + [209894] = 5, + ACTIONS(9826), 1, + anon_sym_val, + ACTIONS(10887), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209678] = 6, - ACTIONS(10871), 1, + STATE(8451), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9295), 2, + sym__single_annotation, + sym__multi_annotation, + [209913] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10874), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10877), 1, + ACTIONS(10890), 1, sym__string_end, - ACTIONS(10879), 1, + ACTIONS(10892), 1, sym__string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, + STATE(8449), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209699] = 6, - ACTIONS(10825), 1, + [209934] = 7, + ACTIONS(3296), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(8834), 1, + anon_sym_COLON, + STATE(8999), 1, + sym_type_constraints, + STATE(9961), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209957] = 6, + ACTIONS(10823), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10827), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR, - ACTIONS(10882), 1, - sym__string_end, - ACTIONS(10884), 1, + ACTIONS(10829), 1, sym__string_content, + ACTIONS(10894), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8454), 2, + STATE(8428), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209720] = 6, - ACTIONS(8511), 1, + [209978] = 6, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(8517), 1, + ACTIONS(8512), 1, anon_sym_where, - STATE(8736), 1, + STATE(8710), 1, sym_type_constraints, - STATE(9154), 1, + STATE(9162), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4483), 2, + ACTIONS(4413), 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, + [209999] = 4, + ACTIONS(10896), 1, + anon_sym_COMMA, + STATE(8456), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8441), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209762] = 6, - ACTIONS(8511), 1, + ACTIONS(4455), 4, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8517), 1, + anon_sym_RBRACE, + [210016] = 6, + ACTIONS(8512), 1, anon_sym_where, - STATE(8776), 1, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(8707), 1, sym_type_constraints, - STATE(9147), 1, - sym_enum_class_body, + STATE(9260), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 2, + ACTIONS(4493), 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, + [210037] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8404), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209804] = 6, - ACTIONS(10689), 1, + ACTIONS(5011), 6, anon_sym_EQ, - ACTIONS(10691), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [210050] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(9175), 1, + ACTIONS(10899), 1, + anon_sym_COLON, + ACTIONS(10901), 1, + anon_sym_EQ, + STATE(3170), 1, sym__block, - STATE(9256), 1, + STATE(3239), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209825] = 7, - ACTIONS(3282), 1, + [210070] = 6, + ACTIONS(4196), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8871), 1, - anon_sym_COLON, - STATE(8941), 1, - sym_type_constraints, - STATE(9545), 1, - sym_class_body, + STATE(10115), 1, + sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209848] = 7, - ACTIONS(3282), 1, + [210090] = 6, + ACTIONS(4243), 1, anon_sym_while, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - ACTIONS(8648), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(8879), 1, - anon_sym_COLON, - STATE(9000), 1, + STATE(9050), 1, sym_type_constraints, - STATE(9545), 1, - sym_enum_class_body, + STATE(10031), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209871] = 6, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, + [210110] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - STATE(9136), 1, - sym_function_body, - STATE(9175), 1, + ACTIONS(10903), 1, + anon_sym_COLON, + ACTIONS(10905), 1, + anon_sym_EQ, + STATE(3403), 1, sym__block, + STATE(3440), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209892] = 6, - ACTIONS(8511), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, - anon_sym_where, - STATE(8767), 1, - sym_type_constraints, - STATE(9248), 1, - sym_enum_class_body, - ACTIONS(3), 2, + [210130] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10907), 1, sym_line_comment, - ACTIONS(4218), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209913] = 4, - ACTIONS(10723), 1, - anon_sym_DOT, - STATE(8341), 1, - aux_sym_user_type_repeat1, + ACTIONS(10909), 1, + aux_sym_character_literal_token1, + ACTIONS(10911), 1, + anon_sym_BSLASHu, + ACTIONS(10913), 1, + sym__escaped_identifier, + STATE(9672), 1, + sym_character_escape_seq, + STATE(9981), 1, + sym__uni_character_literal, + [210152] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_in, - [209930] = 6, - ACTIONS(10689), 1, + ACTIONS(4663), 5, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(9152), 1, - sym_function_body, - STATE(9175), 1, + anon_sym_where, + anon_sym_while, + [210164] = 6, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(10915), 1, + anon_sym_COLON, + ACTIONS(10917), 1, + anon_sym_EQ, + STATE(1115), 1, sym__block, + STATE(1158), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [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, + [210184] = 6, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(10917), 1, + anon_sym_EQ, + ACTIONS(10919), 1, + anon_sym_COLON, + STATE(1115), 1, + sym__block, + STATE(1146), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + [210204] = 6, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(10917), 1, + anon_sym_EQ, + ACTIONS(10921), 1, + anon_sym_COLON, + STATE(1115), 1, + sym__block, + STATE(1128), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 4, - sym__automatic_semicolon, + [210224] = 5, + ACTIONS(8530), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [209989] = 2, + ACTIONS(10923), 1, + anon_sym_COLON, + STATE(9224), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4583), 6, + ACTIONS(4423), 2, sym__automatic_semicolon, + anon_sym_RBRACE, + [210242] = 6, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10925), 1, anon_sym_COLON, + ACTIONS(10927), 1, anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5117), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210262] = 6, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210002] = 6, - ACTIONS(8517), 1, - anon_sym_where, - ACTIONS(8521), 1, - anon_sym_LBRACE, - STATE(8763), 1, - sym_type_constraints, - STATE(9274), 1, - sym_class_body, + ACTIONS(10929), 1, + anon_sym_COLON, + STATE(10124), 1, + sym__block, + STATE(10150), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 2, + [210282] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4645), 5, sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, - [210023] = 6, - ACTIONS(4145), 1, + anon_sym_where, + [210294] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10897), 1, + ACTIONS(10931), 1, anon_sym_COLON, - ACTIONS(10899), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(1079), 1, - sym_function_body, - STATE(1129), 1, + STATE(3403), 1, sym__block, + STATE(3440), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210043] = 6, - ACTIONS(4145), 1, + [210314] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10901), 1, + ACTIONS(10935), 1, anon_sym_COLON, - ACTIONS(10903), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1183), 1, + STATE(3845), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210063] = 6, - ACTIONS(6714), 1, + [210334] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10905), 1, + ACTIONS(10939), 1, anon_sym_COLON, - ACTIONS(10907), 1, + ACTIONS(10941), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(5094), 1, sym__block, - STATE(3910), 1, + STATE(5239), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210083] = 6, - ACTIONS(6714), 1, + [210354] = 4, + ACTIONS(10943), 1, + anon_sym_COMMA, + STATE(8475), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4455), 3, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(10907), 1, + anon_sym_while, + [210370] = 6, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10941), 1, anon_sym_EQ, - ACTIONS(10909), 1, + ACTIONS(10946), 1, anon_sym_COLON, - STATE(3882), 1, + STATE(5094), 1, sym__block, - STATE(3890), 1, + STATE(5219), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210103] = 6, - ACTIONS(6714), 1, + [210390] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, + ACTIONS(10941), 1, anon_sym_EQ, - ACTIONS(10911), 1, + ACTIONS(10948), 1, anon_sym_COLON, - STATE(3836), 1, - sym_function_body, - STATE(3882), 1, + STATE(5094), 1, sym__block, + STATE(5188), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210123] = 6, - ACTIONS(4145), 1, + [210410] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10913), 1, + ACTIONS(10950), 1, anon_sym_COLON, - ACTIONS(10915), 1, + ACTIONS(10952), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(3960), 1, sym__block, - STATE(1143), 1, + STATE(4044), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210143] = 6, - ACTIONS(6714), 1, + [210430] = 6, + ACTIONS(4493), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, + STATE(9071), 1, + sym_type_constraints, + STATE(10097), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210450] = 6, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10917), 1, + ACTIONS(10732), 1, + anon_sym_LBRACE, + ACTIONS(10954), 1, anon_sym_COLON, - STATE(3867), 1, + STATE(9925), 1, sym_function_body, - STATE(3882), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210163] = 6, - ACTIONS(4145), 1, - anon_sym_LBRACE, - ACTIONS(10915), 1, + [210470] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10919), 1, + ACTIONS(10695), 1, + anon_sym_LBRACE, + ACTIONS(10956), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(9206), 1, sym__block, - STATE(1173), 1, + STATE(9254), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210183] = 6, - ACTIONS(4145), 1, + [210490] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10915), 1, + ACTIONS(10941), 1, anon_sym_EQ, - ACTIONS(10921), 1, + ACTIONS(10958), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(5094), 1, sym__block, - STATE(1183), 1, + STATE(5117), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210203] = 6, - ACTIONS(4145), 1, + [210510] = 6, + ACTIONS(4413), 1, + anon_sym_while, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(10915), 1, - anon_sym_EQ, - ACTIONS(10923), 1, - anon_sym_COLON, - STATE(1079), 1, - sym_function_body, - STATE(1129), 1, - sym__block, + ACTIONS(8589), 1, + anon_sym_where, + STATE(9072), 1, + sym_type_constraints, + STATE(10098), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210223] = 6, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, - anon_sym_LBRACE, - ACTIONS(10925), 1, - anon_sym_COLON, - STATE(5359), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + [210530] = 6, + ACTIONS(10960), 1, + anon_sym_DOT, + ACTIONS(10962), 1, + anon_sym_as, + ACTIONS(10964), 1, + sym__automatic_semicolon, + STATE(9182), 1, + sym_import_alias, + STATE(9183), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210243] = 2, + [210550] = 4, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(8929), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(10770), 3, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_where, - [210255] = 2, + anon_sym_SEMI, + [210566] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 5, + ACTIONS(4730), 5, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [210267] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10927), 1, - sym_line_comment, - 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, + [210578] = 6, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10935), 1, + ACTIONS(10966), 1, anon_sym_COLON, - ACTIONS(10937), 1, - anon_sym_EQ, - STATE(3082), 1, + STATE(9206), 1, sym__block, - STATE(3249), 1, + STATE(9256), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210309] = 2, + [210598] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 5, + ACTIONS(4888), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [210321] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9011), 1, - sym_class_body, + [210610] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10815), 3, + ACTIONS(4860), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [210337] = 6, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(10937), 1, - anon_sym_EQ, - ACTIONS(10939), 1, - anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3246), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210357] = 6, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(10937), 1, - anon_sym_EQ, - ACTIONS(10941), 1, - anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3234), 1, - sym_function_body, + anon_sym_where, + [210622] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210377] = 6, - ACTIONS(6430), 1, + ACTIONS(4784), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10937), 1, - anon_sym_EQ, - ACTIONS(10943), 1, - anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3196), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210397] = 2, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210634] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 5, + ACTIONS(4796), 5, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - [210409] = 2, + [210646] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 5, + ACTIONS(4517), 5, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [210421] = 6, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + [210658] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10945), 1, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(10968), 1, anon_sym_COLON, - STATE(5400), 1, - sym_function_body, - STATE(5420), 1, + STATE(3170), 1, sym__block, + STATE(3201), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210441] = 6, - ACTIONS(8223), 1, + [210678] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(10947), 1, + ACTIONS(10970), 1, anon_sym_COLON, - STATE(5082), 1, - sym_function_body, - STATE(5091), 1, + STATE(3170), 1, sym__block, + STATE(3239), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210461] = 6, - ACTIONS(8223), 1, + [210698] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(10952), 1, anon_sym_EQ, - ACTIONS(10949), 1, + ACTIONS(10972), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5162), 1, + STATE(3843), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210481] = 6, - ACTIONS(6511), 1, + [210718] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10951), 1, - anon_sym_COLON, - ACTIONS(10953), 1, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3402), 1, + ACTIONS(10974), 1, + anon_sym_COLON, + STATE(3170), 1, sym__block, - STATE(3497), 1, + STATE(3251), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, - STATE(2763), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [210519] = 6, - ACTIONS(8223), 1, + [210738] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10959), 1, + ACTIONS(10976), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5261), 1, + STATE(4755), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210539] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4756), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210551] = 6, - ACTIONS(6511), 1, + [210758] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(10961), 1, + ACTIONS(10978), 1, anon_sym_COLON, - STATE(3402), 1, + STATE(3170), 1, sym__block, - STATE(3520), 1, + STATE(3253), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210571] = 6, - ACTIONS(6511), 1, - anon_sym_LBRACE, - ACTIONS(10953), 1, + [210778] = 6, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10963), 1, + ACTIONS(10732), 1, + anon_sym_LBRACE, + ACTIONS(10980), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3528), 1, + STATE(10027), 1, sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210591] = 6, - ACTIONS(6511), 1, + [210798] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, - anon_sym_EQ, - ACTIONS(10965), 1, + ACTIONS(10982), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3551), 1, + ACTIONS(10984), 1, + anon_sym_EQ, + STATE(4735), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210611] = 6, - ACTIONS(8104), 1, + [210818] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(10967), 1, + ACTIONS(10986), 1, anon_sym_COLON, - STATE(4713), 1, + STATE(3905), 1, sym_function_body, - STATE(4800), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210631] = 6, - ACTIONS(8104), 1, + [210838] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(10901), 1, anon_sym_EQ, - ACTIONS(10969), 1, + ACTIONS(10988), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(3170), 1, sym__block, - STATE(4856), 1, + STATE(3253), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210651] = 6, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10971), 1, - anon_sym_COLON, - STATE(4750), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + [210858] = 5, + ACTIONS(10990), 1, + anon_sym_catch, + ACTIONS(10992), 1, + anon_sym_finally, + STATE(3215), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210671] = 6, - ACTIONS(8104), 1, + STATE(2758), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [210876] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10973), 1, + ACTIONS(10994), 1, anon_sym_COLON, - ACTIONS(10975), 1, + ACTIONS(10996), 1, anon_sym_EQ, - STATE(4780), 1, + STATE(4755), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210691] = 6, - ACTIONS(8104), 1, + [210896] = 6, + ACTIONS(4319), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10977), 1, - anon_sym_COLON, - STATE(4780), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + STATE(8955), 1, + sym_type_constraints, + STATE(9915), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210711] = 6, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(10975), 1, + [210916] = 6, + ACTIONS(4131), 1, + anon_sym_while, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10979), 1, - anon_sym_COLON, - STATE(4750), 1, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(10102), 1, sym_function_body, - STATE(4800), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210731] = 6, - ACTIONS(8187), 1, - anon_sym_EQ, + [210936] = 6, ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10981), 1, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10998), 1, anon_sym_COLON, - STATE(5420), 1, + STATE(5094), 1, sym__block, - STATE(5423), 1, + STATE(5239), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210751] = 2, + [210956] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10907), 1, + sym_line_comment, + ACTIONS(10911), 1, + anon_sym_BSLASHu, + ACTIONS(10913), 1, + sym__escaped_identifier, + ACTIONS(11000), 1, + aux_sym_character_literal_token1, + STATE(9981), 1, + sym__uni_character_literal, + STATE(9984), 1, + sym_character_escape_seq, + [210978] = 5, + ACTIONS(11002), 1, + anon_sym_catch, + ACTIONS(11004), 1, + anon_sym_finally, + STATE(1040), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4752), 5, - sym__automatic_semicolon, + STATE(807), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [210996] = 3, + ACTIONS(10736), 1, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210763] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4553), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210775] = 6, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(4186), 4, anon_sym_EQ, - ACTIONS(10983), 1, - anon_sym_COLON, - STATE(4800), 1, - sym__block, - STATE(4856), 1, - sym_function_body, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [211010] = 4, + ACTIONS(11006), 1, + anon_sym_COMMA, + STATE(8628), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210795] = 6, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(4505), 3, anon_sym_EQ, - ACTIONS(10985), 1, - anon_sym_COLON, - STATE(4713), 1, - sym_function_body, - STATE(4800), 1, - sym__block, - ACTIONS(3), 2, + anon_sym_LBRACE, + anon_sym_while, + [211026] = 7, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10907), 1, sym_line_comment, - [210815] = 6, - ACTIONS(6511), 1, + ACTIONS(10911), 1, + anon_sym_BSLASHu, + ACTIONS(10913), 1, + sym__escaped_identifier, + ACTIONS(11008), 1, + aux_sym_character_literal_token1, + STATE(9506), 1, + sym_character_escape_seq, + STATE(9981), 1, + sym__uni_character_literal, + [211048] = 5, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(10987), 1, + ACTIONS(11010), 1, anon_sym_COLON, - ACTIONS(10989), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3551), 1, - sym_function_body, + STATE(9460), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210835] = 6, - ACTIONS(6511), 1, + ACTIONS(4435), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [211066] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, + ACTIONS(10901), 1, anon_sym_EQ, - ACTIONS(10991), 1, + ACTIONS(11012), 1, anon_sym_COLON, - STATE(3402), 1, + STATE(3170), 1, sym__block, - STATE(3528), 1, + STATE(3251), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210855] = 4, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9090), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10993), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [210871] = 6, - ACTIONS(6511), 1, + [211086] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, + ACTIONS(10952), 1, anon_sym_EQ, - ACTIONS(10995), 1, + ACTIONS(11014), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3520), 1, + STATE(3905), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210891] = 6, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, + [211106] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10997), 1, + ACTIONS(11016), 1, anon_sym_COLON, - STATE(9175), 1, + ACTIONS(11018), 1, + anon_sym_EQ, + STATE(3170), 1, sym__block, - STATE(9424), 1, + STATE(3253), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210911] = 6, - ACTIONS(6511), 1, + [211126] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, - anon_sym_EQ, - ACTIONS(10999), 1, + ACTIONS(11020), 1, anon_sym_COLON, - STATE(3402), 1, + ACTIONS(11022), 1, + anon_sym_EQ, + STATE(3170), 1, sym__block, - STATE(3497), 1, + STATE(3253), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210931] = 2, + [211146] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4748), 5, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4464), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, + [211158] = 6, + ACTIONS(4381), 1, anon_sym_while, - [210943] = 6, - ACTIONS(8223), 1, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(11001), 1, - anon_sym_COLON, - ACTIONS(11003), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5261), 1, - sym_function_body, + STATE(9012), 1, + sym_type_constraints, + STATE(9904), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210963] = 6, - ACTIONS(6714), 1, + [211178] = 4, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(11005), 1, - anon_sym_COLON, - ACTIONS(11007), 1, - anon_sym_EQ, - STATE(3867), 1, - sym_function_body, - STATE(3882), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210983] = 5, - ACTIONS(11009), 1, - anon_sym_catch, - ACTIONS(11011), 1, - anon_sym_finally, - STATE(3491), 1, - sym_finally_block, + STATE(8876), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2834), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [211001] = 6, - ACTIONS(6714), 1, + ACTIONS(11024), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [211194] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, - anon_sym_EQ, - ACTIONS(11013), 1, + ACTIONS(11026), 1, anon_sym_COLON, - STATE(3882), 1, + ACTIONS(11028), 1, + anon_sym_EQ, + STATE(1115), 1, sym__block, - STATE(3910), 1, + STATE(1128), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211021] = 6, - ACTIONS(8223), 1, + [211214] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(11015), 1, + ACTIONS(11030), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5162), 1, + STATE(4735), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211041] = 6, - ACTIONS(8223), 1, + [211234] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10901), 1, anon_sym_EQ, - ACTIONS(11017), 1, + ACTIONS(11032), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(3170), 1, sym__block, - STATE(5143), 1, + STATE(3201), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211061] = 6, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, + [211254] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11019), 1, + ACTIONS(11022), 1, + anon_sym_EQ, + ACTIONS(11034), 1, anon_sym_COLON, - STATE(9175), 1, + STATE(3170), 1, sym__block, - STATE(9278), 1, + STATE(3251), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211081] = 6, - ACTIONS(8223), 1, + [211274] = 6, + ACTIONS(4413), 1, + anon_sym_while, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, - anon_sym_EQ, - ACTIONS(11021), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_function_body, - STATE(5091), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211101] = 4, - ACTIONS(11025), 1, - anon_sym_DOT, - STATE(8555), 1, - aux_sym_identifier_repeat1, + STATE(9079), 1, + sym_type_constraints, + STATE(10098), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + [211294] = 6, + ACTIONS(4230), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8589), 1, + anon_sym_where, + STATE(9080), 1, + sym_type_constraints, + STATE(10108), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211137] = 6, - ACTIONS(8223), 1, + [211314] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(11033), 1, + ACTIONS(11036), 1, anon_sym_COLON, - STATE(5091), 1, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(1115), 1, sym__block, - STATE(5143), 1, + STATE(1128), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211157] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4545), 5, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [211169] = 6, - ACTIONS(6430), 1, + [211334] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(11022), 1, anon_sym_EQ, - ACTIONS(11035), 1, + ACTIONS(11040), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(3170), 1, sym__block, - STATE(3196), 1, + STATE(3239), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211189] = 6, - ACTIONS(6714), 1, + [211354] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11037), 1, - anon_sym_COLON, - ACTIONS(11039), 1, + ACTIONS(11038), 1, anon_sym_EQ, - STATE(3836), 1, - sym_function_body, - STATE(3882), 1, + ACTIONS(11042), 1, + anon_sym_COLON, + STATE(1115), 1, sym__block, + STATE(1146), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211209] = 6, - ACTIONS(6430), 1, + [211374] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(11028), 1, anon_sym_EQ, - ACTIONS(11041), 1, + ACTIONS(11044), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(1115), 1, sym__block, - STATE(3234), 1, + STATE(1146), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211229] = 6, - ACTIONS(6714), 1, + [211394] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, - anon_sym_EQ, - ACTIONS(11043), 1, + ACTIONS(11046), 1, anon_sym_COLON, - STATE(3882), 1, + ACTIONS(11048), 1, + anon_sym_EQ, + STATE(3960), 1, sym__block, - STATE(3910), 1, + STATE(4044), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211249] = 6, - ACTIONS(6714), 1, + [211414] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(11038), 1, anon_sym_EQ, - ACTIONS(11045), 1, + ACTIONS(11050), 1, anon_sym_COLON, - STATE(3882), 1, + STATE(1115), 1, sym__block, - STATE(3890), 1, + STATE(1158), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211269] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4507), 5, - sym__automatic_semicolon, + [211434] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [211281] = 6, - ACTIONS(10715), 1, + ACTIONS(11048), 1, anon_sym_EQ, - ACTIONS(10717), 1, - anon_sym_LBRACE, - ACTIONS(11047), 1, + ACTIONS(11052), 1, anon_sym_COLON, - STATE(9811), 1, + STATE(3845), 1, sym_function_body, - STATE(9998), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211301] = 6, - ACTIONS(6714), 1, + [211454] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(11048), 1, anon_sym_EQ, - ACTIONS(11049), 1, + ACTIONS(11054), 1, anon_sym_COLON, - STATE(3867), 1, + STATE(3905), 1, sym_function_body, - STATE(3882), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211321] = 6, - ACTIONS(6430), 1, + [211474] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4521), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(8187), 1, + anon_sym_RBRACE, + anon_sym_where, + [211486] = 6, + ACTIONS(6444), 1, + anon_sym_LBRACE, + ACTIONS(11022), 1, anon_sym_EQ, - ACTIONS(11051), 1, + ACTIONS(11056), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(3170), 1, sym__block, - STATE(3246), 1, + STATE(3201), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211341] = 6, - ACTIONS(4329), 1, + [211506] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4579), 5, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [211518] = 6, + ACTIONS(4377), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, + ACTIONS(8589), 1, anon_sym_where, - STATE(9007), 1, + STATE(9082), 1, sym_type_constraints, - STATE(9623), 1, - sym_class_body, + STATE(10113), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211361] = 6, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(11053), 1, - anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3249), 1, - sym_function_body, + [211538] = 5, + ACTIONS(11058), 1, + anon_sym_catch, + ACTIONS(11060), 1, + anon_sym_finally, + STATE(5091), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211381] = 6, - ACTIONS(6714), 1, + STATE(4612), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211556] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10907), 1, + sym_line_comment, + ACTIONS(10911), 1, + anon_sym_BSLASHu, + ACTIONS(10913), 1, + sym__escaped_identifier, + ACTIONS(11062), 1, + aux_sym_character_literal_token1, + STATE(9482), 1, + sym_character_escape_seq, + STATE(9981), 1, + sym__uni_character_literal, + [211578] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11048), 1, anon_sym_EQ, - ACTIONS(11055), 1, + ACTIONS(11064), 1, anon_sym_COLON, - STATE(3882), 1, - sym__block, - STATE(3890), 1, + STATE(3843), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211401] = 6, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + [211598] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11057), 1, + ACTIONS(11028), 1, + anon_sym_EQ, + ACTIONS(11066), 1, anon_sym_COLON, - STATE(5317), 1, - sym_function_body, - STATE(5420), 1, + STATE(1115), 1, sym__block, + STATE(1158), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211421] = 4, - ACTIONS(11059), 1, - anon_sym_COMMA, - STATE(8549), 1, - aux_sym_type_constraints_repeat1, + [211618] = 6, + ACTIONS(4243), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + ACTIONS(8589), 1, + anon_sym_where, + STATE(9014), 1, + sym_type_constraints, + STATE(10031), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4341), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [211437] = 2, + [211638] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 5, + ACTIONS(4649), 5, + sym__automatic_semicolon, anon_sym_COLON, - anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [211449] = 6, - ACTIONS(4145), 1, + [211650] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(11038), 1, anon_sym_EQ, - ACTIONS(11061), 1, + ACTIONS(11068), 1, anon_sym_COLON, - STATE(1079), 1, - sym_function_body, - STATE(1129), 1, + STATE(1115), 1, sym__block, + STATE(1154), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211469] = 6, - ACTIONS(4139), 1, + [211670] = 6, + ACTIONS(4377), 1, anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(8589), 1, + anon_sym_where, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9464), 1, - sym_function_body, - STATE(9998), 1, - sym__block, + STATE(9083), 1, + sym_type_constraints, + STATE(10113), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211489] = 6, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [211690] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11063), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(11070), 1, anon_sym_COLON, - STATE(9471), 1, + STATE(4780), 1, sym_function_body, - STATE(9998), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211509] = 6, - ACTIONS(4145), 1, + [211710] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, - anon_sym_EQ, - ACTIONS(11065), 1, - anon_sym_COLON, - STATE(1129), 1, - sym__block, - STATE(1173), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [211529] = 6, - ACTIONS(10689), 1, + ACTIONS(11028), 1, anon_sym_EQ, - ACTIONS(10691), 1, - anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(11072), 1, anon_sym_COLON, - STATE(9175), 1, + STATE(1115), 1, sym__block, - STATE(9393), 1, + STATE(1154), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211549] = 6, - ACTIONS(4145), 1, + [211730] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(10927), 1, anon_sym_EQ, - ACTIONS(11069), 1, + ACTIONS(11074), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(5094), 1, sym__block, - STATE(1143), 1, + STATE(5188), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211569] = 6, - ACTIONS(6430), 1, + [211750] = 6, + ACTIONS(4409), 1, + anon_sym_while, + ACTIONS(8583), 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, - [211589] = 5, - ACTIONS(11075), 1, - anon_sym_catch, - ACTIONS(11077), 1, - anon_sym_finally, - STATE(4793), 1, - sym_finally_block, + ACTIONS(8589), 1, + anon_sym_where, + STATE(9086), 1, + sym_type_constraints, + STATE(10118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4532), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [211607] = 6, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + [211770] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(11079), 1, + ACTIONS(10695), 1, + anon_sym_LBRACE, + ACTIONS(11076), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(9206), 1, sym__block, - STATE(3246), 1, + STATE(9434), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211627] = 6, - ACTIONS(6430), 1, + [211790] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10917), 1, anon_sym_EQ, - ACTIONS(11081), 1, + ACTIONS(11078), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(1115), 1, sym__block, - STATE(3234), 1, + STATE(1154), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211647] = 6, - ACTIONS(6430), 1, + [211810] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(11083), 1, + ACTIONS(11080), 1, anon_sym_COLON, - STATE(3082), 1, + STATE(5094), 1, sym__block, - STATE(3196), 1, + STATE(5219), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211667] = 6, - ACTIONS(6714), 1, + [211830] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(11085), 1, + ACTIONS(11082), 1, anon_sym_COLON, - STATE(3836), 1, + STATE(4841), 1, sym_function_body, - STATE(3882), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211687] = 6, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [211850] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11087), 1, + ACTIONS(10937), 1, + anon_sym_EQ, + ACTIONS(11084), 1, anon_sym_COLON, - STATE(9511), 1, - sym_function_body, - STATE(9998), 1, + STATE(3960), 1, sym__block, + STATE(4044), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211707] = 5, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON, - STATE(9358), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4499), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [211725] = 4, - ACTIONS(11059), 1, + [211870] = 4, + ACTIONS(11086), 1, anon_sym_COMMA, - STATE(8615), 1, - aux_sym_type_constraints_repeat1, + STATE(8556), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4426), 3, - anon_sym_EQ, + ACTIONS(4667), 3, anon_sym_LBRACE, + anon_sym_where, anon_sym_while, - [211741] = 6, - ACTIONS(4357), 1, + [211886] = 6, + ACTIONS(4305), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_where, - STATE(8920), 1, - sym_type_constraints, - STATE(9518), 1, - sym_class_body, + STATE(10124), 1, + sym__block, + STATE(10129), 1, + sym_function_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, + [211906] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4195), 3, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [211777] = 5, - ACTIONS(11093), 1, + ACTIONS(4627), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [211918] = 5, + ACTIONS(11089), 1, anon_sym_catch, - ACTIONS(11095), 1, + ACTIONS(11091), 1, anon_sym_finally, - STATE(5099), 1, + STATE(3459), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4599), 2, + STATE(2819), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [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, + [211936] = 6, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - ACTIONS(11099), 1, + ACTIONS(11093), 1, anon_sym_COLON, - ACTIONS(11101), 1, - anon_sym_EQ, - STATE(5082), 1, + STATE(9994), 1, sym_function_body, - STATE(5091), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(11103), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [211847] = 6, - ACTIONS(8223), 1, + [211956] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(10933), 1, anon_sym_EQ, - ACTIONS(11105), 1, + ACTIONS(11095), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(3403), 1, sym__block, - STATE(5143), 1, + STATE(3512), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211867] = 6, - ACTIONS(4145), 1, + [211976] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11107), 1, - anon_sym_COLON, - ACTIONS(11109), 1, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(1129), 1, + ACTIONS(11097), 1, + anon_sym_COLON, + STATE(5094), 1, sym__block, - STATE(1143), 1, + STATE(5188), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211887] = 6, - ACTIONS(4145), 1, + [211996] = 5, + ACTIONS(11099), 1, + anon_sym_catch, + ACTIONS(11101), 1, + anon_sym_finally, + STATE(3898), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3070), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212014] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10905), 1, anon_sym_EQ, - ACTIONS(11111), 1, + ACTIONS(11103), 1, anon_sym_COLON, - STATE(1129), 1, - sym__block, - STATE(1143), 1, + STATE(3374), 1, sym_function_body, + STATE(3403), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211907] = 6, - ACTIONS(4218), 1, + [212034] = 6, + ACTIONS(4167), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_where, - STATE(8904), 1, - sym_type_constraints, - STATE(9543), 1, - sym_class_body, + STATE(9988), 1, + sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211927] = 6, - ACTIONS(4145), 1, + [212054] = 6, + ACTIONS(4509), 1, + anon_sym_while, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, - anon_sym_EQ, - ACTIONS(11113), 1, - anon_sym_COLON, - STATE(1129), 1, - sym__block, - STATE(1173), 1, - sym_function_body, + ACTIONS(8589), 1, + anon_sym_where, + STATE(9089), 1, + sym_type_constraints, + STATE(10132), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211947] = 6, - ACTIONS(4145), 1, + [212074] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10905), 1, anon_sym_EQ, - ACTIONS(11115), 1, + ACTIONS(11105), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(3403), 1, sym__block, - STATE(1183), 1, + STATE(3501), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211967] = 6, - ACTIONS(4218), 1, + [212094] = 6, + ACTIONS(4253), 1, anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(8795), 1, - sym_type_constraints, - STATE(9543), 1, - sym_enum_class_body, + STATE(10124), 1, + sym__block, + STATE(10144), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211987] = 2, + [212114] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4565), 5, + ACTIONS(4896), 5, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - [211999] = 3, - ACTIONS(10740), 1, + [212126] = 6, + ACTIONS(6444), 1, + anon_sym_LBRACE, + ACTIONS(11018), 1, + anon_sym_EQ, + ACTIONS(11107), 1, anon_sym_COLON, + STATE(3170), 1, + sym__block, + STATE(3201), 1, + sym_function_body, 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, + [212146] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(10984), 1, anon_sym_EQ, - ACTIONS(11117), 1, + ACTIONS(11109), 1, anon_sym_COLON, - STATE(5091), 1, - sym__block, - STATE(5162), 1, + STATE(4755), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212033] = 6, - ACTIONS(6430), 1, + [212166] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11119), 1, + ACTIONS(11111), 1, anon_sym_COLON, - ACTIONS(11121), 1, + ACTIONS(11113), 1, + anon_sym_EQ, + STATE(3403), 1, + sym__block, + STATE(3440), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212186] = 6, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(3082), 1, + ACTIONS(11115), 1, + anon_sym_COLON, + STATE(5094), 1, sym__block, - STATE(3249), 1, + STATE(5117), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212053] = 2, + [212206] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4583), 5, + ACTIONS(4527), 5, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [212065] = 6, - ACTIONS(6430), 1, + [212218] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, - anon_sym_EQ, - ACTIONS(11123), 1, + ACTIONS(11117), 1, anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3246), 1, + ACTIONS(11119), 1, + anon_sym_EQ, + STATE(3843), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212085] = 6, - ACTIONS(6430), 1, + [212238] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(11113), 1, anon_sym_EQ, - ACTIONS(11125), 1, + ACTIONS(11121), 1, anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3234), 1, + STATE(3374), 1, sym_function_body, + STATE(3403), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212105] = 6, - ACTIONS(6430), 1, + [212258] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(10984), 1, anon_sym_EQ, - ACTIONS(11127), 1, + ACTIONS(11123), 1, anon_sym_COLON, - STATE(3082), 1, - sym__block, - STATE(3196), 1, + STATE(4780), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212125] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4635), 5, - sym__automatic_semicolon, + [212278] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [212137] = 6, - ACTIONS(4149), 1, - anon_sym_while, - ACTIONS(10715), 1, + ACTIONS(10952), 1, anon_sym_EQ, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(9571), 1, + ACTIONS(11125), 1, + anon_sym_COLON, + STATE(3845), 1, sym_function_body, - STATE(9998), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212157] = 6, - ACTIONS(4145), 1, + [212298] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, + ACTIONS(11113), 1, anon_sym_EQ, - ACTIONS(11129), 1, + ACTIONS(11127), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(3403), 1, sym__block, - STATE(1173), 1, + STATE(3501), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212177] = 7, - ACTIONS(3), 1, + [212318] = 6, + ACTIONS(4387), 1, + anon_sym_while, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(10124), 1, + sym__block, + STATE(10156), 1, + sym_function_body, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10927), 1, sym_line_comment, - ACTIONS(10931), 1, - anon_sym_BSLASHu, - ACTIONS(10933), 1, - sym__escaped_identifier, - ACTIONS(11131), 1, - aux_sym_character_literal_token1, - STATE(9540), 1, - sym_character_escape_seq, - STATE(9836), 1, - sym__uni_character_literal, - [212199] = 6, - ACTIONS(4145), 1, + [212338] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, + ACTIONS(11113), 1, anon_sym_EQ, - ACTIONS(11133), 1, + ACTIONS(11129), 1, anon_sym_COLON, - STATE(1129), 1, + STATE(3403), 1, sym__block, - STATE(1183), 1, + STATE(3512), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212219] = 6, - ACTIONS(6511), 1, + [212358] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11135), 1, - anon_sym_COLON, - ACTIONS(11137), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3497), 1, + ACTIONS(11131), 1, + anon_sym_COLON, + STATE(3843), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212239] = 6, - ACTIONS(4145), 1, - anon_sym_LBRACE, - ACTIONS(11109), 1, + [212378] = 6, + ACTIONS(4180), 1, + anon_sym_while, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(11139), 1, - anon_sym_COLON, - STATE(1079), 1, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(10069), 1, sym_function_body, - STATE(1129), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212259] = 6, - ACTIONS(8223), 1, + [212398] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4659), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11101), 1, + anon_sym_RBRACE, + anon_sym_where, + [212410] = 6, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(11141), 1, + ACTIONS(8204), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(5369), 1, sym__block, - STATE(5261), 1, + STATE(5420), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212279] = 6, - ACTIONS(6511), 1, + [212430] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, + ACTIONS(11135), 1, + anon_sym_COLON, ACTIONS(11137), 1, anon_sym_EQ, - ACTIONS(11143), 1, - anon_sym_COLON, - STATE(3402), 1, + STATE(3403), 1, sym__block, - STATE(3520), 1, + STATE(3440), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212299] = 4, - ACTIONS(11145), 1, - anon_sym_COMMA, - STATE(8580), 1, - aux_sym__delegation_specifiers_repeat1, + [212450] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [212315] = 6, - ACTIONS(6511), 1, + ACTIONS(4742), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_in, + [212462] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11137), 1, + ACTIONS(10927), 1, anon_sym_EQ, - ACTIONS(11148), 1, + ACTIONS(11139), 1, anon_sym_COLON, - STATE(3402), 1, + STATE(5094), 1, sym__block, - STATE(3528), 1, + STATE(5219), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212335] = 6, - ACTIONS(6511), 1, - anon_sym_LBRACE, - ACTIONS(11137), 1, + [212482] = 6, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(11150), 1, + ACTIONS(8204), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3551), 1, + STATE(5338), 1, sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212355] = 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(11152), 1, - aux_sym_character_literal_token1, - STATE(9732), 1, - sym_character_escape_seq, - STATE(9836), 1, - sym__uni_character_literal, - [212377] = 7, + [212502] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10927), 1, + ACTIONS(10907), 1, sym_line_comment, - ACTIONS(10931), 1, + ACTIONS(10911), 1, anon_sym_BSLASHu, - ACTIONS(10933), 1, + ACTIONS(10913), 1, sym__escaped_identifier, - ACTIONS(11154), 1, + ACTIONS(11143), 1, aux_sym_character_literal_token1, - STATE(9818), 1, + STATE(9714), 1, sym_character_escape_seq, - STATE(9836), 1, + STATE(9981), 1, sym__uni_character_literal, - [212399] = 6, - ACTIONS(4441), 1, - anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [212524] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(9661), 1, + ACTIONS(11145), 1, + anon_sym_COLON, + ACTIONS(11147), 1, + anon_sym_EQ, + STATE(4755), 1, sym_function_body, - STATE(9998), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212419] = 6, - ACTIONS(8104), 1, + [212544] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11156), 1, - anon_sym_COLON, - ACTIONS(11158), 1, + ACTIONS(11147), 1, anon_sym_EQ, - STATE(4713), 1, + ACTIONS(11149), 1, + anon_sym_COLON, + STATE(4735), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4686), 3, + [212564] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [212455] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4718), 5, + ACTIONS(11147), 1, 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(11160), 1, + ACTIONS(11151), 1, anon_sym_COLON, - ACTIONS(11162), 1, - anon_sym_EQ, STATE(4780), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212487] = 6, - ACTIONS(4301), 1, - anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [212584] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(9656), 1, + ACTIONS(11147), 1, + anon_sym_EQ, + ACTIONS(11153), 1, + anon_sym_COLON, + STATE(4841), 1, sym_function_body, - STATE(9998), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212507] = 6, - ACTIONS(4483), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + [212604] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(8877), 1, - sym_type_constraints, - STATE(9653), 1, - sym_enum_class_body, + ACTIONS(11155), 1, + anon_sym_COLON, + ACTIONS(11157), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5117), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212527] = 6, - ACTIONS(8104), 1, + [212624] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(11157), 1, anon_sym_EQ, - ACTIONS(11164), 1, + ACTIONS(11159), 1, anon_sym_COLON, - STATE(4750), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, + STATE(5188), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212547] = 6, - ACTIONS(8104), 1, + [212644] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(11157), 1, anon_sym_EQ, - ACTIONS(11166), 1, + ACTIONS(11161), 1, anon_sym_COLON, - STATE(4750), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, + STATE(5219), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212567] = 6, - ACTIONS(8104), 1, + [212664] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(11157), 1, anon_sym_EQ, - ACTIONS(11168), 1, + ACTIONS(11163), 1, anon_sym_COLON, - STATE(4800), 1, + STATE(5094), 1, sym__block, - STATE(4856), 1, + STATE(5239), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212587] = 6, - ACTIONS(8104), 1, + [212684] = 3, + ACTIONS(10815), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4464), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [212698] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(11137), 1, anon_sym_EQ, - ACTIONS(11170), 1, + ACTIONS(11165), 1, anon_sym_COLON, - STATE(4713), 1, + STATE(3374), 1, sym_function_body, - STATE(4800), 1, + STATE(3403), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212607] = 6, - ACTIONS(4297), 1, - anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [212718] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - STATE(9650), 1, - sym_function_body, - STATE(9998), 1, + ACTIONS(11137), 1, + anon_sym_EQ, + ACTIONS(11167), 1, + anon_sym_COLON, + STATE(3403), 1, sym__block, + STATE(3501), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, + [212738] = 6, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - ACTIONS(11174), 1, + ACTIONS(11169), 1, anon_sym_COLON, - ACTIONS(11176), 1, - anon_sym_EQ, - STATE(3867), 1, - sym_function_body, - STATE(3882), 1, + STATE(5369), 1, sym__block, + STATE(5392), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212669] = 6, - ACTIONS(8223), 1, + [212758] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11178), 1, + ACTIONS(11171), 1, anon_sym_COLON, - ACTIONS(11180), 1, + ACTIONS(11173), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(1115), 1, sym__block, - STATE(5261), 1, + STATE(1128), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212689] = 6, - ACTIONS(8104), 1, + [212778] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(10984), 1, anon_sym_EQ, - ACTIONS(11182), 1, + ACTIONS(11175), 1, anon_sym_COLON, - STATE(4780), 1, + STATE(4841), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212709] = 6, - ACTIONS(8223), 1, + [212798] = 5, + ACTIONS(11177), 1, + anon_sym_catch, + ACTIONS(11179), 1, + anon_sym_finally, + STATE(4855), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4532), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212816] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11119), 1, anon_sym_EQ, - ACTIONS(11184), 1, + ACTIONS(11181), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(3960), 1, sym__block, - STATE(5162), 1, + STATE(4044), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212729] = 6, - ACTIONS(8223), 1, + [212836] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11173), 1, anon_sym_EQ, - ACTIONS(11186), 1, + ACTIONS(11183), 1, anon_sym_COLON, - STATE(5091), 1, + STATE(1115), 1, sym__block, - STATE(5143), 1, + STATE(1146), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212749] = 6, - ACTIONS(8223), 1, + [212856] = 4, + ACTIONS(11185), 1, + anon_sym_COMMA, + STATE(8556), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4692), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [212872] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11173), 1, anon_sym_EQ, - ACTIONS(11188), 1, + ACTIONS(11187), 1, anon_sym_COLON, - STATE(5082), 1, - sym_function_body, - STATE(5091), 1, + STATE(1115), 1, sym__block, + STATE(1158), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212769] = 6, - ACTIONS(4469), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + [212892] = 6, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(8880), 1, - sym_type_constraints, - STATE(9627), 1, - sym_enum_class_body, + ACTIONS(10927), 1, + anon_sym_EQ, + ACTIONS(11189), 1, + anon_sym_COLON, + STATE(5094), 1, + sym__block, + STATE(5239), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212789] = 6, - ACTIONS(4361), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + [212912] = 6, + ACTIONS(4137), 1, anon_sym_LBRACE, - STATE(8887), 1, - sym_type_constraints, - STATE(9617), 1, - sym_enum_class_body, + ACTIONS(11173), 1, + anon_sym_EQ, + ACTIONS(11191), 1, + anon_sym_COLON, + STATE(1115), 1, + sym__block, + STATE(1154), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212809] = 6, - ACTIONS(6714), 1, + [212932] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(11137), 1, anon_sym_EQ, - ACTIONS(11190), 1, + ACTIONS(11193), 1, anon_sym_COLON, - STATE(3882), 1, + STATE(3403), 1, sym__block, - STATE(3890), 1, + STATE(3512), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212829] = 2, + [212952] = 4, + ACTIONS(11185), 1, + anon_sym_COMMA, + STATE(8608), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 5, - sym__automatic_semicolon, - anon_sym_COLON, + ACTIONS(4686), 3, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, - [212841] = 2, + anon_sym_while, + [212968] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4579), 5, - sym__automatic_semicolon, + ACTIONS(4696), 5, anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, - [212853] = 4, - ACTIONS(11194), 1, - anon_sym_DOT, - STATE(8609), 1, - aux_sym_identifier_repeat1, + anon_sym_while, + [212980] = 6, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(11119), 1, + anon_sym_EQ, + ACTIONS(11195), 1, + anon_sym_COLON, + STATE(3905), 1, + sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11192), 3, - sym__automatic_semicolon, - anon_sym_DOT_STAR, - anon_sym_as, - [212869] = 5, + [213000] = 6, + ACTIONS(6520), 1, + anon_sym_LBRACE, + ACTIONS(10905), 1, + anon_sym_EQ, ACTIONS(11197), 1, - anon_sym_catch, + anon_sym_COLON, + STATE(3403), 1, + sym__block, + STATE(3512), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213020] = 6, + ACTIONS(6520), 1, + anon_sym_LBRACE, + ACTIONS(10933), 1, + anon_sym_EQ, ACTIONS(11199), 1, - anon_sym_finally, - STATE(1021), 1, - sym_finally_block, + anon_sym_COLON, + STATE(3403), 1, + sym__block, + STATE(3501), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(801), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [212887] = 7, + [213040] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10927), 1, + ACTIONS(10907), 1, sym_line_comment, - ACTIONS(10931), 1, + ACTIONS(10911), 1, anon_sym_BSLASHu, - ACTIONS(10933), 1, + ACTIONS(10913), 1, sym__escaped_identifier, ACTIONS(11201), 1, aux_sym_character_literal_token1, - STATE(9836), 1, - sym__uni_character_literal, - STATE(9884), 1, + STATE(9859), 1, sym_character_escape_seq, - [212909] = 6, - ACTIONS(6511), 1, + STATE(9981), 1, + sym__uni_character_literal, + [213062] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, + ACTIONS(11018), 1, + anon_sym_EQ, ACTIONS(11203), 1, anon_sym_COLON, - ACTIONS(11205), 1, - anon_sym_EQ, - STATE(3402), 1, + STATE(3170), 1, sym__block, - STATE(3520), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212929] = 6, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_COLON, - STATE(9587), 1, + STATE(3239), 1, sym_function_body, - STATE(9998), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212949] = 6, - ACTIONS(6714), 1, + [213082] = 6, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(11018), 1, anon_sym_EQ, - ACTIONS(11209), 1, + ACTIONS(11205), 1, anon_sym_COLON, - STATE(3882), 1, + STATE(3170), 1, sym__block, - STATE(3910), 1, + STATE(3251), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4432), 3, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_while, - [212985] = 6, - ACTIONS(6714), 1, + [213102] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(10996), 1, anon_sym_EQ, - ACTIONS(11214), 1, + ACTIONS(11207), 1, anon_sym_COLON, - STATE(3836), 1, + STATE(4841), 1, sym_function_body, - STATE(3882), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4351), 2, - sym__automatic_semicolon, - 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, - 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, - 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, - [213061] = 6, - ACTIONS(4361), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_where, - STATE(8884), 1, - sym_type_constraints, - STATE(9617), 1, - sym_class_body, + [213122] = 4, + ACTIONS(11209), 1, + anon_sym_DOT, + STATE(8341), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213081] = 6, - ACTIONS(10689), 1, + ACTIONS(4141), 3, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [213138] = 6, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(11222), 1, + ACTIONS(11211), 1, anon_sym_COLON, - STATE(9175), 1, + STATE(9206), 1, sym__block, - STATE(9258), 1, + STATE(9294), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213101] = 6, - ACTIONS(4465), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + [213158] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(8897), 1, - sym_type_constraints, - STATE(9515), 1, - sym_enum_class_body, + ACTIONS(10996), 1, + anon_sym_EQ, + ACTIONS(11213), 1, + anon_sym_COLON, + STATE(4780), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213121] = 6, - ACTIONS(4162), 1, - anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [213178] = 6, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(9600), 1, + ACTIONS(11119), 1, + anon_sym_EQ, + ACTIONS(11215), 1, + anon_sym_COLON, + STATE(3845), 1, sym_function_body, - STATE(9998), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213141] = 6, - ACTIONS(4185), 1, - anon_sym_while, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + [213198] = 6, + ACTIONS(6520), 1, anon_sym_LBRACE, - STATE(9621), 1, + ACTIONS(10933), 1, + anon_sym_EQ, + ACTIONS(11217), 1, + anon_sym_COLON, + STATE(3374), 1, sym_function_body, - STATE(9998), 1, + STATE(3403), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213161] = 3, - ACTIONS(10807), 1, - anon_sym_by, + [213218] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 4, + ACTIONS(4667), 5, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_where, - anon_sym_while, - [213175] = 2, + [213230] = 4, + ACTIONS(11006), 1, + anon_sym_COMMA, + STATE(8475), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [213187] = 6, - ACTIONS(6511), 1, + ACTIONS(4441), 3, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(11205), 1, + anon_sym_while, + [213246] = 6, + ACTIONS(8202), 1, anon_sym_EQ, - ACTIONS(11224), 1, + ACTIONS(8204), 1, + anon_sym_LBRACE, + ACTIONS(11219), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3551), 1, + STATE(5324), 1, sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213207] = 6, - ACTIONS(6511), 1, + [213266] = 6, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, + ACTIONS(10996), 1, anon_sym_EQ, - ACTIONS(11226), 1, + ACTIONS(11221), 1, anon_sym_COLON, - STATE(3402), 1, - sym__block, - STATE(3497), 1, + STATE(4735), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213227] = 6, - ACTIONS(4323), 1, - anon_sym_while, - ACTIONS(8644), 1, - anon_sym_where, - ACTIONS(8648), 1, + [213286] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(8893), 1, - sym_type_constraints, - STATE(9611), 1, - sym_enum_class_body, + ACTIONS(10693), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5212), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213247] = 6, - ACTIONS(8104), 1, + [213303] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(10917), 1, anon_sym_EQ, - ACTIONS(11228), 1, - anon_sym_COLON, - STATE(4800), 1, + STATE(1115), 1, sym__block, - STATE(4856), 1, + STATE(1136), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213267] = 6, - ACTIONS(6511), 1, + [213320] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, + ACTIONS(11173), 1, anon_sym_EQ, - ACTIONS(11230), 1, - anon_sym_COLON, - STATE(3402), 1, + STATE(1115), 1, sym__block, - STATE(3528), 1, + STATE(1187), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213287] = 6, - ACTIONS(4465), 1, - anon_sym_while, - ACTIONS(8638), 1, + [213337] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_where, - STATE(8895), 1, - sym_type_constraints, - STATE(9515), 1, - sym_class_body, + ACTIONS(11119), 1, + anon_sym_EQ, + STATE(3850), 1, + sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213307] = 5, - ACTIONS(6511), 1, + [213354] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, + ACTIONS(11119), 1, anon_sym_EQ, - STATE(3402), 1, + STATE(3960), 1, sym__block, - STATE(3505), 1, + STATE(4005), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213324] = 5, - ACTIONS(6511), 1, + [213371] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3488), 1, - sym_function_body, + STATE(9312), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213341] = 5, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(4623), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213386] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - STATE(9613), 1, - sym_function_body, - STATE(9998), 1, + ACTIONS(11173), 1, + anon_sym_EQ, + STATE(1115), 1, sym__block, + STATE(1141), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213358] = 5, - ACTIONS(8104), 1, + [213403] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(11173), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(1115), 1, sym__block, - STATE(4810), 1, + STATE(1136), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213375] = 2, + [213420] = 3, + ACTIONS(4030), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [213386] = 5, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(9604), 1, - sym_function_body, - STATE(9998), 1, - sym__block, + ACTIONS(4035), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [213433] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213403] = 5, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(11158), 1, - anon_sym_EQ, - STATE(4727), 1, - sym_function_body, - STATE(4800), 1, - sym__block, + ACTIONS(5069), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [213444] = 3, + ACTIONS(4190), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213420] = 5, - ACTIONS(6511), 1, + ACTIONS(4192), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [213457] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, + ACTIONS(11147), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3481), 1, + STATE(4859), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213437] = 5, - ACTIONS(8104), 1, + [213474] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(11173), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(1098), 1, sym_function_body, - STATE(4800), 1, + STATE(1115), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213454] = 5, - ACTIONS(6511), 1, - anon_sym_LBRACE, - ACTIONS(11205), 1, + [213491] = 5, + ACTIONS(10730), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3471), 1, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(10120), 1, sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213471] = 2, + [213508] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 4, + ACTIONS(4659), 4, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_where, anon_sym_while, - [213482] = 5, - ACTIONS(6714), 1, + [213519] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, + ACTIONS(11048), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3960), 1, sym__block, - STATE(3938), 1, + STATE(4005), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213499] = 5, - ACTIONS(6714), 1, + [213536] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(11147), 1, anon_sym_EQ, - STATE(3882), 1, - sym__block, - STATE(4030), 1, + STATE(4869), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213516] = 5, - ACTIONS(6714), 1, - anon_sym_LBRACE, - ACTIONS(11176), 1, + [213553] = 5, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3882), 1, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5369), 1, sym__block, - STATE(3959), 1, + STATE(5415), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213533] = 5, - ACTIONS(10689), 1, + [213570] = 5, + ACTIONS(10730), 1, anon_sym_EQ, - ACTIONS(10691), 1, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(9115), 1, + STATE(10110), 1, sym_function_body, - STATE(9175), 1, + STATE(10124), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213550] = 5, - ACTIONS(6714), 1, + [213587] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(11048), 1, anon_sym_EQ, - STATE(3882), 1, - sym__block, - STATE(3938), 1, + STATE(3943), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213567] = 5, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, + [213604] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(9175), 1, - sym__block, - STATE(9279), 1, + ACTIONS(11048), 1, + anon_sym_EQ, + STATE(3889), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, + [213621] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11176), 1, + ACTIONS(11048), 1, anon_sym_EQ, - STATE(3844), 1, + STATE(3850), 1, sym_function_body, - STATE(3882), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213614] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4553), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [213625] = 4, - ACTIONS(8511), 1, + [213638] = 5, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(9113), 1, - sym_enum_class_body, + STATE(10106), 1, + sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213640] = 3, - ACTIONS(11236), 1, - anon_sym_DOT, + [213655] = 4, + ACTIONS(11223), 1, + anon_sym_import, + ACTIONS(11225), 1, + sym__import_list_delimiter, 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, + STATE(8745), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [213670] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9297), 1, + STATE(9260), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 2, + ACTIONS(4493), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213668] = 4, - ACTIONS(8511), 1, + [213685] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - STATE(9418), 1, + STATE(9162), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 2, + ACTIONS(4413), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213683] = 5, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(11180), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + [213700] = 4, + ACTIONS(11227), 1, + anon_sym_COMMA, + STATE(8709), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213700] = 5, - ACTIONS(10715), 1, - anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(8968), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [213715] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(9631), 1, + ACTIONS(11119), 1, + anon_sym_EQ, + STATE(3889), 1, sym_function_body, - STATE(9998), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213717] = 5, - ACTIONS(8104), 1, + [213732] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4517), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213743] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11158), 1, + ACTIONS(11147), 1, anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4887), 1, + STATE(4835), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213734] = 5, - ACTIONS(8223), 1, + [213760] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11157), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5238), 1, + STATE(5212), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213751] = 5, - ACTIONS(8223), 1, + [213777] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11157), 1, anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5230), 1, + STATE(5082), 1, sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213768] = 5, - ACTIONS(8223), 1, + [213794] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11180), 1, + ACTIONS(11157), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5202), 1, + STATE(5099), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213785] = 5, - ACTIONS(11238), 1, + [213811] = 5, + ACTIONS(11229), 1, anon_sym_RBRACE, - ACTIONS(11240), 1, + ACTIONS(11231), 1, sym__automatic_semicolon, - STATE(259), 1, + STATE(257), 1, sym__semi, - STATE(8663), 1, + STATE(8772), 1, aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213802] = 5, - ACTIONS(10691), 1, + [213828] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11243), 1, - anon_sym_COLON, - ACTIONS(11245), 1, - sym__automatic_semicolon, - STATE(9855), 1, + ACTIONS(10941), 1, + anon_sym_EQ, + STATE(5094), 1, sym__block, + STATE(5212), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213819] = 5, - ACTIONS(6714), 1, + [213845] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10941), 1, anon_sym_EQ, - STATE(3882), 1, - sym__block, - STATE(4030), 1, + STATE(5082), 1, sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213836] = 5, - ACTIONS(8104), 1, + [213862] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(10941), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(5094), 1, sym__block, - STATE(4887), 1, + STATE(5099), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213853] = 5, - ACTIONS(8223), 1, + [213879] = 4, + ACTIONS(11233), 1, + anon_sym_LPAREN, + STATE(9403), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7118), 2, + anon_sym_AT, + anon_sym_val, + [213894] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(10941), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5230), 1, + STATE(5133), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213870] = 5, - ACTIONS(8104), 1, + [213911] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(10927), 1, anon_sym_EQ, - STATE(4714), 1, - sym_function_body, - STATE(4800), 1, + STATE(5094), 1, sym__block, + STATE(5212), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213928] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213887] = 5, - ACTIONS(8104), 1, + ACTIONS(4730), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213939] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, + ACTIONS(10984), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(4859), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213904] = 5, - ACTIONS(8104), 1, + [213956] = 5, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(11162), 1, - anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4810), 1, - sym_function_body, + ACTIONS(11235), 1, + anon_sym_COLON, + ACTIONS(11237), 1, + sym__automatic_semicolon, + STATE(9691), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213921] = 5, - ACTIONS(6714), 1, + [213973] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11147), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(4817), 1, + sym_function_body, + STATE(4879), 1, sym__block, - STATE(3959), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213990] = 5, + ACTIONS(10730), 1, + anon_sym_EQ, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(10091), 1, sym_function_body, + STATE(10124), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213938] = 5, - ACTIONS(8223), 1, + [214007] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(11157), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(5094), 1, sym__block, - STATE(5202), 1, + STATE(5133), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213955] = 3, - ACTIONS(10709), 1, - anon_sym_AMP, + [214024] = 5, + ACTIONS(10695), 1, + anon_sym_LBRACE, + ACTIONS(11239), 1, + anon_sym_COLON, + ACTIONS(11241), 1, + sym__automatic_semicolon, + STATE(9590), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - sym__quest, - [213968] = 4, - ACTIONS(8521), 1, + [214041] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(9445), 1, - sym_class_body, + ACTIONS(10984), 1, + anon_sym_EQ, + STATE(4869), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213983] = 5, - ACTIONS(10715), 1, + [214058] = 5, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10717), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(9573), 1, + STATE(9206), 1, + sym__block, + STATE(9286), 1, sym_function_body, - STATE(9998), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214075] = 5, + ACTIONS(11243), 1, + anon_sym_RBRACE, + ACTIONS(11245), 1, + sym__automatic_semicolon, + STATE(259), 1, + sym__semi, + STATE(8680), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214092] = 5, + ACTIONS(6444), 1, + anon_sym_LBRACE, + ACTIONS(11018), 1, + anon_sym_EQ, + STATE(3170), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214000] = 5, - ACTIONS(8223), 1, + [214109] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(3960), 1, sym__block, - STATE(5238), 1, + STATE(4005), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214017] = 5, - ACTIONS(6714), 1, + [214126] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(11018), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3143), 1, + sym_function_body, + STATE(3170), 1, sym__block, - STATE(3938), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214143] = 5, + ACTIONS(6444), 1, + anon_sym_LBRACE, + ACTIONS(11018), 1, + anon_sym_EQ, + STATE(3113), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214034] = 2, + [214160] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 4, + ACTIONS(4649), 4, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_where, anon_sym_while, - [214045] = 5, - ACTIONS(8223), 1, + [214171] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11101), 1, + ACTIONS(10952), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(3960), 1, sym__block, - STATE(5193), 1, + STATE(4005), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214062] = 5, - ACTIONS(6511), 1, + [214188] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(11137), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3505), 1, - sym_function_body, + STATE(9162), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214079] = 5, - ACTIONS(6511), 1, - anon_sym_LBRACE, - ACTIONS(11137), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3488), 1, - sym_function_body, + ACTIONS(4413), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214203] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214096] = 5, - ACTIONS(6511), 1, + ACTIONS(4645), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11137), 1, + anon_sym_where, + anon_sym_while, + [214214] = 5, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(10952), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3481), 1, + STATE(3943), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214113] = 5, - ACTIONS(6511), 1, + [214231] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11137), 1, + ACTIONS(11113), 1, anon_sym_EQ, - STATE(3402), 1, + STATE(3403), 1, sym__block, - STATE(3471), 1, + STATE(3422), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214130] = 5, - ACTIONS(4145), 1, + [214248] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, + ACTIONS(11113), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(3403), 1, sym__block, - STATE(1155), 1, + STATE(3499), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214147] = 5, - ACTIONS(6430), 1, + [214265] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(11113), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(3403), 1, sym__block, - STATE(3270), 1, + STATE(3534), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214164] = 5, - ACTIONS(6430), 1, + [214282] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, - anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3216), 1, - sym_function_body, + STATE(9302), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214181] = 5, - ACTIONS(1642), 1, - anon_sym_RBRACE, - ACTIONS(11247), 1, + ACTIONS(4230), 2, sym__automatic_semicolon, - STATE(258), 1, - sym__semi, - STATE(8663), 1, - aux_sym_statements_repeat1, + anon_sym_RBRACE, + [214297] = 5, + ACTIONS(4137), 1, + anon_sym_LBRACE, + ACTIONS(11028), 1, + anon_sym_EQ, + STATE(1098), 1, + sym_function_body, + STATE(1115), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214198] = 5, - ACTIONS(6430), 1, + [214314] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(11119), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3179), 1, + STATE(3943), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214215] = 5, - ACTIONS(6430), 1, + [214331] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(11113), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(3403), 1, sym__block, - STATE(3138), 1, + STATE(3585), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214232] = 5, - ACTIONS(4145), 1, + [214348] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10952), 1, anon_sym_EQ, - STATE(1017), 1, + STATE(3889), 1, sym_function_body, - STATE(1129), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214249] = 5, - ACTIONS(4145), 1, + [214365] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, - anon_sym_EQ, - STATE(1017), 1, - sym_function_body, - STATE(1129), 1, - sym__block, + STATE(9427), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214266] = 5, - ACTIONS(4145), 1, + ACTIONS(3296), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214380] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(11028), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(1115), 1, sym__block, - STATE(1165), 1, + STATE(1136), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214283] = 5, - ACTIONS(4145), 1, + [214397] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(11028), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(1115), 1, sym__block, - STATE(1135), 1, + STATE(1141), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214300] = 5, - ACTIONS(4145), 1, + [214414] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, - anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1165), 1, - sym_function_body, + STATE(9461), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214317] = 3, - ACTIONS(11251), 1, - anon_sym_DOLLAR, + ACTIONS(4319), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214429] = 5, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(9206), 1, + sym__block, + STATE(9304), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + [214446] = 5, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10927), 1, + anon_sym_EQ, + STATE(5082), 1, + sym_function_body, + STATE(5094), 1, + sym__block, 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, + [214463] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(11109), 1, + ACTIONS(11028), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(1115), 1, sym__block, - STATE(1135), 1, + STATE(1187), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214362] = 2, + [214480] = 4, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(9253), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4752), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214373] = 5, - ACTIONS(10691), 1, - anon_sym_LBRACE, - ACTIONS(11258), 1, - anon_sym_COLON, - ACTIONS(11260), 1, + ACTIONS(4726), 2, sym__automatic_semicolon, - STATE(9481), 1, - sym__block, + anon_sym_RBRACE, + [214495] = 3, + ACTIONS(11250), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214390] = 4, - ACTIONS(8521), 1, + ACTIONS(11248), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [214508] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9440), 1, + STATE(9308), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4557), 2, + ACTIONS(4655), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214405] = 2, + [214523] = 4, + ACTIONS(8506), 1, + anon_sym_LBRACE, + STATE(9249), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214416] = 5, - ACTIONS(11262), 1, + ACTIONS(3272), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(11264), 1, + [214538] = 4, + ACTIONS(11254), 1, + anon_sym_COMMA, + STATE(8709), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11252), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [214553] = 4, + ACTIONS(8506), 1, + anon_sym_LBRACE, + STATE(9309), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4377), 2, sym__automatic_semicolon, - STATE(257), 1, - sym__semi, - STATE(8687), 1, - aux_sym_statements_repeat1, + anon_sym_RBRACE, + [214568] = 5, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10927), 1, + anon_sym_EQ, + STATE(5094), 1, + sym__block, + STATE(5133), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214433] = 5, - ACTIONS(4145), 1, + [214585] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(5094), 1, sym__block, - STATE(1155), 1, + STATE(5133), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214450] = 5, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + [214602] = 5, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3270), 1, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5365), 1, sym_function_body, + STATE(5369), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214467] = 2, + [214619] = 4, + ACTIONS(8530), 1, + anon_sym_LBRACE, + STATE(9174), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4886), 4, + ACTIONS(4243), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [214478] = 5, - ACTIONS(4145), 1, + [214634] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(10952), 1, anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1135), 1, + STATE(3850), 1, sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214495] = 5, - ACTIONS(4145), 1, + [214651] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(5094), 1, sym__block, - STATE(1165), 1, + STATE(5099), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214512] = 5, - ACTIONS(4145), 1, + [214668] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(11018), 1, anon_sym_EQ, - STATE(1017), 1, + STATE(3159), 1, sym_function_body, - STATE(1129), 1, + STATE(3170), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214529] = 5, - ACTIONS(6430), 1, + [214685] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10996), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3216), 1, + STATE(4859), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214546] = 5, - ACTIONS(4145), 1, + [214702] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10903), 1, + ACTIONS(10901), 1, anon_sym_EQ, - STATE(1129), 1, + STATE(3170), 1, sym__block, - STATE(1155), 1, + STATE(3270), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214563] = 5, - ACTIONS(6430), 1, + [214719] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10996), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3138), 1, + STATE(4817), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214580] = 5, - ACTIONS(8104), 1, + [214736] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(10996), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(4835), 1, sym_function_body, - STATE(4800), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214597] = 4, - ACTIONS(8521), 1, + [214753] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(9418), 1, - sym_class_body, + ACTIONS(10937), 1, + anon_sym_EQ, + STATE(3889), 1, + sym_function_body, + STATE(3960), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214612] = 5, - ACTIONS(6714), 1, + [214770] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3844), 1, + STATE(3113), 1, sym_function_body, - STATE(3882), 1, + STATE(3170), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214629] = 4, - ACTIONS(8521), 1, + [214787] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(9453), 1, - sym_class_body, + ACTIONS(10996), 1, + anon_sym_EQ, + STATE(4869), 1, + sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214644] = 5, - ACTIONS(6430), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + [214804] = 5, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(3082), 1, + ACTIONS(10695), 1, + anon_sym_LBRACE, + STATE(9206), 1, sym__block, - STATE(3179), 1, + STATE(9211), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214661] = 2, + [214821] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4587), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, + ACTIONS(5103), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_while, - [214672] = 5, - ACTIONS(6430), 1, + [214832] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(3143), 1, + sym_function_body, + STATE(3170), 1, sym__block, - STATE(3138), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214849] = 5, + ACTIONS(6444), 1, + anon_sym_LBRACE, + ACTIONS(8202), 1, + anon_sym_EQ, + STATE(3159), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214689] = 4, - ACTIONS(8521), 1, + [214866] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9248), 1, + STATE(9427), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 2, + ACTIONS(3296), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214704] = 5, - ACTIONS(6430), 1, + [214881] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(10901), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3179), 1, + STATE(3159), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214721] = 5, - ACTIONS(6430), 1, + [214898] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(8202), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(3170), 1, sym__block, - STATE(3216), 1, + STATE(3270), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214738] = 4, - ACTIONS(8511), 1, + [214915] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9248), 1, - sym_enum_class_body, + STATE(9309), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4218), 2, + ACTIONS(4377), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214753] = 2, + [214930] = 4, + ACTIONS(8506), 1, + anon_sym_LBRACE, + STATE(9327), 1, + sym_enum_class_body, 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, + ACTIONS(4409), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214945] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(8187), 1, + ACTIONS(10901), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3270), 1, + STATE(3113), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214781] = 5, - ACTIONS(4351), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - ACTIONS(11266), 1, - anon_sym_COLON, - STATE(9664), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [214798] = 5, - ACTIONS(6714), 1, + [214962] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(3844), 1, - sym_function_body, - STATE(3882), 1, + STATE(3403), 1, sym__block, + STATE(3422), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214815] = 5, - ACTIONS(8521), 1, + [214979] = 5, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, anon_sym_LBRACE, - ACTIONS(11268), 1, - anon_sym_COLON, - ACTIONS(11270), 1, - sym__automatic_semicolon, - STATE(9895), 1, - sym_class_body, + STATE(5369), 1, + sym__block, + STATE(5373), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214832] = 5, - ACTIONS(6714), 1, + [214996] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3403), 1, sym__block, - STATE(3938), 1, + STATE(3422), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214849] = 5, - ACTIONS(6714), 1, + [215013] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3403), 1, sym__block, - STATE(3959), 1, + STATE(3499), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, + [215030] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3403), 1, sym__block, - STATE(4030), 1, + STATE(3534), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4565), 4, - anon_sym_COLON, + [215047] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214924] = 5, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(11137), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(3403), 1, sym__block, - STATE(5193), 1, + STATE(3585), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(11276), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [214956] = 4, - ACTIONS(8511), 1, + [215064] = 5, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(9159), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4569), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214971] = 2, + STATE(9206), 1, + sym__block, + STATE(9330), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4848), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [214982] = 4, - ACTIONS(8521), 1, + [215081] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - STATE(9404), 1, - sym_class_body, + STATE(9335), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4549), 2, + ACTIONS(4531), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214997] = 5, - ACTIONS(6511), 1, + [215096] = 5, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, + ACTIONS(10927), 1, anon_sym_EQ, - STATE(3402), 1, + STATE(5094), 1, sym__block, - STATE(3471), 1, + STATE(5099), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215014] = 5, - ACTIONS(6511), 1, + [215113] = 5, + ACTIONS(10695), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, - anon_sym_EQ, - STATE(3402), 1, + ACTIONS(11257), 1, + anon_sym_COLON, + ACTIONS(11259), 1, + sym__automatic_semicolon, + STATE(9804), 1, sym__block, - STATE(3481), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215031] = 5, - ACTIONS(6511), 1, - anon_sym_LBRACE, - ACTIONS(10989), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3488), 1, - sym_function_body, + [215130] = 4, + ACTIONS(11261), 1, + anon_sym_import, + ACTIONS(11264), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215048] = 5, - ACTIONS(8223), 1, + STATE(8745), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [215145] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5238), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215065] = 4, - ACTIONS(11281), 1, - anon_sym_LPAREN, - STATE(9132), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7089), 2, - anon_sym_AT, - anon_sym_val, - [215080] = 5, - ACTIONS(10689), 1, + ACTIONS(10937), 1, anon_sym_EQ, - ACTIONS(10691), 1, - anon_sym_LBRACE, - STATE(9098), 1, + STATE(3850), 1, sym_function_body, - STATE(9175), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215097] = 5, - ACTIONS(8223), 1, - anon_sym_LBRACE, - ACTIONS(11003), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5230), 1, - sym_function_body, + [215162] = 3, + ACTIONS(10711), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215114] = 5, - ACTIONS(6511), 1, + ACTIONS(4224), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym__quest, + [215175] = 5, + ACTIONS(4423), 1, + anon_sym_while, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(10989), 1, - anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3505), 1, - sym_function_body, + ACTIONS(11266), 1, + anon_sym_COLON, + STATE(9640), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215131] = 4, - ACTIONS(8511), 1, - anon_sym_LBRACE, - STATE(9154), 1, - sym_enum_class_body, + [215192] = 3, + ACTIONS(11270), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4483), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215146] = 4, - ACTIONS(8511), 1, + ACTIONS(11268), 3, + sym__string_end, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + [215205] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9147), 1, - sym_enum_class_body, + STATE(9251), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 2, + ACTIONS(4381), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215161] = 4, - ACTIONS(8521), 1, + [215220] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(9149), 1, + STATE(9335), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 2, + ACTIONS(4531), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215176] = 4, - ACTIONS(8521), 1, + [215235] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - STATE(9119), 1, - sym_class_body, + STATE(9347), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 2, + ACTIONS(4509), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215191] = 4, - ACTIONS(11283), 1, - anon_sym_import, - ACTIONS(11285), 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, - [215206] = 5, - ACTIONS(8104), 1, + [215250] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(10905), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(3403), 1, sym__block, - STATE(4810), 1, + STATE(3585), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215223] = 5, - ACTIONS(8223), 1, + [215267] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10984), 1, anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5202), 1, + STATE(4835), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215240] = 5, - ACTIONS(8104), 1, + [215284] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(11022), 1, anon_sym_EQ, - STATE(4727), 1, - sym_function_body, - STATE(4800), 1, + STATE(3170), 1, sym__block, + STATE(3270), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215257] = 5, - ACTIONS(8104), 1, + [215301] = 5, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(10937), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(3943), 1, sym_function_body, - STATE(4800), 1, + STATE(3960), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215274] = 5, - ACTIONS(8104), 1, + [215318] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(10905), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(3403), 1, sym__block, - STATE(4887), 1, + STATE(3534), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215291] = 5, - ACTIONS(8104), 1, + [215335] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, + ACTIONS(11022), 1, anon_sym_EQ, - STATE(4800), 1, - sym__block, - STATE(4887), 1, + STATE(3159), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215308] = 5, - ACTIONS(4499), 1, - anon_sym_while, - ACTIONS(8638), 1, + [215352] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(11287), 1, - anon_sym_COLON, - STATE(9864), 1, - sym_class_body, + ACTIONS(11022), 1, + anon_sym_EQ, + STATE(3143), 1, + sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215325] = 5, - ACTIONS(8104), 1, + [215369] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(11022), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(3113), 1, sym_function_body, - STATE(4800), 1, + STATE(3170), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215342] = 5, - ACTIONS(8104), 1, + [215386] = 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, + [215397] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10975), 1, + ACTIONS(10905), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(3403), 1, sym__block, - STATE(4810), 1, + STATE(3499), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215359] = 3, - ACTIONS(4004), 1, - anon_sym_DOLLAR, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4009), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [215372] = 5, - ACTIONS(8223), 1, + [215414] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(3403), 1, sym__block, - STATE(5202), 1, + STATE(3499), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215389] = 4, - ACTIONS(8521), 1, - anon_sym_LBRACE, - STATE(9443), 1, - sym_class_body, + [215431] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215404] = 5, - ACTIONS(8223), 1, + ACTIONS(4521), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10689), 1, + anon_sym_where, + anon_sym_while, + [215442] = 5, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(10693), 1, anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5230), 1, + STATE(5082), 1, sym_function_body, + STATE(5094), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215421] = 5, - ACTIONS(8223), 1, + [215459] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(10984), 1, anon_sym_EQ, - STATE(5091), 1, - sym__block, - STATE(5238), 1, + STATE(4817), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215438] = 4, - ACTIONS(8521), 1, - anon_sym_LBRACE, - STATE(9274), 1, - sym_class_body, + [215476] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215453] = 4, - ACTIONS(8511), 1, + ACTIONS(4464), 4, anon_sym_LBRACE, - STATE(9453), 1, - sym_enum_class_body, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [215487] = 5, + ACTIONS(6520), 1, + anon_sym_LBRACE, + ACTIONS(10933), 1, + anon_sym_EQ, + STATE(3403), 1, + sym__block, + STATE(3534), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215468] = 5, - ACTIONS(6511), 1, + [215504] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, + ACTIONS(10917), 1, anon_sym_EQ, - STATE(3402), 1, + STATE(1115), 1, sym__block, - STATE(3505), 1, + STATE(1141), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215485] = 5, - ACTIONS(8223), 1, + [215521] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10689), 1, + ACTIONS(10917), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(1115), 1, sym__block, - STATE(5193), 1, + STATE(1187), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215502] = 5, - ACTIONS(8521), 1, + [215538] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(11289), 1, - anon_sym_COLON, - ACTIONS(11291), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + STATE(4835), 1, + sym_function_body, + STATE(4879), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215555] = 5, + ACTIONS(1642), 1, + anon_sym_RBRACE, + ACTIONS(11272), 1, sym__automatic_semicolon, - STATE(9984), 1, - sym_class_body, + STATE(258), 1, + sym__semi, + STATE(8680), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215519] = 5, - ACTIONS(6511), 1, + [215572] = 5, + ACTIONS(6444), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, + ACTIONS(10901), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3488), 1, + STATE(3143), 1, sym_function_body, + STATE(3170), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215536] = 5, - ACTIONS(6714), 1, + [215589] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, + ACTIONS(10730), 1, anon_sym_EQ, - STATE(3882), 1, - sym__block, - STATE(3959), 1, + STATE(4859), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215553] = 5, - ACTIONS(6511), 1, + [215606] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(3402), 1, + STATE(3403), 1, sym__block, - STATE(3481), 1, + STATE(3585), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215570] = 5, - ACTIONS(6511), 1, + [215623] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - ACTIONS(10953), 1, + ACTIONS(10730), 1, anon_sym_EQ, - STATE(3402), 1, - sym__block, - STATE(3471), 1, + STATE(4869), 1, sym_function_body, + STATE(4879), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215587] = 4, - ACTIONS(11293), 1, - anon_sym_COMMA, - STATE(8735), 1, - aux_sym__enum_entries_repeat1, + [215640] = 5, + ACTIONS(8202), 1, + anon_sym_EQ, + ACTIONS(8204), 1, + anon_sym_LBRACE, + STATE(5369), 1, + sym__block, + STATE(5402), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8966), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [215602] = 4, - ACTIONS(8511), 1, + [215657] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - STATE(9149), 1, - sym_enum_class_body, + ACTIONS(11038), 1, + anon_sym_EQ, + STATE(1115), 1, + sym__block, + STATE(1187), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215617] = 5, - ACTIONS(10689), 1, - anon_sym_EQ, - ACTIONS(10691), 1, + [215674] = 5, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(9146), 1, + ACTIONS(10730), 1, + anon_sym_EQ, + STATE(4817), 1, sym_function_body, - STATE(9175), 1, + STATE(4879), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215634] = 4, - ACTIONS(8511), 1, - anon_sym_LBRACE, - STATE(9144), 1, - sym_enum_class_body, + [215691] = 4, + ACTIONS(11276), 1, + anon_sym_COMMA, + STATE(8657), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__automatic_semicolon, + ACTIONS(11274), 2, anon_sym_RBRACE, - [215649] = 5, - ACTIONS(6430), 1, + anon_sym_SEMI, + [215706] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10937), 1, + ACTIONS(11038), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(1115), 1, sym__block, - STATE(3270), 1, + STATE(1141), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215666] = 3, - ACTIONS(4179), 1, - anon_sym_DOLLAR, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4181), 3, - sym__string_end, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - [215679] = 5, - ACTIONS(6430), 1, + [215723] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10937), 1, + ACTIONS(11038), 1, anon_sym_EQ, - STATE(3082), 1, + STATE(1115), 1, sym__block, - STATE(3216), 1, + STATE(1136), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215696] = 5, - ACTIONS(6430), 1, + [215740] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10937), 1, + ACTIONS(11038), 1, anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3179), 1, + STATE(1098), 1, sym_function_body, + STATE(1115), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215713] = 4, - ACTIONS(8521), 1, + [215757] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - STATE(9147), 1, - sym_class_body, + STATE(9174), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 2, + ACTIONS(4243), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215728] = 5, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + [215772] = 5, + ACTIONS(6520), 1, anon_sym_LBRACE, - STATE(5341), 1, - sym_function_body, - STATE(5420), 1, + ACTIONS(10905), 1, + anon_sym_EQ, + STATE(3403), 1, sym__block, + STATE(3422), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215745] = 5, - ACTIONS(6430), 1, + [215789] = 4, + ACTIONS(8506), 1, anon_sym_LBRACE, - ACTIONS(10937), 1, - anon_sym_EQ, - STATE(3082), 1, - sym__block, - STATE(3138), 1, - sym_function_body, + STATE(9384), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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(4637), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215804] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215779] = 5, - ACTIONS(4145), 1, + ACTIONS(4667), 4, anon_sym_LBRACE, - ACTIONS(10915), 1, - anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1155), 1, - sym_function_body, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [215815] = 5, + ACTIONS(4435), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + ACTIONS(11278), 1, + anon_sym_COLON, + STATE(9908), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215796] = 5, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, + [215832] = 4, + ACTIONS(8530), 1, anon_sym_LBRACE, - STATE(5414), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + STATE(9365), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215813] = 5, - ACTIONS(6714), 1, + ACTIONS(3280), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215847] = 5, + ACTIONS(8530), 1, anon_sym_LBRACE, - ACTIONS(10907), 1, - anon_sym_EQ, - STATE(3844), 1, - sym_function_body, - STATE(3882), 1, - sym__block, + ACTIONS(11280), 1, + anon_sym_COLON, + ACTIONS(11282), 1, + sym__automatic_semicolon, + STATE(9805), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215830] = 5, - ACTIONS(4145), 1, + [215864] = 5, + ACTIONS(4137), 1, anon_sym_LBRACE, - ACTIONS(10915), 1, + ACTIONS(10917), 1, anon_sym_EQ, - STATE(1017), 1, + STATE(1098), 1, sym_function_body, - STATE(1129), 1, + STATE(1115), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215847] = 5, - ACTIONS(4145), 1, - anon_sym_LBRACE, - ACTIONS(10915), 1, - anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1165), 1, - sym_function_body, + [215881] = 4, + ACTIONS(9366), 1, + anon_sym_RPAREN, + ACTIONS(11284), 1, + anon_sym_COMMA, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215864] = 5, - ACTIONS(8187), 1, - anon_sym_EQ, - ACTIONS(8189), 1, - anon_sym_LBRACE, - STATE(5418), 1, - sym_function_body, - STATE(5420), 1, - sym__block, + [215895] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11288), 1, + anon_sym_RPAREN, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, + [215909] = 4, + ACTIONS(11290), 1, + anon_sym_COMMA, + ACTIONS(11292), 1, + anon_sym_RPAREN, + STATE(8906), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215898] = 5, - ACTIONS(4145), 1, - anon_sym_LBRACE, - ACTIONS(10915), 1, + [215923] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11294), 1, anon_sym_EQ, - STATE(1129), 1, - sym__block, - STATE(1135), 1, - sym_function_body, + STATE(9528), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215915] = 4, - ACTIONS(4465), 1, - anon_sym_while, - ACTIONS(8648), 1, - anon_sym_LBRACE, - STATE(9515), 1, - sym_enum_class_body, + [215937] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215929] = 4, - ACTIONS(11295), 1, + ACTIONS(4395), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [215947] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11297), 1, - anon_sym_GT, - STATE(8855), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11296), 1, + anon_sym_RPAREN, + STATE(8900), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215943] = 4, - ACTIONS(11299), 1, - anon_sym_LBRACE, - ACTIONS(11301), 1, - anon_sym_LPAREN, - STATE(9848), 1, - sym_when_subject, + [215961] = 4, + ACTIONS(8854), 1, + anon_sym_RPAREN, + ACTIONS(11298), 1, + anon_sym_COMMA, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215957] = 3, - STATE(3166), 1, - sym__lexical_identifier, + [215975] = 4, + ACTIONS(11300), 1, + anon_sym_COMMA, + ACTIONS(11302), 1, + anon_sym_DASH_GT, + STATE(9016), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [215969] = 3, - STATE(5072), 1, - sym__lexical_identifier, + [215989] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11306), 1, + anon_sym_GT, + STATE(8892), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [215981] = 3, - STATE(5251), 1, - sym__lexical_identifier, + [216003] = 4, + ACTIONS(11308), 1, + anon_sym_COMMA, + ACTIONS(11310), 1, + anon_sym_RPAREN, + STATE(8888), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [215993] = 4, - ACTIONS(11303), 1, + [216017] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11305), 1, + ACTIONS(11314), 1, anon_sym_GT, - STATE(8844), 1, + STATE(8904), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216007] = 3, - STATE(5189), 1, - sym__lexical_identifier, + [216031] = 3, + ACTIONS(11316), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216019] = 3, - STATE(5187), 1, - sym__lexical_identifier, + ACTIONS(11318), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [216043] = 4, + ACTIONS(11320), 1, + anon_sym_COMMA, + ACTIONS(11322), 1, + anon_sym_RPAREN, + STATE(9093), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + [216057] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11324), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216045] = 4, - ACTIONS(11307), 1, - anon_sym_COMMA, - ACTIONS(11309), 1, - anon_sym_RPAREN, - STATE(8850), 1, - aux_sym_function_value_parameters_repeat1, + [216071] = 3, + ACTIONS(11326), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216059] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11313), 1, - anon_sym_RPAREN, - STATE(8839), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(4224), 2, + sym__quest, + anon_sym_in, + [216083] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216073] = 4, - ACTIONS(10691), 1, - anon_sym_LBRACE, - ACTIONS(11315), 1, - sym__automatic_semicolon, - STATE(9834), 1, - sym__block, + ACTIONS(4734), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_in, + [216093] = 4, + ACTIONS(8844), 1, + anon_sym_RPAREN, + ACTIONS(11328), 1, + anon_sym_COMMA, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216087] = 4, - ACTIONS(5598), 1, - anon_sym_LBRACE, - ACTIONS(9931), 1, - anon_sym_COLON, - STATE(4880), 1, - sym_class_body, + [216107] = 4, + ACTIONS(11330), 1, + anon_sym_COMMA, + ACTIONS(11333), 1, + anon_sym_RPAREN, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216101] = 4, + [216121] = 4, ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11317), 1, + ACTIONS(11335), 1, anon_sym_EQ, - STATE(9767), 1, + STATE(9547), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216115] = 4, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(11319), 1, - sym__automatic_semicolon, - STATE(9873), 1, - sym_class_body, + [216135] = 4, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11339), 1, + anon_sym_RPAREN, + STATE(8916), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216129] = 3, - STATE(2850), 1, - sym__lexical_identifier, + [216149] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11343), 1, + anon_sym_RPAREN, + STATE(9018), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11321), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216141] = 4, - ACTIONS(11323), 1, + [216163] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11326), 1, + ACTIONS(11345), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216177] = 4, + ACTIONS(5586), 1, anon_sym_RPAREN, - STATE(8812), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11347), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216191] = 4, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11349), 1, + anon_sym_GT, + STATE(8864), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216155] = 4, + [216205] = 4, ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11328), 1, + ACTIONS(11351), 1, anon_sym_RBRACK, - STATE(8926), 1, + STATE(8930), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216169] = 3, - STATE(4878), 1, - sym__lexical_identifier, + [216219] = 3, + ACTIONS(11353), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216181] = 3, - STATE(4876), 1, - sym__lexical_identifier, + ACTIONS(4281), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216231] = 4, + ACTIONS(9358), 1, + anon_sym_RPAREN, + ACTIONS(11355), 1, + anon_sym_COMMA, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216193] = 3, - STATE(4875), 1, - sym__lexical_identifier, + [216245] = 3, + ACTIONS(11357), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216205] = 4, - ACTIONS(5788), 1, - anon_sym_LBRACE, - ACTIONS(9939), 1, + ACTIONS(4295), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216257] = 3, + ACTIONS(11359), 1, anon_sym_COLON, - STATE(5103), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216219] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11330), 1, - anon_sym_EQ, - STATE(9866), 1, - sym_type_parameters, + ACTIONS(11361), 2, + anon_sym_COMMA, + anon_sym_GT, + [216269] = 4, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11363), 1, + anon_sym_GT, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216233] = 3, - STATE(4877), 1, - sym__lexical_identifier, + [216283] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11365), 1, + anon_sym_RPAREN, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216245] = 4, - ACTIONS(11332), 1, + [216297] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - ACTIONS(11334), 1, - anon_sym_DASH_GT, - STATE(8858), 1, - aux_sym_lambda_parameters_repeat1, + ACTIONS(11367), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216259] = 4, - ACTIONS(7591), 1, + [216311] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11369), 1, + anon_sym_GT, + STATE(9057), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216273] = 4, - ACTIONS(11311), 1, + [216325] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11338), 1, + ACTIONS(11371), 1, anon_sym_RPAREN, - STATE(8837), 1, + STATE(8809), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216287] = 3, - STATE(9070), 1, - sym_constructor_delegation_call, + [216339] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11373), 1, + anon_sym_RPAREN, + STATE(8846), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11340), 2, - anon_sym_this, - anon_sym_super, - [216299] = 2, + [216353] = 4, + ACTIONS(11375), 1, + anon_sym_COMMA, + ACTIONS(11378), 1, + anon_sym_GT, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10815), 3, - anon_sym_RBRACE, + [216367] = 3, + STATE(3206), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [216379] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - 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(11380), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216323] = 4, - ACTIONS(11344), 1, + [216393] = 4, + ACTIONS(11382), 1, anon_sym_COMMA, - ACTIONS(11346), 1, + ACTIONS(11384), 1, anon_sym_RPAREN, - STATE(8854), 1, + STATE(8808), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216407] = 4, + ACTIONS(11386), 1, + anon_sym_COMMA, + ACTIONS(11388), 1, + anon_sym_DASH_GT, + STATE(9098), 1, + aux_sym_lambda_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216421] = 4, + ACTIONS(11390), 1, + anon_sym_COMMA, + ACTIONS(11392), 1, + anon_sym_RPAREN, + STATE(8943), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216337] = 4, - ACTIONS(11295), 1, + [216435] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11348), 1, + ACTIONS(11394), 1, anon_sym_GT, - STATE(8856), 1, + STATE(8813), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216351] = 4, - ACTIONS(11303), 1, + [216449] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11350), 1, + ACTIONS(11396), 1, anon_sym_GT, - STATE(8841), 1, - aux_sym_type_parameters_repeat1, + STATE(8847), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216365] = 4, - ACTIONS(11352), 1, + [216463] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11354), 1, - anon_sym_RPAREN, - STATE(8846), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11398), 1, + anon_sym_GT, + STATE(8947), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216379] = 4, - ACTIONS(11356), 1, + [216477] = 4, + ACTIONS(11400), 1, anon_sym_COMMA, - ACTIONS(11358), 1, + ACTIONS(11402), 1, anon_sym_RPAREN, - STATE(8852), 1, + STATE(8814), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216393] = 3, - ACTIONS(11360), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4894), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216405] = 3, - ACTIONS(11362), 1, - anon_sym_LPAREN, + [216491] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11404), 1, + anon_sym_RPAREN, + STATE(8969), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216417] = 4, + [216505] = 4, ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11364), 1, + ACTIONS(11406), 1, anon_sym_EQ, - STATE(9754), 1, + STATE(9709), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216431] = 4, - ACTIONS(11366), 1, - anon_sym_COMMA, - ACTIONS(11368), 1, - anon_sym_RPAREN, - STATE(8879), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216445] = 4, - ACTIONS(11370), 1, + [216519] = 4, + ACTIONS(11408), 1, anon_sym_COMMA, - ACTIONS(11372), 1, + ACTIONS(11410), 1, anon_sym_RPAREN, - STATE(8870), 1, - aux_sym__class_parameters_repeat1, + STATE(8792), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216459] = 4, + [216533] = 4, ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11374), 1, + ACTIONS(11412), 1, anon_sym_EQ, - STATE(9808), 1, + STATE(9795), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216473] = 4, - ACTIONS(11311), 1, + [216547] = 4, + ACTIONS(11414), 1, anon_sym_COMMA, - ACTIONS(11376), 1, + ACTIONS(11416), 1, anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8866), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216487] = 4, - ACTIONS(11378), 1, + [216561] = 4, + ACTIONS(11418), 1, + anon_sym_DOT, + ACTIONS(11420), 1, + sym__automatic_semicolon, + STATE(8935), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216575] = 4, + ACTIONS(11422), 1, + anon_sym_LBRACE, + ACTIONS(11424), 1, + anon_sym_LPAREN, + STATE(9499), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216589] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11380), 1, + ACTIONS(11426), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216603] = 4, + ACTIONS(5510), 1, anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11428), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216501] = 4, - ACTIONS(11311), 1, + [216617] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11382), 1, + ACTIONS(11430), 1, anon_sym_RPAREN, - STATE(8985), 1, + STATE(8809), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216515] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11384), 1, - anon_sym_EQ, - STATE(9791), 1, - sym_type_parameters, + [216631] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11432), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216529] = 4, - ACTIONS(11303), 1, + [216645] = 4, + ACTIONS(5606), 1, + anon_sym_RPAREN, + ACTIONS(11434), 1, anon_sym_COMMA, - ACTIONS(11386), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216543] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11388), 1, + [216659] = 4, + ACTIONS(8915), 1, anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11436), 1, + anon_sym_COMMA, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216557] = 4, - ACTIONS(7591), 1, - anon_sym_COMMA, - ACTIONS(11390), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + [216673] = 4, + ACTIONS(4319), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(9915), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216571] = 4, - ACTIONS(11303), 1, + [216687] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - ACTIONS(11392), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11438), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216585] = 3, - ACTIONS(11394), 1, - anon_sym_EQ, + [216701] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11440), 1, + anon_sym_GT, + STATE(8867), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11396), 2, + [216715] = 4, + ACTIONS(11442), 1, anon_sym_COMMA, + ACTIONS(11444), 1, anon_sym_RPAREN, - [216597] = 4, - ACTIONS(9360), 1, - anon_sym_RPAREN, - ACTIONS(11398), 1, - anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8961), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216611] = 4, - ACTIONS(11400), 1, + [216729] = 4, + ACTIONS(3296), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(9961), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216743] = 4, + ACTIONS(11446), 1, anon_sym_COMMA, - ACTIONS(11403), 1, + ACTIONS(11448), 1, anon_sym_RPAREN, - STATE(8847), 1, + STATE(8893), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216625] = 4, - ACTIONS(3262), 1, + [216757] = 4, + ACTIONS(11424), 1, + anon_sym_LPAREN, + ACTIONS(11450), 1, anon_sym_LBRACE, - ACTIONS(9935), 1, - anon_sym_COLON, - STATE(3071), 1, - sym_class_body, + STATE(9815), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216639] = 4, - ACTIONS(7591), 1, + [216771] = 4, + ACTIONS(11452), 1, anon_sym_COMMA, - ACTIONS(11405), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11454), 1, + anon_sym_RPAREN, + STATE(8818), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216653] = 4, - ACTIONS(9374), 1, - anon_sym_RPAREN, - ACTIONS(11407), 1, - anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + [216785] = 4, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(11456), 1, + sym__automatic_semicolon, + STATE(9633), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216667] = 4, + [216799] = 4, ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11409), 1, + ACTIONS(11458), 1, anon_sym_EQ, - STATE(9760), 1, + STATE(9512), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216681] = 4, - ACTIONS(5528), 1, + [216813] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11460), 1, anon_sym_RPAREN, - ACTIONS(11411), 1, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [216827] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11462), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216695] = 4, - ACTIONS(7591), 1, + [216841] = 4, + ACTIONS(11464), 1, anon_sym_COMMA, - ACTIONS(11413), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11466), 1, + anon_sym_RPAREN, + STATE(9097), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216709] = 4, - ACTIONS(5548), 1, + [216855] = 4, + ACTIONS(9394), 1, anon_sym_RPAREN, - ACTIONS(11415), 1, + ACTIONS(11468), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216723] = 4, - ACTIONS(11295), 1, + [216869] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11417), 1, + ACTIONS(11470), 1, anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216737] = 4, - ACTIONS(11295), 1, + [216883] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11419), 1, + ACTIONS(11472), 1, anon_sym_GT, - STATE(8882), 1, + STATE(8861), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216751] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11421), 1, + [216897] = 4, + ACTIONS(5600), 1, anon_sym_RPAREN, - STATE(8953), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216765] = 4, - ACTIONS(11332), 1, + ACTIONS(11474), 1, anon_sym_COMMA, - ACTIONS(11423), 1, - anon_sym_DASH_GT, - STATE(8959), 1, - aux_sym_lambda_parameters_repeat1, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216779] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11425), 1, - anon_sym_EQ, - STATE(9750), 1, - sym_type_parameters, + [216911] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11476), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216793] = 4, - ACTIONS(11303), 1, + [216925] = 4, + ACTIONS(9370), 1, + anon_sym_RPAREN, + ACTIONS(11478), 1, anon_sym_COMMA, - ACTIONS(11427), 1, - anon_sym_GT, - STATE(8976), 1, - aux_sym_type_parameters_repeat1, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216807] = 3, - STATE(3123), 1, - sym__lexical_identifier, + [216939] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11480), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216819] = 3, - STATE(3120), 1, + [216953] = 3, + STATE(3831), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [216831] = 3, - ACTIONS(11429), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11431), 2, + [216965] = 4, + ACTIONS(5552), 1, + anon_sym_RPAREN, + ACTIONS(11482), 1, anon_sym_COMMA, - anon_sym_GT, - [216843] = 3, - STATE(3062), 1, - sym__lexical_identifier, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216855] = 3, - STATE(3063), 1, - sym__lexical_identifier, + [216979] = 4, + ACTIONS(5520), 1, + anon_sym_RPAREN, + ACTIONS(11484), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216867] = 4, - ACTIONS(11301), 1, + [216993] = 4, + ACTIONS(11424), 1, anon_sym_LPAREN, - ACTIONS(11433), 1, + ACTIONS(11486), 1, anon_sym_LBRACE, - STATE(9744), 1, + STATE(9989), 1, sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216881] = 3, - ACTIONS(11435), 1, - anon_sym_LPAREN, + [217007] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11488), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4287), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [216893] = 3, - ACTIONS(11437), 1, - anon_sym_LPAREN, + [217021] = 4, + ACTIONS(11490), 1, + anon_sym_COMMA, + ACTIONS(11493), 1, + anon_sym_RPAREN, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4265), 2, - sym__automatic_semicolon, + [217035] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11495), 3, anon_sym_RBRACE, - [216905] = 4, - ACTIONS(11378), 1, anon_sym_COMMA, - ACTIONS(11439), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + anon_sym_SEMI, + [217045] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11497), 1, + anon_sym_GT, + STATE(8920), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216919] = 4, - ACTIONS(8849), 1, - anon_sym_RPAREN, - ACTIONS(11441), 1, + [217059] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11499), 1, + anon_sym_GT, + STATE(8821), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216933] = 4, + [217073] = 4, ACTIONS(9186), 1, anon_sym_LT, - ACTIONS(11443), 1, + ACTIONS(11501), 1, anon_sym_EQ, - STATE(9721), 1, + STATE(9865), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216947] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11445), 1, - anon_sym_EQ, - STATE(9698), 1, - sym_type_parameters, + [217087] = 2, 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(11503), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + [217097] = 4, + ACTIONS(11505), 1, + anon_sym_COMMA, + ACTIONS(11507), 1, + anon_sym_RPAREN, + STATE(8872), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216975] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11449), 1, + [217111] = 3, + ACTIONS(11509), 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(7774), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217123] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11511), 1, + anon_sym_RPAREN, + STATE(9005), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217003] = 4, - ACTIONS(11301), 1, + [217137] = 3, + ACTIONS(11513), 1, anon_sym_LPAREN, - ACTIONS(11453), 1, - anon_sym_LBRACE, - STATE(9671), 1, - sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217017] = 4, - ACTIONS(4569), 1, - anon_sym_while, - ACTIONS(8648), 1, - anon_sym_LBRACE, - STATE(9658), 1, - sym_enum_class_body, + ACTIONS(5073), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217149] = 4, + ACTIONS(11286), 1, + anon_sym_COMMA, + ACTIONS(11515), 1, + anon_sym_RPAREN, + STATE(8793), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217031] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11455), 1, - anon_sym_EQ, - STATE(9651), 1, - sym_type_parameters, + [217163] = 3, + STATE(3834), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217045] = 4, - ACTIONS(8838), 1, - anon_sym_RPAREN, - ACTIONS(11457), 1, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217175] = 4, + ACTIONS(11517), 1, anon_sym_COMMA, - STATE(8847), 1, + ACTIONS(11519), 1, + anon_sym_RPAREN, + STATE(8798), 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, + [217189] = 4, + ACTIONS(5516), 1, + anon_sym_RPAREN, + ACTIONS(11521), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217073] = 4, - ACTIONS(11459), 1, + [217203] = 4, + ACTIONS(11523), 1, anon_sym_COMMA, - ACTIONS(11461), 1, + ACTIONS(11525), 1, anon_sym_RPAREN, - STATE(9021), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8960), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217087] = 4, - ACTIONS(11463), 1, + [217217] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11466), 1, + ACTIONS(11527), 1, anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217101] = 3, - ACTIONS(11468), 1, - anon_sym_EQ, + STATE(8954), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11470), 2, + [217231] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, + ACTIONS(11529), 1, anon_sym_RPAREN, - [217113] = 4, - ACTIONS(4654), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9633), 1, - sym_class_body, + STATE(8825), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217127] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11472), 1, - anon_sym_EQ, - STATE(9642), 1, - sym_type_parameters, + [217245] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11531), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217141] = 3, - STATE(1145), 1, - sym__lexical_identifier, + [217259] = 4, + ACTIONS(8917), 1, + anon_sym_RPAREN, + ACTIONS(11533), 1, + anon_sym_COMMA, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217153] = 4, - ACTIONS(4654), 1, - anon_sym_while, - ACTIONS(8648), 1, - anon_sym_LBRACE, - STATE(9633), 1, - sym_enum_class_body, + [217273] = 4, + ACTIONS(11535), 1, + anon_sym_COMMA, + ACTIONS(11537), 1, + anon_sym_RPAREN, + STATE(8848), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217167] = 3, - STATE(1072), 1, - sym__lexical_identifier, + [217287] = 3, + ACTIONS(11539), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217179] = 3, - STATE(1071), 1, - sym__lexical_identifier, + ACTIONS(5049), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217299] = 4, + ACTIONS(11541), 1, + anon_sym_COMMA, + ACTIONS(11543), 1, + anon_sym_RPAREN, + STATE(8957), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217191] = 3, - STATE(3904), 1, - sym__lexical_identifier, + [217313] = 4, + ACTIONS(11545), 1, + anon_sym_COMMA, + ACTIONS(11547), 1, + anon_sym_RPAREN, + STATE(8973), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(553), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217203] = 3, - STATE(3259), 1, + [217327] = 3, + STATE(5196), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, + ACTIONS(111), 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, - [217229] = 4, - ACTIONS(4469), 1, - anon_sym_while, - ACTIONS(8648), 1, - anon_sym_LBRACE, - STATE(9627), 1, - sym_enum_class_body, + [217339] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11549), 1, + anon_sym_EQ, + STATE(9800), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217243] = 4, - ACTIONS(11476), 1, + [217353] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11479), 1, + ACTIONS(11551), 1, anon_sym_RPAREN, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217257] = 4, - ACTIONS(4361), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9617), 1, - sym_class_body, + [217367] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11553), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217271] = 3, - STATE(1070), 1, - sym__lexical_identifier, + [217381] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11555), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217283] = 4, - ACTIONS(4361), 1, - anon_sym_while, - ACTIONS(8648), 1, - anon_sym_LBRACE, - STATE(9617), 1, - sym_enum_class_body, + [217395] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11557), 1, + anon_sym_GT, + STATE(8975), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217297] = 3, - STATE(1069), 1, - sym__lexical_identifier, + [217409] = 4, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11559), 1, + anon_sym_GT, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217309] = 4, - ACTIONS(4646), 1, - anon_sym_while, - ACTIONS(8638), 1, + [217423] = 4, + ACTIONS(5804), 1, anon_sym_LBRACE, - STATE(9614), 1, + ACTIONS(9934), 1, + anon_sym_COLON, + STATE(5200), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217323] = 4, - ACTIONS(11481), 1, + [217437] = 4, + ACTIONS(8861), 1, + anon_sym_RPAREN, + ACTIONS(11561), 1, anon_sym_COMMA, - ACTIONS(11483), 1, - anon_sym_DASH_GT, - STATE(9030), 1, - aux_sym_when_entry_repeat1, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217337] = 2, + [217451] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11563), 1, + anon_sym_GT, + STATE(8927), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [217347] = 4, - ACTIONS(11485), 1, + [217465] = 4, + ACTIONS(11565), 1, anon_sym_COMMA, - ACTIONS(11488), 1, + ACTIONS(11568), 1, anon_sym_DASH_GT, - STATE(8902), 1, + STATE(8908), 1, aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, - [217375] = 4, - ACTIONS(4465), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9515), 1, - sym_class_body, + [217479] = 4, + ACTIONS(11570), 1, + anon_sym_COMMA, + ACTIONS(11572), 1, + anon_sym_RPAREN, + STATE(9021), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217389] = 4, - ACTIONS(11490), 1, + [217493] = 4, + ACTIONS(11574), 1, anon_sym_COMMA, - ACTIONS(11492), 1, + ACTIONS(11576), 1, anon_sym_RPAREN, - STATE(9042), 1, + STATE(8863), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217403] = 4, - ACTIONS(11494), 1, + [217507] = 4, + ACTIONS(11578), 1, anon_sym_COMMA, - ACTIONS(11496), 1, + ACTIONS(11581), 1, anon_sym_RPAREN, - STATE(9036), 1, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217417] = 4, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9924), 1, - anon_sym_COLON, - STATE(1083), 1, - sym_class_body, + [217521] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11583), 1, + anon_sym_EQ, + STATE(9481), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217431] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11498), 1, - anon_sym_GT, - STATE(9041), 1, - aux_sym_type_arguments_repeat1, + [217535] = 4, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(11585), 1, + sym__automatic_semicolon, + STATE(9654), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217445] = 3, - STATE(1022), 1, - sym__lexical_identifier, + [217549] = 4, + ACTIONS(10695), 1, + anon_sym_LBRACE, + ACTIONS(11587), 1, + sym__automatic_semicolon, + STATE(9656), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(469), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217457] = 3, - STATE(5165), 1, - sym__lexical_identifier, + [217563] = 4, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(11589), 1, + sym__automatic_semicolon, + STATE(9661), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217469] = 3, - STATE(3996), 1, - sym__lexical_identifier, + [217577] = 4, + ACTIONS(9374), 1, + anon_sym_RPAREN, + ACTIONS(11591), 1, + anon_sym_COMMA, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(553), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217481] = 3, - STATE(3997), 1, - sym__lexical_identifier, + [217591] = 4, + ACTIONS(11593), 1, + anon_sym_COMMA, + ACTIONS(11596), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(553), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217493] = 3, - STATE(4032), 1, - sym__lexical_identifier, + [217605] = 4, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11598), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(553), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217505] = 3, - STATE(4025), 1, - sym__lexical_identifier, + [217619] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11600), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(553), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217517] = 3, - ACTIONS(11500), 1, - anon_sym_AMP, + [217633] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11602), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4239), 2, - sym__quest, - anon_sym_in, - [217529] = 4, - ACTIONS(5836), 1, + [217647] = 4, + ACTIONS(4623), 1, + anon_sym_while, + ACTIONS(8662), 1, anon_sym_LBRACE, - ACTIONS(9933), 1, - anon_sym_COLON, - STATE(3969), 1, + STATE(9980), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217543] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11502), 1, - anon_sym_EQ, - STATE(9516), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [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, - [217571] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11506), 1, - anon_sym_EQ, - STATE(9779), 1, - sym_type_parameters, + [217661] = 4, + ACTIONS(11604), 1, + anon_sym_COMMA, + ACTIONS(11606), 1, + anon_sym_RPAREN, + STATE(8868), 1, + aux_sym_function_value_parameters_repeat1, 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, + [217675] = 4, + ACTIONS(5526), 1, + anon_sym_RPAREN, + ACTIONS(11608), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217599] = 3, - ACTIONS(11508), 1, - anon_sym_AMP, + [217689] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11610), 1, + anon_sym_GT, + STATE(9094), 1, + aux_sym_type_arguments_repeat1, 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, + [217703] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11612), 1, + anon_sym_GT, + STATE(8919), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217625] = 4, - ACTIONS(11512), 1, + [217717] = 4, + ACTIONS(11614), 1, anon_sym_COMMA, - ACTIONS(11514), 1, + ACTIONS(11616), 1, anon_sym_RPAREN, - STATE(8982), 1, + STATE(8923), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217639] = 4, - ACTIONS(7591), 1, + [217731] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11516), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11618), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217653] = 4, - ACTIONS(4549), 1, - anon_sym_while, - ACTIONS(8638), 1, + [217745] = 4, + ACTIONS(5468), 1, anon_sym_LBRACE, - STATE(9586), 1, + ACTIONS(9928), 1, + anon_sym_COLON, + STATE(3601), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217667] = 4, - ACTIONS(7673), 1, + [217759] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11024), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [217769] = 4, + ACTIONS(7786), 1, anon_sym_RBRACK, - ACTIONS(11518), 1, + ACTIONS(11620), 1, anon_sym_COMMA, - STATE(8926), 1, + STATE(8930), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217681] = 4, - ACTIONS(11301), 1, - anon_sym_LPAREN, - ACTIONS(11521), 1, - anon_sym_LBRACE, - STATE(9551), 1, - sym_when_subject, + [217783] = 3, + STATE(8997), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217695] = 3, - ACTIONS(11523), 1, - anon_sym_EQ, + ACTIONS(11623), 2, + anon_sym_this, + anon_sym_super, + [217795] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11525), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [217707] = 4, - ACTIONS(11311), 1, + ACTIONS(11252), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11527), 1, - anon_sym_RPAREN, - STATE(8987), 1, - aux_sym_multi_variable_declaration_repeat1, + anon_sym_SEMI, + [217805] = 3, + STATE(3839), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217721] = 4, - ACTIONS(7591), 1, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217817] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11529), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11625), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217735] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11531), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + [217831] = 4, + ACTIONS(11627), 1, + anon_sym_DOT, + ACTIONS(11630), 1, + sym__automatic_semicolon, + STATE(8935), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217749] = 2, + [217845] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11533), 3, - anon_sym_EQ, + ACTIONS(11632), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [217855] = 4, + ACTIONS(11634), 1, anon_sym_COMMA, + ACTIONS(11636), 1, anon_sym_RPAREN, - [217759] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11535), 1, - anon_sym_GT, - STATE(8931), 1, - aux_sym_type_arguments_repeat1, + STATE(8849), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217773] = 4, - ACTIONS(11537), 1, - anon_sym_COMMA, - ACTIONS(11540), 1, + [217869] = 4, + ACTIONS(5532), 1, anon_sym_RPAREN, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11638), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217787] = 4, - ACTIONS(11542), 1, - anon_sym_COMMA, - ACTIONS(11544), 1, + [217883] = 4, + ACTIONS(8878), 1, anon_sym_RPAREN, - STATE(9023), 1, + ACTIONS(11640), 1, + anon_sym_COMMA, + STATE(8952), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217801] = 4, - ACTIONS(11295), 1, + [217897] = 3, + STATE(3844), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(553), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217909] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11546), 1, + ACTIONS(11642), 1, anon_sym_GT, - STATE(8882), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217815] = 4, - ACTIONS(8855), 1, - anon_sym_RPAREN, - ACTIONS(11548), 1, - anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + [217923] = 3, + ACTIONS(11644), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217829] = 4, - ACTIONS(5624), 1, + ACTIONS(11646), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [217935] = 4, + ACTIONS(5578), 1, anon_sym_RPAREN, - ACTIONS(11550), 1, + ACTIONS(11648), 1, anon_sym_COMMA, - STATE(8894), 1, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217843] = 4, - ACTIONS(3290), 1, + [217949] = 4, + ACTIONS(3296), 1, anon_sym_while, - ACTIONS(8648), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9585), 1, - sym_enum_class_body, + STATE(9961), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217963] = 3, + ACTIONS(11650), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4224), 2, + sym__quest, + anon_sym_in, + [217975] = 3, + STATE(3561), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217857] = 4, - ACTIONS(11295), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217987] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11552), 1, + ACTIONS(11652), 1, anon_sym_GT, - STATE(8936), 1, + STATE(8917), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217871] = 4, - ACTIONS(4218), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9543), 1, - sym_class_body, + [218001] = 3, + STATE(3575), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218013] = 3, + STATE(3583), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217885] = 4, - ACTIONS(11303), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218025] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - ACTIONS(11554), 1, - anon_sym_GT, - STATE(8989), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11654), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217899] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11556), 1, - anon_sym_EQ, - STATE(9528), 1, - sym_type_parameters, + [218039] = 3, + STATE(3602), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217913] = 4, - ACTIONS(11295), 1, + ACTIONS(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218051] = 4, + ACTIONS(11656), 1, anon_sym_COMMA, - ACTIONS(11558), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11659), 1, + anon_sym_RPAREN, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217927] = 4, - ACTIONS(5630), 1, - anon_sym_RPAREN, - ACTIONS(11560), 1, + [218065] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11661), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217941] = 4, - ACTIONS(11295), 1, + [218079] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11562), 1, + ACTIONS(11663), 1, anon_sym_GT, - STATE(8944), 1, - aux_sym_type_arguments_repeat1, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217955] = 3, - STATE(8807), 1, - sym_constructor_delegation_call, + [218093] = 4, + ACTIONS(4381), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(9904), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - 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, + [218107] = 3, + ACTIONS(11665), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217981] = 4, - ACTIONS(11568), 1, + ACTIONS(11667), 2, anon_sym_COMMA, - ACTIONS(11570), 1, anon_sym_RPAREN, - STATE(8993), 1, + [218119] = 4, + ACTIONS(9396), 1, + anon_sym_RPAREN, + ACTIONS(11669), 1, + anon_sym_COMMA, + STATE(8875), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217995] = 3, - STATE(4823), 1, + [218133] = 3, + STATE(826), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(293), 2, + ACTIONS(11671), 2, sym__alpha_identifier, sym__backtick_identifier, - [218007] = 2, + [218145] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4734), 3, + ACTIONS(4756), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_in, - [218017] = 4, - ACTIONS(11295), 1, + [218155] = 4, + ACTIONS(8868), 1, + anon_sym_RPAREN, + ACTIONS(11673), 1, anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218031] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11574), 1, + [218169] = 4, + ACTIONS(5610), 1, anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218045] = 4, - ACTIONS(11295), 1, + ACTIONS(11675), 1, anon_sym_COMMA, - ACTIONS(11576), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218059] = 4, - ACTIONS(5534), 1, - anon_sym_RPAREN, - ACTIONS(11578), 1, - anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + [218183] = 4, + ACTIONS(4206), 1, + anon_sym_in, + ACTIONS(11677), 1, + sym__quest, + STATE(9002), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218073] = 4, + [218197] = 4, ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11580), 1, + ACTIONS(11679), 1, anon_sym_RBRACK, - STATE(8926), 1, + STATE(8930), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218087] = 4, - ACTIONS(5604), 1, - anon_sym_RPAREN, - ACTIONS(11582), 1, + [218211] = 4, + ACTIONS(11681), 1, anon_sym_COMMA, - STATE(8894), 1, + ACTIONS(11683), 1, + anon_sym_RPAREN, + STATE(8938), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218101] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11584), 1, - anon_sym_GT, - STATE(8952), 1, - aux_sym_type_arguments_repeat1, + [218225] = 4, + ACTIONS(4243), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10031), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218115] = 4, - ACTIONS(11586), 1, - anon_sym_COMMA, - ACTIONS(11589), 1, - anon_sym_DASH_GT, - STATE(8959), 1, - aux_sym_lambda_parameters_repeat1, + [218239] = 4, + ACTIONS(3240), 1, + anon_sym_LBRACE, + ACTIONS(9936), 1, + anon_sym_COLON, + STATE(3216), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218129] = 4, - ACTIONS(11591), 1, + [218253] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11594), 1, + ACTIONS(11685), 1, anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218143] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11596), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + [218267] = 4, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(9938), 1, + anon_sym_COLON, + STATE(1076), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218157] = 4, - ACTIONS(11378), 1, + [218281] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11598), 1, + ACTIONS(11687), 1, anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218171] = 4, - ACTIONS(11600), 1, - anon_sym_COMMA, - ACTIONS(11602), 1, + [218295] = 4, + ACTIONS(5540), 1, anon_sym_RPAREN, - STATE(8957), 1, + ACTIONS(11689), 1, + anon_sym_COMMA, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218185] = 4, - ACTIONS(9356), 1, - anon_sym_RPAREN, - ACTIONS(11604), 1, + [218309] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11691), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218199] = 4, - ACTIONS(11295), 1, + [218323] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11606), 1, + ACTIONS(11693), 1, anon_sym_GT, - STATE(8882), 1, + STATE(9026), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218213] = 4, - ACTIONS(5590), 1, + [218337] = 4, + ACTIONS(5624), 1, anon_sym_RPAREN, - ACTIONS(11608), 1, + ACTIONS(11695), 1, anon_sym_COMMA, - STATE(8894), 1, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218227] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11610), 1, - anon_sym_RPAREN, - STATE(9020), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218241] = 4, - ACTIONS(11612), 1, + [218351] = 4, + ACTIONS(11697), 1, anon_sym_COMMA, - ACTIONS(11614), 1, + ACTIONS(11699), 1, anon_sym_RPAREN, - STATE(8996), 1, + STATE(8991), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218255] = 4, - ACTIONS(11295), 1, + [218365] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11616), 1, + ACTIONS(11701), 1, anon_sym_GT, - STATE(8997), 1, + STATE(8917), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218269] = 4, - ACTIONS(11303), 1, - anon_sym_COMMA, - ACTIONS(11618), 1, - anon_sym_GT, - STATE(9040), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218283] = 4, - ACTIONS(11295), 1, + [218379] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11620), 1, + ACTIONS(11703), 1, anon_sym_GT, - STATE(8965), 1, + STATE(8992), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218297] = 4, - ACTIONS(11378), 1, + [218393] = 4, + ACTIONS(11705), 1, anon_sym_COMMA, - ACTIONS(11622), 1, + ACTIONS(11707), 1, anon_sym_RPAREN, - STATE(8812), 1, - aux_sym_function_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218311] = 4, - ACTIONS(9186), 1, - anon_sym_LT, - ACTIONS(11624), 1, - anon_sym_EQ, - STATE(9534), 1, - sym_type_parameters, + STATE(9067), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218325] = 4, - ACTIONS(11626), 1, - anon_sym_COMMA, - ACTIONS(11628), 1, - anon_sym_RPAREN, - STATE(8966), 1, - aux_sym_value_arguments_repeat1, + [218407] = 3, + STATE(1067), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218339] = 4, - ACTIONS(11303), 1, - anon_sym_COMMA, - ACTIONS(11630), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218419] = 3, + STATE(1068), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218353] = 4, - ACTIONS(11303), 1, - anon_sym_COMMA, - ACTIONS(11632), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218431] = 3, + STATE(1069), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218367] = 4, - ACTIONS(11295), 1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218443] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11634), 1, + ACTIONS(11709), 1, anon_sym_GT, - STATE(8954), 1, + STATE(9060), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218381] = 3, - ACTIONS(11636), 1, - anon_sym_COLON, + [218457] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11711), 1, + anon_sym_EQ, + STATE(10088), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11638), 2, + [218471] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - anon_sym_GT, - [218393] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11640), 1, + ACTIONS(11713), 1, anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218407] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11642), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + [218485] = 3, + STATE(1014), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218421] = 4, - ACTIONS(11644), 1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218497] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11646), 1, - anon_sym_RPAREN, - STATE(9002), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11715), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_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, + [218511] = 3, + STATE(3380), 1, + sym__lexical_identifier, 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(203), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218523] = 3, + STATE(4788), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218463] = 4, - ACTIONS(11652), 1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218535] = 4, + ACTIONS(11717), 1, anon_sym_COMMA, - ACTIONS(11654), 1, + ACTIONS(11719), 1, anon_sym_RPAREN, - STATE(8937), 1, + STATE(9053), 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, - [218491] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4704), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [218501] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11661), 1, - anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [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, - [218529] = 4, - ACTIONS(11303), 1, - anon_sym_COMMA, - ACTIONS(11665), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + [218549] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218543] = 4, - ACTIONS(11295), 1, + ACTIONS(4405), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [218559] = 4, + ACTIONS(7591), 1, anon_sym_COMMA, - ACTIONS(11667), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11721), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218557] = 4, - ACTIONS(5524), 1, + [218573] = 4, + ACTIONS(5594), 1, anon_sym_RPAREN, - ACTIONS(11669), 1, + ACTIONS(11723), 1, anon_sym_COMMA, - STATE(8894), 1, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218571] = 4, - ACTIONS(11295), 1, + [218587] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11671), 1, + ACTIONS(11725), 1, anon_sym_GT, - STATE(8990), 1, + STATE(8917), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218585] = 4, - ACTIONS(9378), 1, - anon_sym_RPAREN, - ACTIONS(11673), 1, - anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218599] = 4, - ACTIONS(11675), 1, - anon_sym_COMMA, - ACTIONS(11677), 1, - anon_sym_RPAREN, - STATE(8991), 1, - aux_sym_value_arguments_repeat1, + [218601] = 3, + STATE(8914), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(11623), 2, + anon_sym_this, + anon_sym_super, [218613] = 4, - ACTIONS(7591), 1, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11679), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11727), 1, + anon_sym_GT, + STATE(8967), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218627] = 4, - ACTIONS(5562), 1, - anon_sym_RPAREN, - ACTIONS(11681), 1, + ACTIONS(11312), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11729), 1, + anon_sym_GT, + STATE(9038), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218641] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11683), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(8530), 1, + anon_sym_LBRACE, + ACTIONS(11731), 1, + sym__automatic_semicolon, + STATE(9699), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218655] = 4, - ACTIONS(11685), 1, - anon_sym_COMMA, - ACTIONS(11687), 1, - anon_sym_RPAREN, - STATE(9047), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(10695), 1, + anon_sym_LBRACE, + ACTIONS(11733), 1, + sym__automatic_semicolon, + STATE(9704), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218669] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11689), 1, - anon_sym_GT, - STATE(9049), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4269), 1, + anon_sym_in, + ACTIONS(11735), 1, + sym__quest, + STATE(8962), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218683] = 4, - ACTIONS(4218), 1, + ACTIONS(4243), 1, anon_sym_while, - ACTIONS(8648), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9543), 1, - sym_enum_class_body, + STATE(10031), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218697] = 4, - ACTIONS(11295), 1, + ACTIONS(11737), 1, anon_sym_COMMA, - ACTIONS(11691), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11739), 1, + anon_sym_RPAREN, + STATE(8970), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218711] = 4, - ACTIONS(8833), 1, - anon_sym_RPAREN, - ACTIONS(11693), 1, - anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(5834), 1, + anon_sym_LBRACE, + ACTIONS(9932), 1, + anon_sym_COLON, + STATE(3964), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218725] = 4, - ACTIONS(5498), 1, - anon_sym_RPAREN, - ACTIONS(11695), 1, - anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(4236), 1, + anon_sym_in, + ACTIONS(11741), 1, + sym__quest, + STATE(9002), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [218739] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11697), 1, - anon_sym_GT, - STATE(9001), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3272), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10089), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218753] = 4, - ACTIONS(11699), 1, - anon_sym_COMMA, - ACTIONS(11701), 1, - anon_sym_RPAREN, - STATE(9003), 1, - aux_sym_value_arguments_repeat1, + [218753] = 3, + STATE(1039), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218767] = 4, - ACTIONS(11703), 1, + ACTIONS(637), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218765] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11705), 1, + ACTIONS(11744), 1, anon_sym_RPAREN, - STATE(8938), 1, - aux_sym_value_arguments_repeat1, + STATE(8809), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218781] = 4, - ACTIONS(4357), 1, + [218779] = 4, + ACTIONS(4726), 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, - [218795] = 4, - ACTIONS(11707), 1, - anon_sym_COMMA, - ACTIONS(11709), 1, - anon_sym_RPAREN, - STATE(9067), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218809] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11276), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [218819] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11711), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(10090), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218833] = 2, + [218793] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11746), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10993), 3, - anon_sym_RBRACE, + [218807] = 4, + ACTIONS(11748), 1, anon_sym_COMMA, - anon_sym_SEMI, - [218843] = 4, - ACTIONS(5470), 1, + ACTIONS(11750), 1, anon_sym_RPAREN, - ACTIONS(11713), 1, - anon_sym_COMMA, - STATE(8894), 1, + STATE(8845), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218857] = 4, - ACTIONS(11295), 1, + [218821] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11715), 1, + ACTIONS(11752), 1, anon_sym_GT, - STATE(9010), 1, + STATE(8917), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218871] = 4, - ACTIONS(11717), 1, - anon_sym_COMMA, - ACTIONS(11719), 1, + [218835] = 4, + ACTIONS(5546), 1, anon_sym_RPAREN, - STATE(9012), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218885] = 4, - ACTIONS(11295), 1, + ACTIONS(11754), 1, anon_sym_COMMA, - ACTIONS(11721), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218899] = 4, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(11342), 1, - sym__quest, - STATE(8922), 1, - aux_sym_nullable_type_repeat1, + [218849] = 3, + STATE(3193), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218913] = 4, - ACTIONS(3282), 1, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218861] = 4, + ACTIONS(4493), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9545), 1, + STATE(10097), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218927] = 4, - ACTIONS(11723), 1, + [218875] = 4, + ACTIONS(11286), 1, anon_sym_COMMA, - ACTIONS(11725), 1, + ACTIONS(11756), 1, anon_sym_RPAREN, - STATE(8955), 1, - aux_sym_value_arguments_repeat1, + STATE(8822), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218941] = 4, - ACTIONS(4224), 1, - anon_sym_in, - ACTIONS(11727), 1, - sym__quest, - STATE(9019), 1, - aux_sym_nullable_type_repeat1, + [218889] = 4, + ACTIONS(4413), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10098), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218955] = 4, - ACTIONS(11311), 1, + [218903] = 4, + ACTIONS(11386), 1, anon_sym_COMMA, - ACTIONS(11730), 1, - anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11758), 1, + anon_sym_DASH_GT, + STATE(8831), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218969] = 4, - ACTIONS(9362), 1, - anon_sym_RPAREN, - ACTIONS(11732), 1, + [218917] = 4, + ACTIONS(11300), 1, anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11760), 1, + anon_sym_DASH_GT, + STATE(8908), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218983] = 3, - ACTIONS(11734), 1, - anon_sym_EQ, + [218931] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11762), 1, + anon_sym_GT, + STATE(8953), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11736), 2, + [218945] = 4, + ACTIONS(11764), 1, anon_sym_COMMA, + ACTIONS(11767), 1, anon_sym_RPAREN, - [218995] = 4, - ACTIONS(8909), 1, - anon_sym_RPAREN, - ACTIONS(11738), 1, - anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + STATE(9018), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218959] = 3, + STATE(3207), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219009] = 4, - ACTIONS(11295), 1, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218971] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11740), 1, + ACTIONS(11769), 1, anon_sym_GT, - STATE(8882), 1, + STATE(9009), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219023] = 4, - ACTIONS(5620), 1, + [218985] = 4, + ACTIONS(8902), 1, anon_sym_RPAREN, - ACTIONS(11742), 1, + ACTIONS(11771), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + STATE(8952), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219037] = 4, - ACTIONS(11378), 1, + [218999] = 4, + ACTIONS(11773), 1, anon_sym_COMMA, - ACTIONS(11744), 1, + ACTIONS(11775), 1, anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + STATE(9010), 1, + aux_sym_value_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219013] = 3, + STATE(3212), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219025] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11777), 1, + anon_sym_EQ, + STATE(9846), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219051] = 4, - ACTIONS(11295), 1, + [219039] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10770), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11746), 1, + anon_sym_SEMI, + [219049] = 4, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, anon_sym_GT, - STATE(9024), 1, + STATE(8917), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219065] = 4, - ACTIONS(11748), 1, - anon_sym_COMMA, - ACTIONS(11750), 1, - anon_sym_RPAREN, - STATE(9025), 1, - aux_sym_value_arguments_repeat1, + [219063] = 4, + ACTIONS(4325), 1, + anon_sym_in, + ACTIONS(11735), 1, + sym__quest, + STATE(8962), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219077] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219079] = 3, - STATE(3424), 1, + ACTIONS(11781), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [219087] = 3, + STATE(3856), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, + ACTIONS(553), 2, sym__alpha_identifier, sym__backtick_identifier, - [219091] = 4, - ACTIONS(11481), 1, - anon_sym_COMMA, - ACTIONS(11752), 1, - anon_sym_DASH_GT, - STATE(8902), 1, - aux_sym_when_entry_repeat1, + [219099] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11783), 1, + anon_sym_EQ, + STATE(9560), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219105] = 2, + [219113] = 4, + ACTIONS(11418), 1, + anon_sym_DOT, + ACTIONS(11785), 1, + sym__automatic_semicolon, + STATE(8842), 1, + aux_sym_identifier_repeat1, 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, + [219127] = 4, + ACTIONS(11787), 1, anon_sym_COMMA, - STATE(8894), 1, + ACTIONS(11789), 1, + anon_sym_RPAREN, + STATE(9075), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219129] = 4, - ACTIONS(11378), 1, + [219141] = 4, + ACTIONS(3280), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(9861), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219155] = 4, + ACTIONS(11791), 1, anon_sym_COMMA, - ACTIONS(11756), 1, + ACTIONS(11793), 1, anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + STATE(9095), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219143] = 4, - ACTIONS(7591), 1, - anon_sym_COMMA, - ACTIONS(11758), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + [219169] = 3, + STATE(3204), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219157] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11760), 1, - anon_sym_GT, - STATE(9015), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219181] = 4, + ACTIONS(5496), 1, + anon_sym_LBRACE, + ACTIONS(9926), 1, + anon_sym_COLON, + STATE(4786), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219171] = 4, - ACTIONS(5552), 1, - anon_sym_RPAREN, - ACTIONS(11762), 1, + [219195] = 4, + ACTIONS(11795), 1, anon_sym_COMMA, - STATE(8894), 1, + ACTIONS(11797), 1, + anon_sym_RPAREN, + STATE(8871), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219185] = 3, - STATE(840), 1, - sym__lexical_identifier, + [219209] = 4, + ACTIONS(11312), 1, + anon_sym_COMMA, + ACTIONS(11799), 1, + anon_sym_GT, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11764), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219197] = 3, - STATE(3584), 1, - sym__lexical_identifier, + [219223] = 4, + ACTIONS(11801), 1, + anon_sym_COMMA, + ACTIONS(11803), 1, + anon_sym_RPAREN, + STATE(8939), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219209] = 3, - STATE(3585), 1, + [219237] = 3, + STATE(1070), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(203), 2, + ACTIONS(637), 2, sym__alpha_identifier, sym__backtick_identifier, - [219221] = 4, - ACTIONS(11303), 1, + [219249] = 4, + ACTIONS(11805), 1, anon_sym_COMMA, - ACTIONS(11766), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11807), 1, + anon_sym_RPAREN, + STATE(9048), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219235] = 4, - ACTIONS(11295), 1, + [219263] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11768), 1, + ACTIONS(11809), 1, anon_sym_GT, - STATE(8882), 1, + STATE(9056), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [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, - [219263] = 3, - STATE(3587), 1, + [219277] = 3, + STATE(5178), 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, - [219275] = 3, - STATE(3591), 1, + [219289] = 4, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11811), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219303] = 3, + STATE(5179), 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, - [219287] = 4, - ACTIONS(11772), 1, - anon_sym_COMMA, - ACTIONS(11774), 1, - anon_sym_RPAREN, - STATE(9032), 1, - aux_sym_value_arguments_repeat1, + [219315] = 3, + ACTIONS(11813), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219301] = 4, - ACTIONS(7591), 1, + ACTIONS(11815), 2, anon_sym_COMMA, - ACTIONS(11776), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + anon_sym_GT, + [219327] = 3, + STATE(5182), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219315] = 4, - ACTIONS(5508), 1, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219339] = 4, + ACTIONS(5574), 1, anon_sym_RPAREN, - ACTIONS(11778), 1, + ACTIONS(11817), 1, anon_sym_COMMA, - STATE(8894), 1, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219329] = 4, - ACTIONS(5496), 1, - anon_sym_LBRACE, - ACTIONS(9929), 1, - anon_sym_COLON, - STATE(3526), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219343] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11780), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + [219353] = 3, + STATE(5185), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219357] = 4, - ACTIONS(4557), 1, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219365] = 4, + ACTIONS(4413), 1, anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(8662), 1, anon_sym_LBRACE, - STATE(9507), 1, + STATE(10098), 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, + [219379] = 3, + STATE(4767), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219385] = 4, - ACTIONS(4329), 1, - anon_sym_while, - ACTIONS(8638), 1, - anon_sym_LBRACE, - STATE(9623), 1, - sym_class_body, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219391] = 3, + STATE(3084), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219399] = 4, - ACTIONS(8901), 1, + ACTIONS(467), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219403] = 4, + ACTIONS(8846), 1, anon_sym_RPAREN, - ACTIONS(11782), 1, + ACTIONS(11819), 1, anon_sym_COMMA, - STATE(8847), 1, + STATE(8952), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219413] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11784), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + [219417] = 4, + ACTIONS(4230), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10108), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219427] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11786), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + [219431] = 4, + ACTIONS(11424), 1, + anon_sym_LPAREN, + ACTIONS(11821), 1, + anon_sym_LBRACE, + STATE(9998), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219441] = 4, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(11788), 1, + [219445] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11823), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219455] = 4, - ACTIONS(9368), 1, - anon_sym_RPAREN, - ACTIONS(11790), 1, + [219459] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11825), 1, + anon_sym_GT, + STATE(8827), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219469] = 4, - ACTIONS(11792), 1, - anon_sym_COMMA, - ACTIONS(11794), 1, - anon_sym_RPAREN, - STATE(8964), 1, - aux_sym_function_value_parameters_repeat1, + [219473] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11827), 1, + anon_sym_EQ, + STATE(9875), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219483] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11796), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + [219487] = 3, + STATE(4769), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219497] = 4, - ACTIONS(11798), 1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219499] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11800), 1, - anon_sym_RPAREN, - STATE(9053), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11829), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219511] = 4, - ACTIONS(11295), 1, + [219513] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11802), 1, + ACTIONS(11831), 1, anon_sym_GT, - STATE(9055), 1, - aux_sym_type_arguments_repeat1, + STATE(9084), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219525] = 4, - ACTIONS(11804), 1, + [219527] = 4, + ACTIONS(11341), 1, anon_sym_COMMA, - ACTIONS(11806), 1, + ACTIONS(11833), 1, anon_sym_RPAREN, - STATE(9056), 1, - aux_sym_value_arguments_repeat1, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219539] = 4, - ACTIONS(11808), 1, - anon_sym_COMMA, - ACTIONS(11810), 1, - anon_sym_RPAREN, - STATE(9057), 1, - aux_sym_function_value_parameters_repeat1, + [219541] = 3, + STATE(4772), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, [219553] = 4, - ACTIONS(3274), 1, - anon_sym_while, - ACTIONS(8638), 1, + ACTIONS(11424), 1, + anon_sym_LPAREN, + ACTIONS(11835), 1, anon_sym_LBRACE, - STATE(9819), 1, - sym_class_body, + STATE(10148), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219567] = 4, - ACTIONS(8857), 1, - anon_sym_RPAREN, - ACTIONS(11812), 1, + ACTIONS(7591), 1, anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11837), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219581] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11814), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11839), 1, + anon_sym_EQ, + STATE(9594), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219595] = 4, - ACTIONS(8881), 1, + ACTIONS(5488), 1, anon_sym_RPAREN, - ACTIONS(11816), 1, + ACTIONS(11841), 1, anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219609] = 4, - ACTIONS(5542), 1, - anon_sym_RPAREN, - ACTIONS(11818), 1, - anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11843), 1, + anon_sym_EQ, + STATE(9971), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219623] = 4, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(11820), 1, - sym__automatic_semicolon, - STATE(10021), 1, - sym_class_body, + ACTIONS(11341), 1, + anon_sym_COMMA, + ACTIONS(11845), 1, + anon_sym_RPAREN, + STATE(8812), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219637] = 4, - ACTIONS(10691), 1, - anon_sym_LBRACE, - ACTIONS(11822), 1, - sym__automatic_semicolon, - STATE(9891), 1, - sym__block, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(11847), 1, + anon_sym_RBRACK, + STATE(8930), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219651] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11824), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(4655), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(10111), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219665] = 4, - ACTIONS(11826), 1, - anon_sym_COMMA, - ACTIONS(11828), 1, - anon_sym_RPAREN, - STATE(9065), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(4377), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10113), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219679] = 4, - ACTIONS(8521), 1, - anon_sym_LBRACE, - ACTIONS(11830), 1, - sym__automatic_semicolon, - STATE(10013), 1, - sym_class_body, + ACTIONS(11304), 1, + anon_sym_COMMA, + ACTIONS(11849), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219693] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11832), 1, - anon_sym_GT, - STATE(9066), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11851), 1, + anon_sym_EQ, + STATE(10130), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219707] = 4, - ACTIONS(11834), 1, - anon_sym_COMMA, - ACTIONS(11836), 1, + ACTIONS(5558), 1, anon_sym_RPAREN, - STATE(9068), 1, + ACTIONS(11853), 1, + anon_sym_COMMA, + STATE(8911), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, [219721] = 4, - ACTIONS(11838), 1, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11840), 1, - anon_sym_RPAREN, - STATE(9087), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11855), 1, + anon_sym_GT, + STATE(9073), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219735] = 4, - ACTIONS(5514), 1, - anon_sym_RPAREN, - ACTIONS(11842), 1, - anon_sym_COMMA, - STATE(8894), 1, - aux_sym_value_arguments_repeat1, + [219735] = 3, + STATE(4773), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219749] = 4, - ACTIONS(8845), 1, - anon_sym_RPAREN, - ACTIONS(11844), 1, - anon_sym_COMMA, - STATE(8847), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(293), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219747] = 3, + STATE(2813), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219763] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11846), 1, - anon_sym_GT, - STATE(8882), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11857), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219759] = 4, + ACTIONS(4377), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(10113), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219777] = 4, - ACTIONS(11303), 1, - anon_sym_COMMA, - ACTIONS(11848), 1, - anon_sym_GT, - STATE(8975), 1, - aux_sym_type_parameters_repeat1, + [219773] = 4, + ACTIONS(4409), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10118), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219791] = 4, - ACTIONS(9364), 1, + [219787] = 4, + ACTIONS(9362), 1, anon_sym_RPAREN, - ACTIONS(11850), 1, + ACTIONS(11859), 1, anon_sym_COMMA, - STATE(8934), 1, + STATE(8875), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219805] = 4, - ACTIONS(7591), 1, - anon_sym_COMMA, - ACTIONS(11852), 1, - anon_sym_RBRACK, - STATE(8926), 1, - aux_sym_indexing_suffix_repeat1, + [219801] = 4, + ACTIONS(4531), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10121), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219815] = 4, + ACTIONS(4531), 1, + anon_sym_while, + ACTIONS(8662), 1, + anon_sym_LBRACE, + STATE(10121), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219819] = 4, - ACTIONS(11303), 1, + [219829] = 4, + ACTIONS(11312), 1, anon_sym_COMMA, - ACTIONS(11854), 1, + ACTIONS(11861), 1, anon_sym_GT, - STATE(8960), 1, + STATE(8827), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219833] = 4, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11856), 1, - anon_sym_RPAREN, - STATE(8972), 1, - aux_sym_function_type_parameters_repeat1, + [219843] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11863), 1, + anon_sym_EQ, + STATE(9881), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219847] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11858), 1, - anon_sym_RPAREN, - STATE(8985), 1, - aux_sym_multi_variable_declaration_repeat1, + [219857] = 4, + ACTIONS(4509), 1, + anon_sym_while, + ACTIONS(8583), 1, + anon_sym_LBRACE, + STATE(10132), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219861] = 4, - ACTIONS(11860), 1, - anon_sym_COMMA, - ACTIONS(11862), 1, - anon_sym_RPAREN, - STATE(9078), 1, - aux_sym__class_parameters_repeat1, + [219871] = 3, + ACTIONS(11865), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219875] = 4, - ACTIONS(9350), 1, - anon_sym_RPAREN, - ACTIONS(11864), 1, + ACTIONS(11867), 2, anon_sym_COMMA, - STATE(8934), 1, - aux_sym_function_value_parameters_repeat1, + anon_sym_RPAREN, + [219883] = 4, + ACTIONS(7118), 1, + sym__automatic_semicolon, + ACTIONS(10713), 1, + anon_sym_LPAREN, + STATE(8569), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219889] = 4, - ACTIONS(8521), 1, + [219897] = 4, + ACTIONS(4637), 1, + anon_sym_while, + ACTIONS(8583), 1, anon_sym_LBRACE, - ACTIONS(11866), 1, - sym__automatic_semicolon, - STATE(9987), 1, - sym_class_body, + STATE(10147), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219903] = 4, - ACTIONS(11295), 1, - anon_sym_COMMA, - ACTIONS(11868), 1, - anon_sym_GT, - STATE(9079), 1, - aux_sym_type_arguments_repeat1, + [219911] = 4, + ACTIONS(11424), 1, + anon_sym_LPAREN, + ACTIONS(11869), 1, + anon_sym_LBRACE, + STATE(10055), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219917] = 2, + [219925] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11871), 1, + anon_sym_EQ, + STATE(10094), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11870), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [219927] = 4, - ACTIONS(11872), 1, + [219939] = 4, + ACTIONS(11873), 1, anon_sym_COMMA, - ACTIONS(11874), 1, + ACTIONS(11875), 1, anon_sym_RPAREN, - STATE(9077), 1, - aux_sym_value_arguments_repeat1, + STATE(9081), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219953] = 4, + ACTIONS(9354), 1, + anon_sym_RPAREN, + ACTIONS(11877), 1, + anon_sym_COMMA, + STATE(8875), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219941] = 4, - ACTIONS(11311), 1, + [219967] = 4, + ACTIONS(11304), 1, anon_sym_COMMA, - ACTIONS(11876), 1, + ACTIONS(11879), 1, + anon_sym_GT, + STATE(8917), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219981] = 4, + ACTIONS(5568), 1, anon_sym_RPAREN, - STATE(8979), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11881), 1, + anon_sym_COMMA, + STATE(8911), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219955] = 3, - ACTIONS(11878), 1, + [219995] = 4, + ACTIONS(9186), 1, + anon_sym_LT, + ACTIONS(11883), 1, anon_sym_EQ, + STATE(10053), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7824), 2, - anon_sym_COMMA, + [220009] = 4, + ACTIONS(9356), 1, anon_sym_RPAREN, - [219967] = 4, - ACTIONS(11880), 1, + ACTIONS(11885), 1, anon_sym_COMMA, - ACTIONS(11882), 1, - anon_sym_RPAREN, - STATE(9081), 1, + STATE(8875), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219981] = 4, - ACTIONS(11303), 1, + [220023] = 4, + ACTIONS(11887), 1, anon_sym_COMMA, - ACTIONS(11884), 1, - anon_sym_GT, - STATE(9083), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11890), 1, + anon_sym_DASH_GT, + STATE(9098), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219995] = 4, - ACTIONS(11311), 1, - anon_sym_COMMA, - ACTIONS(11886), 1, - anon_sym_RPAREN, - STATE(9085), 1, - aux_sym_multi_variable_declaration_repeat1, + [220037] = 3, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220009] = 3, - ACTIONS(9765), 1, + [220048] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4673), 1, + STATE(3311), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220020] = 2, + [220059] = 3, + ACTIONS(11894), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4776), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220029] = 3, - ACTIONS(11888), 1, + [220070] = 3, + ACTIONS(11896), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(9101), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220040] = 3, - ACTIONS(11890), 1, - anon_sym_DOT, - STATE(9099), 1, - aux_sym_user_type_repeat1, + [220081] = 3, + ACTIONS(10383), 1, + anon_sym_get, + ACTIONS(10385), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220051] = 2, + [220092] = 3, + ACTIONS(11898), 1, + anon_sym_DOT, + STATE(9110), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(121), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220060] = 3, - ACTIONS(5488), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym__class_parameters, + [220103] = 3, + ACTIONS(11900), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220071] = 3, - ACTIONS(11892), 1, + [220114] = 3, + ACTIONS(11902), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(9105), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220082] = 3, - ACTIONS(11894), 1, + [220125] = 3, + ACTIONS(10321), 1, + anon_sym_get, + ACTIONS(10323), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220136] = 3, + ACTIONS(11904), 1, anon_sym_DOT, - STATE(9103), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220093] = 3, - ACTIONS(11896), 1, + [220147] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4395), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220156] = 3, + ACTIONS(11906), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220104] = 3, - ACTIONS(11898), 1, + [220167] = 3, + ACTIONS(11908), 1, anon_sym_DOT, - STATE(9105), 1, + STATE(9108), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220115] = 3, - ACTIONS(10683), 1, + [220178] = 3, + ACTIONS(10643), 1, anon_sym_get, - ACTIONS(10685), 1, + ACTIONS(10645), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220126] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8552), 1, - sym__block, + [220189] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4713), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220137] = 3, - ACTIONS(10391), 1, - anon_sym_get, - ACTIONS(10393), 1, - anon_sym_set, + [220200] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1196), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220148] = 2, + [220211] = 3, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8539), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1804), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220157] = 3, - ACTIONS(3262), 1, - anon_sym_LBRACE, - STATE(3077), 1, - sym_class_body, + [220222] = 3, + ACTIONS(11910), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220168] = 2, + [220233] = 3, + ACTIONS(11912), 1, + anon_sym_DOT, + STATE(9116), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11900), 2, - anon_sym_COMMA, - anon_sym_GT, - [220177] = 2, + [220244] = 3, + ACTIONS(7700), 1, + anon_sym_RBRACE, + ACTIONS(11914), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220186] = 3, - ACTIONS(11902), 1, + [220255] = 3, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8509), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220266] = 3, + ACTIONS(11916), 1, sym__automatic_semicolon, - STATE(3790), 1, + STATE(3791), 1, sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220197] = 2, + [220277] = 3, + ACTIONS(5806), 1, + anon_sym_LPAREN, + STATE(5010), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220206] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4539), 1, - sym_function_value_parameters, + [220288] = 3, + ACTIONS(11918), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220217] = 3, - ACTIONS(10331), 1, - anon_sym_get, - ACTIONS(10333), 1, - anon_sym_set, + [220299] = 3, + ACTIONS(11920), 1, + anon_sym_DOT, + STATE(9131), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220228] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(4095), 1, - sym_function_value_parameters, + [220310] = 3, + ACTIONS(11922), 1, + anon_sym_DOT, + STATE(9122), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220239] = 2, + [220321] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4908), 2, + ACTIONS(4405), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [220248] = 2, + [220330] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4864), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7181), 2, - anon_sym_AT, - anon_sym_val, - [220257] = 2, + [220341] = 3, + ACTIONS(11924), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7193), 2, - anon_sym_AT, - anon_sym_val, - [220266] = 3, - ACTIONS(9797), 1, + [220352] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4536), 1, + STATE(4898), 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, + [220363] = 3, + ACTIONS(11926), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [220286] = 2, + STATE(3656), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7189), 2, - anon_sym_AT, - anon_sym_val, - [220295] = 3, - ACTIONS(7783), 1, - anon_sym_RBRACE, - ACTIONS(11904), 1, - anon_sym_SEMI, + [220374] = 3, + ACTIONS(8112), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220306] = 2, + [220385] = 3, + ACTIONS(11928), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7145), 2, - anon_sym_AT, - anon_sym_val, - [220315] = 3, - ACTIONS(11906), 1, + [220396] = 3, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(917), 1, + STATE(4598), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220326] = 3, - ACTIONS(11906), 1, - anon_sym_LBRACE, - STATE(865), 1, - sym__block, + [220407] = 3, + ACTIONS(11930), 1, + anon_sym_DOT, + STATE(9127), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220337] = 3, - ACTIONS(9797), 1, + [220418] = 3, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4543), 1, + STATE(4709), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220348] = 2, + [220429] = 3, + ACTIONS(11932), 1, + anon_sym_LBRACE, + STATE(3623), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7173), 2, - anon_sym_AT, - anon_sym_val, - [220357] = 2, + [220440] = 3, + ACTIONS(11932), 1, + anon_sym_LBRACE, + STATE(3620), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220366] = 2, + [220451] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1203), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 2, - anon_sym_AT, - anon_sym_val, - [220375] = 2, + [220462] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3838), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4886), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220384] = 2, + [220473] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(3340), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4453), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220393] = 2, + [220484] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1214), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4185), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220402] = 2, + [220495] = 3, + ACTIONS(10367), 1, + anon_sym_get, + ACTIONS(10369), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220411] = 3, - ACTIONS(10583), 1, - anon_sym_get, - ACTIONS(10585), 1, - anon_sym_set, + [220506] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5124), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220422] = 3, - ACTIONS(9729), 1, + [220517] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(4135), 1, + STATE(1201), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220433] = 3, - ACTIONS(5488), 1, - anon_sym_LPAREN, - STATE(3334), 1, - sym__class_parameters, + [220528] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220444] = 3, - ACTIONS(9720), 1, + [220539] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(5392), 1, + STATE(3346), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220455] = 3, - ACTIONS(9720), 1, + [220550] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(5387), 1, + STATE(3345), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220466] = 3, - ACTIONS(8223), 1, - anon_sym_LBRACE, - STATE(4949), 1, - sym__block, + [220561] = 3, + ACTIONS(10455), 1, + anon_sym_get, + ACTIONS(10457), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220477] = 3, - ACTIONS(9720), 1, + [220572] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5380), 1, + STATE(1268), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220488] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4483), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220497] = 3, - ACTIONS(9720), 1, + [220583] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(5372), 1, + STATE(3313), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220508] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5101), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220517] = 2, + [220594] = 3, + ACTIONS(10501), 1, + anon_sym_get, + ACTIONS(10503), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220526] = 3, - ACTIONS(5580), 1, + [220605] = 3, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(4622), 1, - sym__class_parameters, + STATE(8345), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220537] = 2, + [220616] = 3, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8503), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4968), 2, - sym__automatic_semicolon, + [220627] = 3, + ACTIONS(7677), 1, anon_sym_RBRACE, - [220546] = 2, + ACTIONS(11934), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220555] = 2, + [220638] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1241), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 2, - anon_sym_AT, - anon_sym_val, - [220564] = 2, + [220649] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4689), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220573] = 3, - ACTIONS(8223), 1, - anon_sym_LBRACE, - STATE(4938), 1, - sym__block, + [220660] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(3309), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220584] = 2, + [220671] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4623), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4569), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220593] = 2, + [220682] = 3, + ACTIONS(10413), 1, + anon_sym_get, + ACTIONS(10415), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 2, - anon_sym_AT, - anon_sym_val, - [220602] = 2, + [220693] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(3336), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 2, - sym__automatic_semicolon, + [220704] = 3, + ACTIONS(7681), 1, anon_sym_RBRACE, - [220611] = 2, + ACTIONS(11936), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4441), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220620] = 3, - ACTIONS(9801), 1, + [220715] = 3, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4075), 1, + STATE(4627), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220631] = 2, + [220726] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5087), 2, + ACTIONS(4377), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [220640] = 2, + [220735] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(3300), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220649] = 2, + [220746] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(1271), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4976), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220658] = 2, + [220757] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4647), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 2, - anon_sym_AT, - anon_sym_val, - [220667] = 2, + [220768] = 3, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(4063), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220779] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4900), 2, + ACTIONS(3142), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [220676] = 2, + [220788] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(4750), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 2, - anon_sym_AT, - anon_sym_val, - [220685] = 3, - ACTIONS(9729), 1, + [220799] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3355), 1, + STATE(4932), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220696] = 3, - ACTIONS(9729), 1, + [220810] = 3, + ACTIONS(3256), 1, anon_sym_LPAREN, - STATE(4142), 1, - sym_function_value_parameters, + STATE(959), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220707] = 3, - ACTIONS(7711), 1, - anon_sym_RBRACE, - ACTIONS(11908), 1, - anon_sym_SEMI, + [220821] = 3, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8605), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220718] = 3, - ACTIONS(11910), 1, - sym__automatic_semicolon, - STATE(3637), 1, - sym__semi, + [220832] = 3, + ACTIONS(6444), 1, + anon_sym_LBRACE, + STATE(2949), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220729] = 3, - ACTIONS(9801), 1, + [220843] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, STATE(4064), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220740] = 3, - ACTIONS(10315), 1, - anon_sym_get, - ACTIONS(10317), 1, - anon_sym_set, + [220854] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220751] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(4088), 1, - sym_function_value_parameters, + ACTIONS(4413), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220863] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220762] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4963), 1, - sym_function_value_parameters, + ACTIONS(5187), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [220872] = 3, + ACTIONS(11938), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220773] = 3, - ACTIONS(3254), 1, - anon_sym_LPAREN, - STATE(3041), 1, - sym__class_parameters, + [220883] = 3, + ACTIONS(11940), 1, + anon_sym_DOT, + STATE(9099), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220784] = 2, + [220894] = 3, + ACTIONS(6444), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4479), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220793] = 2, + [220905] = 3, + ACTIONS(11942), 1, + anon_sym_DOT, + STATE(9176), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220802] = 2, + [220916] = 3, + ACTIONS(1618), 1, + anon_sym_LBRACE, + STATE(3436), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4848), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220811] = 2, + [220927] = 3, + ACTIONS(10441), 1, + anon_sym_get, + ACTIONS(10443), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4800), 2, + [220938] = 3, + ACTIONS(11944), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [220820] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(2849), 1, - sym_function_value_parameters, + STATE(9358), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220831] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(5304), 1, - sym_function_value_parameters, + [220949] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220842] = 3, - ACTIONS(9797), 1, + ACTIONS(11946), 2, + sym__import_list_delimiter, + anon_sym_import, + [220958] = 3, + ACTIONS(8508), 1, anon_sym_LPAREN, - STATE(5267), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [220853] = 2, + STATE(8535), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11326), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [220862] = 3, - ACTIONS(9797), 1, + [220969] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(5311), 1, + STATE(1263), 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, + [220980] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220884] = 3, - ACTIONS(9797), 1, + ACTIONS(11767), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220989] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(5286), 1, + STATE(4065), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220895] = 3, - ACTIONS(10345), 1, - anon_sym_get, - ACTIONS(10347), 1, - anon_sym_set, + [221000] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220906] = 3, - ACTIONS(7671), 1, + ACTIONS(3280), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(11912), 1, - anon_sym_SEMI, + [221009] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220917] = 3, - ACTIONS(3254), 1, + ACTIONS(5069), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221018] = 3, + ACTIONS(3256), 1, anon_sym_LPAREN, - STATE(3022), 1, + STATE(928), 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, - [220939] = 3, - ACTIONS(4894), 1, - anon_sym_while, - ACTIONS(11914), 1, - anon_sym_LPAREN, + [221029] = 3, + ACTIONS(11948), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220950] = 3, - ACTIONS(4876), 1, - anon_sym_while, - ACTIONS(11916), 1, - anon_sym_LPAREN, + [221040] = 3, + ACTIONS(11950), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220961] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1289), 1, - sym_function_value_parameters, + [221051] = 3, + ACTIONS(11952), 1, + anon_sym_DOT, + STATE(9191), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220972] = 3, - ACTIONS(9745), 1, + [221062] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(2817), 1, + STATE(4095), 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, + [221073] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220994] = 3, - ACTIONS(10497), 1, + ACTIONS(11954), 2, + anon_sym_COMMA, + anon_sym_GT, + [221082] = 3, + ACTIONS(10485), 1, anon_sym_get, - ACTIONS(10499), 1, + ACTIONS(10487), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221005] = 3, - ACTIONS(9729), 1, + [221093] = 3, + ACTIONS(5758), 1, anon_sym_LPAREN, - STATE(3581), 1, - sym_function_value_parameters, + STATE(5245), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221016] = 3, - ACTIONS(9729), 1, - anon_sym_LPAREN, - STATE(3578), 1, - sym_function_value_parameters, + [221104] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221027] = 3, - ACTIONS(9729), 1, + ACTIONS(1810), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221113] = 3, + ACTIONS(10713), 1, anon_sym_LPAREN, - STATE(3574), 1, - sym_function_value_parameters, + STATE(9270), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221038] = 3, - ACTIONS(7715), 1, - anon_sym_RBRACE, - ACTIONS(11918), 1, - anon_sym_SEMI, + [221124] = 3, + ACTIONS(11956), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221049] = 3, - ACTIONS(9729), 1, + [221135] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3572), 1, + STATE(4537), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221060] = 3, - ACTIONS(9745), 1, + [221146] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(2866), 1, + STATE(4539), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221071] = 3, - ACTIONS(1836), 1, - anon_sym_LBRACE, - STATE(4785), 1, - sym_lambda_literal, + [221157] = 3, + ACTIONS(11958), 1, + anon_sym_DOT, + STATE(9200), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221082] = 3, - ACTIONS(9801), 1, + [221168] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3678), 1, + STATE(4545), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221093] = 3, - ACTIONS(9801), 1, + [221179] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3681), 1, + STATE(4546), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221104] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(2814), 1, - sym_function_value_parameters, + [221190] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221115] = 3, - ACTIONS(4124), 1, - anon_sym_in, - ACTIONS(11920), 1, - anon_sym_COLON, + ACTIONS(5083), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221199] = 3, + ACTIONS(10657), 1, + anon_sym_get, + ACTIONS(10659), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221126] = 3, - ACTIONS(4287), 1, - anon_sym_while, - ACTIONS(11922), 1, + [221210] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, + STATE(4649), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221137] = 3, - ACTIONS(4265), 1, - anon_sym_while, - ACTIONS(11924), 1, - anon_sym_LPAREN, + [221221] = 2, 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(3340), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221230] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221159] = 3, - ACTIONS(8640), 1, - anon_sym_LPAREN, - STATE(8723), 1, - sym__class_parameters, + ACTIONS(4131), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221239] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221170] = 3, - ACTIONS(3212), 1, - anon_sym_LPAREN, - STATE(941), 1, - sym__class_parameters, + ACTIONS(5221), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221248] = 3, + ACTIONS(10079), 1, + anon_sym_get, + ACTIONS(10081), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221181] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(3707), 1, - sym_function_value_parameters, + [221259] = 3, + ACTIONS(5468), 1, + anon_sym_LBRACE, + STATE(3540), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221192] = 3, - ACTIONS(6430), 1, - anon_sym_LBRACE, - STATE(3248), 1, - sym__block, + [221270] = 3, + ACTIONS(11960), 1, + anon_sym_DOT, + STATE(9241), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221203] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(2906), 1, - sym_function_value_parameters, + [221281] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221214] = 3, - ACTIONS(9827), 1, + ACTIONS(5217), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221290] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(1264), 1, + STATE(2831), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221225] = 3, - ACTIONS(10407), 1, - anon_sym_get, - ACTIONS(10409), 1, - anon_sym_set, + [221301] = 3, + ACTIONS(5804), 1, + anon_sym_LBRACE, + STATE(5163), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221236] = 3, - ACTIONS(9745), 1, + [221312] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(3564), 1, + STATE(4691), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221247] = 3, - ACTIONS(1904), 1, - anon_sym_LBRACE, - STATE(3076), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [221258] = 3, - ACTIONS(9745), 1, + [221323] = 3, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(3563), 1, + STATE(8677), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221269] = 3, - ACTIONS(5598), 1, + [221334] = 3, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(4703), 1, - sym_class_body, + STATE(9546), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221280] = 3, - ACTIONS(1904), 1, - anon_sym_LBRACE, - STATE(3165), 1, - sym_lambda_literal, + [221345] = 3, + ACTIONS(11962), 1, + anon_sym_DOT, + STATE(9192), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221291] = 3, - ACTIONS(3212), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym__class_parameters, + [221356] = 3, + ACTIONS(10629), 1, + anon_sym_get, + ACTIONS(10631), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221302] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(5176), 1, - sym_lambda_literal, + [221367] = 3, + ACTIONS(11964), 1, + sym__automatic_semicolon, + STATE(5699), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221313] = 3, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4686), 1, - sym_function_value_parameters, + [221378] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221324] = 3, - ACTIONS(9827), 1, + ACTIONS(5079), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221387] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(1290), 1, + STATE(3279), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221335] = 3, - ACTIONS(9801), 1, + [221398] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(2897), 1, + STATE(4664), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221346] = 3, - ACTIONS(9720), 1, + [221409] = 3, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(4696), 1, + STATE(8325), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221357] = 3, - ACTIONS(9789), 1, + [221420] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(8349), 1, + STATE(3280), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221368] = 3, - ACTIONS(9745), 1, + [221431] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3561), 1, + STATE(2827), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221379] = 3, - ACTIONS(11926), 1, - anon_sym_DOT, - STATE(9232), 1, - aux_sym_user_type_repeat1, + [221442] = 3, + ACTIONS(11966), 1, + anon_sym_COLON, + ACTIONS(11968), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221390] = 3, - ACTIONS(10511), 1, + [221453] = 3, + ACTIONS(10573), 1, anon_sym_get, - ACTIONS(10513), 1, + ACTIONS(10575), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221401] = 3, - ACTIONS(8104), 1, + [221464] = 3, + ACTIONS(5834), 1, anon_sym_LBRACE, - STATE(4700), 1, - sym__block, + STATE(4024), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221412] = 3, - ACTIONS(11928), 1, + [221475] = 3, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(3291), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221486] = 3, + ACTIONS(11970), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(9237), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221423] = 3, - ACTIONS(7812), 1, + [221497] = 3, + ACTIONS(6520), 1, + anon_sym_LBRACE, + STATE(3537), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221508] = 3, + ACTIONS(7836), 1, anon_sym_RBRACE, - ACTIONS(11930), 1, + ACTIONS(11972), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221434] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3555), 1, - sym_function_value_parameters, + [221519] = 3, + ACTIONS(11974), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221445] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(838), 1, - sym_function_value_parameters, + [221530] = 3, + ACTIONS(1618), 1, + anon_sym_LBRACE, + STATE(3589), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221456] = 3, - ACTIONS(9827), 1, + [221541] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(826), 1, + STATE(3292), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221467] = 3, - ACTIONS(1586), 1, + [221552] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7810), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [221561] = 3, + ACTIONS(11976), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221572] = 3, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(3453), 1, - sym_lambda_literal, + STATE(5195), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221478] = 3, - ACTIONS(9720), 1, + [221583] = 3, + ACTIONS(5758), 1, anon_sym_LPAREN, - STATE(4697), 1, - sym_function_value_parameters, + STATE(5154), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221489] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(841), 1, - sym_function_value_parameters, + [221594] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221500] = 3, - ACTIONS(9827), 1, + ACTIONS(5209), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221603] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(843), 1, + STATE(2911), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221511] = 2, + [221614] = 3, + ACTIONS(10559), 1, + anon_sym_get, + ACTIONS(10561), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11932), 2, - sym__automatic_semicolon, - anon_sym_LBRACE, - [221520] = 3, - ACTIONS(10731), 1, + [221625] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(9241), 1, - sym_value_arguments, + STATE(2898), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221531] = 2, + [221636] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5105), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221540] = 2, + ACTIONS(11659), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221645] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 2, + ACTIONS(4230), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221549] = 3, - ACTIONS(1836), 1, - anon_sym_LBRACE, - STATE(4724), 1, - sym_lambda_literal, + [221654] = 3, + ACTIONS(11978), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221560] = 2, + [221665] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3115), 2, + ACTIONS(4493), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221569] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1291), 1, - sym_function_value_parameters, + [221674] = 3, + ACTIONS(11980), 1, + sym__automatic_semicolon, + STATE(3469), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221580] = 2, + [221685] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4465), 2, + ACTIONS(5169), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221589] = 3, - ACTIONS(10539), 1, - anon_sym_get, - ACTIONS(10541), 1, - anon_sym_set, + [221694] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221600] = 3, - ACTIONS(9801), 1, + ACTIONS(5173), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221703] = 3, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(2892), 1, + STATE(8331), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221611] = 3, - ACTIONS(8640), 1, - anon_sym_LPAREN, - STATE(8698), 1, - sym__class_parameters, + [221714] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221622] = 3, - ACTIONS(9720), 1, + ACTIONS(5165), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221723] = 3, + ACTIONS(11982), 1, + anon_sym_DOT, + STATE(9250), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221734] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4651), 1, + STATE(2855), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221633] = 3, - ACTIONS(5580), 1, - anon_sym_LPAREN, - STATE(4664), 1, - sym__class_parameters, + [221745] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221644] = 3, - ACTIONS(11934), 1, - anon_sym_DOT, - STATE(9422), 1, - aux_sym_user_type_repeat1, + ACTIONS(3272), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221754] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221655] = 3, - ACTIONS(9729), 1, + ACTIONS(4655), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221763] = 3, + ACTIONS(5498), 1, anon_sym_LPAREN, - STATE(4145), 1, - sym_function_value_parameters, + STATE(4642), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221774] = 3, + ACTIONS(10671), 1, + anon_sym_get, + ACTIONS(10673), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221666] = 2, + [221785] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 2, + ACTIONS(5157), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221675] = 3, - ACTIONS(10655), 1, - anon_sym_get, - ACTIONS(10657), 1, - anon_sym_set, + [221794] = 3, + ACTIONS(1658), 1, + anon_sym_LBRACE, + STATE(1036), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221686] = 2, + [221805] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4964), 2, + ACTIONS(5015), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221695] = 3, - ACTIONS(9789), 1, + [221814] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(8353), 1, + STATE(3637), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221706] = 3, - ACTIONS(11936), 1, - sym__automatic_semicolon, - STATE(9430), 1, - sym__semi, + [221825] = 3, + ACTIONS(11984), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221717] = 3, - ACTIONS(9765), 1, - anon_sym_LPAREN, - STATE(4661), 1, - sym_function_value_parameters, + [221836] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221728] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(2883), 1, - sym_function_value_parameters, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221845] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221739] = 2, + ACTIONS(5161), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221854] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11938), 2, - sym__import_list_delimiter, - anon_sym_import, - [221748] = 2, + ACTIONS(11986), 2, + sym__automatic_semicolon, + anon_sym_LBRACE, + [221863] = 3, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(9267), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11940), 2, + [221874] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11596), 2, anon_sym_COMMA, anon_sym_GT, - [221757] = 2, + [221883] = 3, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(4964), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221766] = 3, - ACTIONS(8513), 1, + [221894] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(8608), 1, - sym__class_parameters, + STATE(2920), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221777] = 3, - ACTIONS(9745), 1, + [221905] = 3, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(2771), 1, + STATE(5344), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221788] = 2, + [221916] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11403), 2, + ACTIONS(11581), 2, anon_sym_COMMA, anon_sym_RPAREN, - [221797] = 3, - ACTIONS(11942), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [221925] = 3, + ACTIONS(3212), 1, + anon_sym_LPAREN, + STATE(3050), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221808] = 3, - ACTIONS(9797), 1, + [221936] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(4904), 1, + STATE(830), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221819] = 3, - ACTIONS(10613), 1, - anon_sym_get, - ACTIONS(10615), 1, - anon_sym_set, + [221947] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(847), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221830] = 2, + [221958] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5342), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3274), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221839] = 3, - ACTIONS(9745), 1, + [221969] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(2789), 1, + STATE(829), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221850] = 2, + [221980] = 3, + ACTIONS(9793), 1, + anon_sym_LPAREN, + STATE(4684), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221859] = 3, - ACTIONS(11944), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [221991] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5340), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221870] = 3, - ACTIONS(11946), 1, - sym__automatic_semicolon, - STATE(3515), 1, - sym__semi, + [222002] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221881] = 3, - ACTIONS(11948), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + ACTIONS(11568), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [222011] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221892] = 2, + ACTIONS(4196), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222020] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 2, + ACTIONS(5135), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221901] = 2, + [222029] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5155), 2, + ACTIONS(121), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221910] = 3, - ACTIONS(11950), 1, - anon_sym_DOT, - STATE(9277), 1, - aux_sym_user_type_repeat1, + [222038] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(2965), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221921] = 3, - ACTIONS(11952), 1, - anon_sym_DOT, - STATE(9269), 1, - aux_sym_user_type_repeat1, + [222049] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221932] = 3, - ACTIONS(10375), 1, - anon_sym_get, - ACTIONS(10377), 1, - anon_sym_set, + ACTIONS(5149), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222058] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5332), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221943] = 3, - ACTIONS(11954), 1, - anon_sym_DOT, - STATE(9286), 1, - aux_sym_user_type_repeat1, + [222069] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(2805), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221954] = 2, + [222080] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(2804), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11956), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [221963] = 3, - ACTIONS(11958), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222091] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(861), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221974] = 3, - ACTIONS(11960), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222102] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221985] = 3, - ACTIONS(11962), 1, - anon_sym_DOT, - STATE(9285), 1, - aux_sym_user_type_repeat1, + ACTIONS(5145), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222111] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221996] = 3, - ACTIONS(11964), 1, - anon_sym_DOT, - STATE(9295), 1, - aux_sym_user_type_repeat1, + ACTIONS(7167), 2, + anon_sym_AT, + anon_sym_val, + [222120] = 3, + ACTIONS(10545), 1, + anon_sym_get, + ACTIONS(10547), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222007] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8610), 1, - sym__block, + [222131] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(2793), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222018] = 3, - ACTIONS(11966), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222142] = 3, + ACTIONS(5820), 1, + anon_sym_LPAREN, + STATE(3755), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222029] = 2, + [222153] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(2802), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3290), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222038] = 3, - ACTIONS(11968), 1, - anon_sym_COLON, - ACTIONS(11970), 1, - anon_sym_RPAREN, + [222164] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(819), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222049] = 3, - ACTIONS(11972), 1, - anon_sym_DOT, - STATE(9290), 1, - aux_sym_user_type_repeat1, + [222175] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222060] = 2, + ACTIONS(4180), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222184] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5109), 2, + ACTIONS(4409), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222069] = 3, - ACTIONS(11974), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222193] = 3, + ACTIONS(10732), 1, + anon_sym_LBRACE, + STATE(8559), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222080] = 2, + [222204] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4139), 2, + ACTIONS(5131), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222089] = 2, + [222213] = 3, + ACTIONS(9736), 1, + anon_sym_LPAREN, + STATE(8329), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4357), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222098] = 3, - ACTIONS(7691), 1, - anon_sym_RBRACE, - ACTIONS(11976), 1, - anon_sym_SEMI, + [222224] = 3, + ACTIONS(9748), 1, + anon_sym_LPAREN, + STATE(821), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222109] = 3, - ACTIONS(9745), 1, + [222235] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(2798), 1, + STATE(813), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222120] = 3, - ACTIONS(11978), 1, - anon_sym_LBRACE, - STATE(3664), 1, - sym__block, + [222246] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222131] = 3, - ACTIONS(11978), 1, + ACTIONS(5107), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222255] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4531), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222264] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11493), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222273] = 3, + ACTIONS(1914), 1, anon_sym_LBRACE, - STATE(3672), 1, - sym__block, + STATE(3224), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222142] = 3, - ACTIONS(10627), 1, + [222284] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5139), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222293] = 3, + ACTIONS(10615), 1, anon_sym_get, - ACTIONS(10629), 1, + ACTIONS(10617), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222153] = 2, + [222304] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5151), 2, + ACTIONS(1736), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222162] = 3, - ACTIONS(9825), 1, + [222313] = 3, + ACTIONS(9748), 1, anon_sym_LPAREN, - STATE(8328), 1, + STATE(824), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222173] = 3, - ACTIONS(9789), 1, + [222324] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(8344), 1, + STATE(2872), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222184] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4649), 1, - sym_function_value_parameters, + [222335] = 3, + ACTIONS(7796), 1, + anon_sym_RBRACE, + ACTIONS(11990), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222195] = 3, - ACTIONS(11980), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222346] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222206] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(2805), 1, - sym_function_value_parameters, + ACTIONS(5099), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222355] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222217] = 3, - ACTIONS(6511), 1, + ACTIONS(4305), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222364] = 3, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(3440), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222228] = 3, - ACTIONS(10451), 1, - anon_sym_get, - ACTIONS(10453), 1, - anon_sym_set, + STATE(1022), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222239] = 2, + [222375] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(5045), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222248] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1227), 1, - sym_function_value_parameters, + [222384] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222259] = 3, - ACTIONS(9827), 1, + ACTIONS(11992), 2, + anon_sym_COMMA, + anon_sym_GT, + [222393] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(1232), 1, + STATE(4675), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222270] = 3, - ACTIONS(9827), 1, + [222404] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(1235), 1, + STATE(3371), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222281] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(1207), 1, - sym_function_value_parameters, + [222415] = 3, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4909), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222292] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3323), 1, - sym_function_value_parameters, + [222426] = 3, + ACTIONS(10337), 1, + anon_sym_get, + ACTIONS(10339), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222303] = 3, - ACTIONS(11982), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222437] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222314] = 3, - ACTIONS(9745), 1, + ACTIONS(4509), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222446] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3274), 1, + STATE(4103), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222325] = 3, - ACTIONS(11984), 1, - anon_sym_DOT, - STATE(9317), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222336] = 3, - ACTIONS(9827), 1, + [222457] = 3, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(814), 1, + STATE(4632), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222347] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3273), 1, - sym_function_value_parameters, + [222468] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222358] = 3, - ACTIONS(10224), 1, - anon_sym_get, - ACTIONS(10226), 1, - anon_sym_set, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222477] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5217), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222369] = 3, - ACTIONS(11986), 1, + [222488] = 3, + ACTIONS(11994), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(9334), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222380] = 3, - ACTIONS(9745), 1, - anon_sym_LPAREN, - STATE(3322), 1, - sym_function_value_parameters, + [222499] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222391] = 3, - ACTIONS(11988), 1, + ACTIONS(7197), 2, + anon_sym_AT, + anon_sym_val, + [222508] = 3, + ACTIONS(11996), 1, anon_sym_DOT, - STATE(9323), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222402] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(3318), 1, - sym_function_value_parameters, + [222519] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222413] = 3, - ACTIONS(11990), 1, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222528] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1824), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222537] = 3, + ACTIONS(11998), 1, anon_sym_DOT, - STATE(9307), 1, + STATE(9346), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222424] = 3, - ACTIONS(9801), 1, + [222548] = 3, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(4671), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222435] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8484), 1, - sym__block, + [222559] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222446] = 3, - ACTIONS(9789), 1, - anon_sym_LPAREN, - STATE(8339), 1, - sym_function_value_parameters, + ACTIONS(7203), 2, + anon_sym_AT, + anon_sym_val, + [222568] = 3, + ACTIONS(12000), 1, + sym__automatic_semicolon, + STATE(3455), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222457] = 3, - ACTIONS(9801), 1, - anon_sym_LPAREN, - STATE(3316), 1, - sym_function_value_parameters, + [222579] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222468] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(815), 1, - sym_function_value_parameters, + ACTIONS(4253), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222588] = 3, + ACTIONS(4137), 1, + anon_sym_LBRACE, + STATE(1019), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222479] = 3, - ACTIONS(11992), 1, - anon_sym_DOT, - STATE(9275), 1, - aux_sym_user_type_repeat1, + [222599] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222490] = 3, - ACTIONS(11994), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + ACTIONS(7183), 2, + anon_sym_AT, + anon_sym_val, + [222608] = 3, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(4922), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222501] = 3, - ACTIONS(9801), 1, + [222619] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3314), 1, + STATE(3427), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222512] = 3, - ACTIONS(11996), 1, + [222630] = 3, + ACTIONS(12002), 1, anon_sym_DOT, - STATE(9350), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222523] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8510), 1, - sym__block, + [222641] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222534] = 3, - ACTIONS(9797), 1, + ACTIONS(4637), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222650] = 3, + ACTIONS(3212), 1, anon_sym_LPAREN, - STATE(4957), 1, - sym_function_value_parameters, + STATE(3019), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222545] = 3, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4788), 1, - sym_function_value_parameters, + [222661] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222556] = 3, - ACTIONS(9827), 1, + ACTIONS(3424), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222670] = 3, + ACTIONS(5806), 1, anon_sym_LPAREN, - STATE(818), 1, - sym_function_value_parameters, + STATE(5045), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222567] = 3, - ACTIONS(8104), 1, + [222681] = 3, + ACTIONS(1658), 1, anon_sym_LBRACE, - STATE(4598), 1, - sym__block, + STATE(1116), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222578] = 3, - ACTIONS(8104), 1, - anon_sym_LBRACE, - STATE(4596), 1, - sym__block, + [222692] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222589] = 3, - ACTIONS(11998), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + ACTIONS(4784), 2, + anon_sym_AT, + anon_sym_val, + [222701] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222600] = 3, - ACTIONS(9827), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_function_value_parameters, + ACTIONS(11630), 2, + sym__automatic_semicolon, + anon_sym_DOT, + [222710] = 3, + ACTIONS(12004), 1, + sym__automatic_semicolon, + STATE(9463), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222611] = 3, - ACTIONS(9729), 1, + [222721] = 3, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(4084), 1, + STATE(8352), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222622] = 3, - ACTIONS(5822), 1, - anon_sym_LPAREN, - STATE(3747), 1, - sym__class_parameters, + [222732] = 3, + ACTIONS(12006), 1, + anon_sym_DOT, + STATE(9357), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222633] = 3, - ACTIONS(12000), 1, + [222743] = 3, + ACTIONS(12008), 1, anon_sym_DOT, - STATE(9364), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222644] = 3, - ACTIONS(9729), 1, - anon_sym_LPAREN, - STATE(4078), 1, - sym_function_value_parameters, + [222754] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222655] = 3, - ACTIONS(5788), 1, - anon_sym_LBRACE, - STATE(5094), 1, - sym_class_body, + ACTIONS(12010), 2, + sym__import_list_delimiter, + anon_sym_import, + [222763] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222666] = 3, - ACTIONS(12002), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + ACTIONS(5091), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222772] = 3, + ACTIONS(7685), 1, + anon_sym_RBRACE, + ACTIONS(12012), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222677] = 3, - ACTIONS(12004), 1, + [222783] = 3, + ACTIONS(12014), 1, anon_sym_DOT, - STATE(9352), 1, + STATE(9362), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222688] = 3, - ACTIONS(12006), 1, + [222794] = 3, + ACTIONS(12016), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222699] = 3, - ACTIONS(9825), 1, + [222805] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5303), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222816] = 3, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(8699), 1, + STATE(5313), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222710] = 2, + [222827] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5147), 2, + ACTIONS(4319), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222719] = 3, - ACTIONS(10691), 1, + [222836] = 3, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(9590), 1, + STATE(3109), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222730] = 3, - ACTIONS(12008), 1, - sym__automatic_semicolon, - STATE(5698), 1, - sym__semi, + [222847] = 3, + ACTIONS(10427), 1, + anon_sym_get, + ACTIONS(10429), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222741] = 3, - ACTIONS(9797), 1, + [222858] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4954), 1, + STATE(3461), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222752] = 2, + [222869] = 3, + ACTIONS(9722), 1, + anon_sym_LPAREN, + STATE(5315), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222761] = 2, + [222880] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5207), 2, + ACTIONS(5103), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222770] = 3, - ACTIONS(6430), 1, - anon_sym_LBRACE, - STATE(2934), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222781] = 3, - ACTIONS(9797), 1, + [222889] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4535), 1, + STATE(3483), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222792] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11466), 2, - anon_sym_COMMA, - anon_sym_GT, - [222801] = 3, - ACTIONS(6430), 1, - anon_sym_LBRACE, - STATE(2935), 1, - sym__block, + [222900] = 3, + ACTIONS(8508), 1, + anon_sym_LPAREN, + STATE(8544), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222812] = 3, - ACTIONS(12010), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [222911] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222823] = 3, - ACTIONS(9729), 1, + ACTIONS(4387), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222920] = 3, + ACTIONS(9722), 1, anon_sym_LPAREN, - STATE(4076), 1, + STATE(5312), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222834] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8618), 1, - sym__block, + [222931] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222845] = 3, - ACTIONS(9825), 1, + ACTIONS(4796), 2, + anon_sym_AT, + anon_sym_val, + [222940] = 3, + ACTIONS(9793), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(4644), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222856] = 3, - ACTIONS(10553), 1, + [222951] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4860), 2, + anon_sym_AT, + anon_sym_val, + [222960] = 3, + ACTIONS(10587), 1, anon_sym_get, - ACTIONS(10555), 1, + ACTIONS(10589), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222867] = 3, - ACTIONS(9729), 1, + [222971] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4074), 1, + STATE(4049), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222878] = 2, + [222982] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222887] = 2, + ACTIONS(4888), 2, + anon_sym_AT, + anon_sym_val, + [222991] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11479), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [222896] = 3, - ACTIONS(12012), 1, - anon_sym_COLON, - ACTIONS(12014), 1, - anon_sym_RPAREN, + ACTIONS(3296), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223000] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222907] = 3, - ACTIONS(12016), 1, - anon_sym_LBRACE, - STATE(3104), 1, - sym__block, + ACTIONS(12018), 2, + anon_sym_COMMA, + anon_sym_GT, + [223009] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222918] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4642), 1, - sym_function_value_parameters, + ACTIONS(11243), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223018] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222929] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4647), 1, - sym_function_value_parameters, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223027] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222940] = 3, - ACTIONS(10597), 1, - anon_sym_get, - ACTIONS(10599), 1, - anon_sym_set, + ACTIONS(11890), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223036] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222951] = 3, - ACTIONS(9825), 1, + ACTIONS(1804), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223045] = 3, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(8664), 1, + STATE(8350), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222962] = 3, - ACTIONS(12018), 1, - anon_sym_DOT, - STATE(9343), 1, - aux_sym_user_type_repeat1, + [223056] = 3, + ACTIONS(10711), 1, + anon_sym_AMP, + ACTIONS(12020), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222973] = 3, - ACTIONS(12016), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym__block, + [223067] = 3, + ACTIONS(10471), 1, + anon_sym_get, + ACTIONS(10473), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222984] = 3, - ACTIONS(9720), 1, + [223078] = 3, + ACTIONS(9766), 1, anon_sym_LPAREN, - STATE(4725), 1, + STATE(5293), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222995] = 3, - ACTIONS(9797), 1, - anon_sym_LPAREN, - STATE(4667), 1, - sym_function_value_parameters, + [223089] = 3, + ACTIONS(12022), 1, + anon_sym_COLON, + ACTIONS(12024), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223006] = 2, + [223100] = 3, + ACTIONS(8585), 1, + anon_sym_LPAREN, + STATE(8685), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7801), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [223015] = 3, - ACTIONS(8223), 1, + [223111] = 3, + ACTIONS(12026), 1, anon_sym_LBRACE, - STATE(5205), 1, + STATE(3250), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223026] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11488), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [223035] = 3, - ACTIONS(9765), 1, + [223122] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(4640), 1, + STATE(4109), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223046] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(12020), 2, - anon_sym_COMMA, - anon_sym_GT, - [223055] = 2, + [223133] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5079), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223064] = 2, + ACTIONS(7207), 2, + anon_sym_AT, + anon_sym_val, + [223142] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5211), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223073] = 3, - ACTIONS(10567), 1, - anon_sym_get, - ACTIONS(10569), 1, - anon_sym_set, + ACTIONS(11378), 2, + anon_sym_COMMA, + anon_sym_GT, + [223151] = 3, + ACTIONS(1836), 1, + anon_sym_LBRACE, + STATE(4768), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223084] = 3, - ACTIONS(12022), 1, - anon_sym_DOT, - STATE(9394), 1, - aux_sym_user_type_repeat1, + [223162] = 3, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(4915), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223095] = 3, - ACTIONS(7699), 1, - anon_sym_RBRACE, - ACTIONS(12024), 1, - anon_sym_SEMI, + [223173] = 3, + ACTIONS(5820), 1, + anon_sym_LPAREN, + STATE(3712), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223106] = 3, - ACTIONS(10423), 1, - anon_sym_get, - ACTIONS(10425), 1, - anon_sym_set, + [223184] = 3, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(5292), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223117] = 2, + [223195] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 2, + ACTIONS(4986), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223126] = 3, + [223204] = 3, ACTIONS(12026), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + anon_sym_LBRACE, + STATE(3247), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223137] = 3, - ACTIONS(9729), 1, - anon_sym_LPAREN, - STATE(3358), 1, - sym_function_value_parameters, + [223215] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223148] = 3, - ACTIONS(12028), 1, - anon_sym_DOT, - STATE(9334), 1, - aux_sym_user_type_repeat1, + ACTIONS(4896), 2, + anon_sym_AT, + anon_sym_val, + [223224] = 3, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(5278), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223159] = 3, - ACTIONS(7822), 1, - anon_sym_RBRACE, - ACTIONS(12030), 1, - anon_sym_SEMI, + [223235] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223170] = 3, - ACTIONS(1658), 1, + ACTIONS(1792), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223244] = 3, + ACTIONS(8112), 1, anon_sym_LBRACE, - STATE(1077), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223181] = 3, - ACTIONS(12032), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + STATE(4700), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223192] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(5245), 1, - sym_lambda_literal, + [223255] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(3657), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223203] = 3, - ACTIONS(10483), 1, + [223266] = 3, + ACTIONS(10685), 1, anon_sym_get, - ACTIONS(10485), 1, + ACTIONS(10687), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223214] = 2, + [223277] = 3, + ACTIONS(8585), 1, + anon_sym_LPAREN, + STATE(8764), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223223] = 3, - ACTIONS(10361), 1, - anon_sym_get, - ACTIONS(10363), 1, - anon_sym_set, + [223288] = 3, + ACTIONS(9766), 1, + anon_sym_LPAREN, + STATE(5308), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223234] = 2, + [223299] = 3, + ACTIONS(10531), 1, + anon_sym_get, + ACTIONS(10533), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5123), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223243] = 2, + [223310] = 3, + ACTIONS(9736), 1, + anon_sym_LPAREN, + STATE(8744), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223252] = 3, - ACTIONS(10641), 1, - anon_sym_get, - ACTIONS(10643), 1, - anon_sym_set, + [223321] = 3, + ACTIONS(9858), 1, + anon_sym_LPAREN, + STATE(8343), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223263] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(3983), 1, - sym_lambda_literal, + [223332] = 3, + ACTIONS(4281), 1, + anon_sym_while, + ACTIONS(12028), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223274] = 3, - ACTIONS(5760), 1, + [223343] = 3, + ACTIONS(4295), 1, + anon_sym_while, + ACTIONS(12030), 1, anon_sym_LPAREN, - STATE(5242), 1, - sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223285] = 3, - ACTIONS(12034), 1, + [223354] = 3, + ACTIONS(12032), 1, anon_sym_DOT, - STATE(9399), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223296] = 3, - ACTIONS(1586), 1, - anon_sym_LBRACE, - STATE(3437), 1, - sym_lambda_literal, + [223365] = 3, + ACTIONS(4186), 1, + anon_sym_in, + ACTIONS(12034), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223307] = 3, - ACTIONS(4145), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym__block, + [223376] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223318] = 3, + ACTIONS(11333), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223385] = 3, ACTIONS(12036), 1, - sym__automatic_semicolon, - STATE(3405), 1, - sym__semi, + anon_sym_DOT, + STATE(9421), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223329] = 3, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4869), 1, - sym_function_value_parameters, + [223396] = 3, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4721), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223340] = 3, + [223407] = 3, ACTIONS(12038), 1, anon_sym_DOT, - STATE(9416), 1, + STATE(8053), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223351] = 3, - ACTIONS(10525), 1, - anon_sym_get, - ACTIONS(10527), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223362] = 3, + [223418] = 3, + ACTIONS(7792), 1, + anon_sym_RBRACE, ACTIONS(12040), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223373] = 3, - ACTIONS(9765), 1, + [223429] = 3, + ACTIONS(9736), 1, anon_sym_LPAREN, - STATE(4695), 1, + STATE(8332), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223384] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4218), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223393] = 3, - ACTIONS(12042), 1, - anon_sym_DOT, - STATE(9431), 1, - aux_sym_user_type_repeat1, + [223440] = 3, + ACTIONS(3240), 1, + anon_sym_LBRACE, + STATE(3101), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223404] = 3, - ACTIONS(9825), 1, + [223451] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(8326), 1, + STATE(3610), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223415] = 3, - ACTIONS(5772), 1, - anon_sym_LPAREN, - STATE(4982), 1, - sym__class_parameters, + [223462] = 3, + ACTIONS(1646), 1, + anon_sym_LBRACE, + STATE(3956), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223426] = 3, - ACTIONS(12044), 1, - anon_sym_DOT, - STATE(8038), 1, - aux_sym_user_type_repeat1, + [223473] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223437] = 3, - ACTIONS(1658), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_lambda_literal, + ACTIONS(4243), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223482] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(4058), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223448] = 2, + [223493] = 3, + ACTIONS(10601), 1, + anon_sym_get, + ACTIONS(10603), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5119), 2, - sym__automatic_semicolon, + [223504] = 3, + ACTIONS(7812), 1, anon_sym_RBRACE, - [223457] = 2, + ACTIONS(12042), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11659), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [223466] = 3, - ACTIONS(10717), 1, - anon_sym_LBRACE, - STATE(8542), 1, - sym__block, + [223515] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223477] = 3, - ACTIONS(5772), 1, + ACTIONS(4167), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223524] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(5051), 1, - sym__class_parameters, + STATE(4146), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223488] = 3, - ACTIONS(5760), 1, - anon_sym_LPAREN, - STATE(5232), 1, - sym__class_parameters, + [223535] = 3, + ACTIONS(12044), 1, + anon_sym_DOT, + STATE(9440), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223499] = 2, + [223546] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4149), 2, + ACTIONS(5111), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223508] = 2, + [223555] = 3, + ACTIONS(7675), 1, + anon_sym_RBRACE, + ACTIONS(12046), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12046), 2, - sym__import_list_delimiter, - anon_sym_import, - [223517] = 3, + [223566] = 3, ACTIONS(12048), 1, anon_sym_DOT, - STATE(8038), 1, + STATE(9416), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223528] = 2, + [223577] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223537] = 3, - ACTIONS(9720), 1, + ACTIONS(12050), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [223586] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(5302), 1, + STATE(3462), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223548] = 3, - ACTIONS(7687), 1, - anon_sym_RBRACE, - ACTIONS(12050), 1, - anon_sym_SEMI, + [223597] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223559] = 3, - ACTIONS(9825), 1, - anon_sym_LPAREN, - STATE(8329), 1, - sym_function_value_parameters, + ACTIONS(5127), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223606] = 3, + ACTIONS(12052), 1, + anon_sym_DOT, + STATE(8053), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223570] = 3, - ACTIONS(5822), 1, + [223617] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(3714), 1, - sym__class_parameters, + STATE(3504), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223581] = 3, - ACTIONS(9729), 1, + [223628] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(4129), 1, + STATE(3611), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223592] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11540), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [223601] = 3, - ACTIONS(9720), 1, + [223639] = 3, + ACTIONS(9777), 1, anon_sym_LPAREN, - STATE(5303), 1, + STATE(4082), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223612] = 2, + [223650] = 3, + ACTIONS(5073), 1, + anon_sym_while, + ACTIONS(12054), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5221), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223621] = 3, - ACTIONS(1646), 1, + [223661] = 3, + ACTIONS(1836), 1, anon_sym_LBRACE, - STATE(3989), 1, + STATE(4848), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223632] = 3, - ACTIONS(3210), 1, - anon_sym_LBRACE, - STATE(1125), 1, - sym_class_body, + [223672] = 3, + ACTIONS(10399), 1, + anon_sym_get, + ACTIONS(10401), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223643] = 2, + [223683] = 3, + ACTIONS(5049), 1, + anon_sym_while, + ACTIONS(12056), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223652] = 3, - ACTIONS(10669), 1, - anon_sym_get, - ACTIONS(10671), 1, - anon_sym_set, + [223694] = 3, + ACTIONS(5498), 1, + anon_sym_LPAREN, + STATE(4640), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223663] = 2, + [223705] = 3, + ACTIONS(9795), 1, + anon_sym_LPAREN, + STATE(3547), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4329), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223672] = 3, - ACTIONS(9720), 1, + [223716] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(5306), 1, + STATE(4106), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223683] = 3, - ACTIONS(10437), 1, - anon_sym_get, - ACTIONS(10439), 1, - anon_sym_set, + [223727] = 3, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3322), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223694] = 3, - ACTIONS(10469), 1, + [223738] = 3, + ACTIONS(10353), 1, anon_sym_get, - ACTIONS(10471), 1, + ACTIONS(10355), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223705] = 3, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(5310), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223716] = 3, - ACTIONS(6714), 1, + [223749] = 3, + ACTIONS(10732), 1, anon_sym_LBRACE, - STATE(3862), 1, + STATE(8563), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223727] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11589), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [223736] = 3, - ACTIONS(5836), 1, + [223760] = 3, + ACTIONS(12058), 1, anon_sym_LBRACE, - STATE(3841), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223747] = 2, + STATE(907), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4361), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223756] = 2, + [223771] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12052), 2, + ACTIONS(12060), 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, - [223776] = 3, - ACTIONS(8513), 1, + [223780] = 3, + ACTIONS(9795), 1, anon_sym_LPAREN, - STATE(8497), 1, - sym__class_parameters, + STATE(3554), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223787] = 2, + [223791] = 3, + ACTIONS(9777), 1, + anon_sym_LPAREN, + STATE(4046), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11594), 2, - anon_sym_COMMA, - anon_sym_GT, - [223796] = 2, + [223802] = 3, + ACTIONS(1914), 1, + anon_sym_LBRACE, + STATE(3066), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11238), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223805] = 3, - ACTIONS(9720), 1, - anon_sym_LPAREN, - STATE(4814), 1, - sym_function_value_parameters, + [223813] = 3, + ACTIONS(10515), 1, + anon_sym_get, + ACTIONS(10517), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223816] = 2, + [223824] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, + ACTIONS(5119), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223825] = 2, + [223833] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3282), 2, + ACTIONS(4381), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223834] = 2, - ACTIONS(12056), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, [223842] = 2, - ACTIONS(1624), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223850] = 2, - ACTIONS(4149), 1, - anon_sym_while, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223851] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223858] = 2, - ACTIONS(12058), 1, - anon_sym_RBRACE, + ACTIONS(12062), 2, + sym__import_list_delimiter, + anon_sym_import, + [223860] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223866] = 2, - ACTIONS(12060), 1, + ACTIONS(5057), 2, + sym__automatic_semicolon, anon_sym_RBRACE, + [223869] = 3, + ACTIONS(12058), 1, + anon_sym_LBRACE, + STATE(906), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223874] = 2, - ACTIONS(12062), 1, - anon_sym_AMP, + [223880] = 3, + ACTIONS(5470), 1, + anon_sym_LPAREN, + STATE(3302), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223882] = 2, + [223891] = 2, ACTIONS(12064), 1, - anon_sym_while, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223890] = 2, + [223899] = 2, ACTIONS(12066), 1, - anon_sym_GT, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223898] = 2, + [223907] = 2, ACTIONS(12068), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223906] = 2, - ACTIONS(5215), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223914] = 2, + [223915] = 2, ACTIONS(12070), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223922] = 2, + [223923] = 2, ACTIONS(12072), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223930] = 2, + [223931] = 2, ACTIONS(12074), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223938] = 2, + [223939] = 2, ACTIONS(12076), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223946] = 2, + [223947] = 2, ACTIONS(12078), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223954] = 2, - ACTIONS(12080), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223962] = 2, - ACTIONS(5211), 1, - anon_sym_while, + [223955] = 2, + ACTIONS(11543), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223970] = 2, - ACTIONS(11570), 1, - anon_sym_RPAREN, + [223963] = 2, + ACTIONS(12080), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223978] = 2, + [223971] = 2, ACTIONS(12082), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223986] = 2, - ACTIONS(11245), 1, - sym__automatic_semicolon, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223994] = 2, + [223979] = 2, ACTIONS(12084), 1, - anon_sym_while, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224002] = 2, + [223987] = 2, ACTIONS(12086), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224010] = 2, - ACTIONS(5207), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224018] = 2, + [223995] = 2, ACTIONS(12088), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224026] = 2, - ACTIONS(9898), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224034] = 2, + [224003] = 2, ACTIONS(12090), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224042] = 2, + [224011] = 2, ACTIONS(12092), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224050] = 2, - ACTIONS(11646), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224058] = 2, - ACTIONS(10693), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224066] = 2, - ACTIONS(1618), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224074] = 2, + [224019] = 2, ACTIONS(12094), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224082] = 2, + [224027] = 2, ACTIONS(12096), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224090] = 2, + [224035] = 2, ACTIONS(12098), 1, - anon_sym_DASH_GT, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224098] = 2, + [224043] = 2, ACTIONS(12100), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224106] = 2, - ACTIONS(11492), 1, + [224051] = 2, + ACTIONS(11572), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224114] = 2, + [224059] = 2, ACTIONS(12102), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224122] = 2, + [224067] = 2, ACTIONS(12104), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224130] = 2, + [224075] = 2, ACTIONS(12106), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224138] = 2, - ACTIONS(11544), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224146] = 2, - ACTIONS(3290), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224154] = 2, + [224083] = 2, ACTIONS(12108), 1, - anon_sym_class, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224162] = 2, + [224091] = 2, ACTIONS(12110), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224170] = 2, - ACTIONS(4214), 1, - anon_sym_DASH_GT, + [224099] = 2, + ACTIONS(1608), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224178] = 2, + [224107] = 2, ACTIONS(12112), 1, - sym__automatic_semicolon, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224186] = 2, + [224115] = 2, ACTIONS(12114), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224194] = 2, - ACTIONS(5221), 1, - anon_sym_while, + [224123] = 2, + ACTIONS(1630), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224202] = 2, + [224131] = 2, ACTIONS(12116), 1, - anon_sym_COLON, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224210] = 2, + [224139] = 2, ACTIONS(12118), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224218] = 2, + [224147] = 2, ACTIONS(12120), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224226] = 2, - ACTIONS(5193), 1, + [224155] = 2, + ACTIONS(3142), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224234] = 2, - ACTIONS(11654), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224242] = 2, - ACTIONS(10727), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224250] = 2, + [224163] = 2, ACTIONS(12122), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224258] = 2, - ACTIONS(4361), 1, - anon_sym_while, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224266] = 2, + [224171] = 2, ACTIONS(12124), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224274] = 2, + [224179] = 2, ACTIONS(12126), 1, - anon_sym_GT, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224282] = 2, - ACTIONS(4495), 1, - anon_sym_while, + [224187] = 2, + ACTIONS(10738), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224290] = 2, + [224195] = 2, ACTIONS(12128), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224298] = 2, + [224203] = 2, ACTIONS(12130), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224306] = 2, + [224211] = 2, ACTIONS(12132), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224314] = 2, - ACTIONS(1792), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224322] = 2, + [224219] = 2, ACTIONS(12134), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224330] = 2, + [224227] = 2, ACTIONS(12136), 1, - anon_sym_RBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224338] = 2, + [224235] = 2, ACTIONS(12138), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224346] = 2, + [224243] = 2, ACTIONS(12140), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224354] = 2, + [224251] = 2, ACTIONS(12142), 1, - anon_sym_file, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224259] = 2, + ACTIONS(10720), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224362] = 2, + [224267] = 2, ACTIONS(12144), 1, - anon_sym_EQ, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224275] = 2, + ACTIONS(1610), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224370] = 2, + [224283] = 2, ACTIONS(12146), 1, - anon_sym_constructor, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224291] = 2, + ACTIONS(3280), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224378] = 2, + [224299] = 2, ACTIONS(12148), 1, - anon_sym_RPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224386] = 2, + [224307] = 2, ACTIONS(12150), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224394] = 2, + [224315] = 2, ACTIONS(12152), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224402] = 2, + [224323] = 2, ACTIONS(12154), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224410] = 2, + [224331] = 2, ACTIONS(12156), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224418] = 2, + [224339] = 2, ACTIONS(12158), 1, - anon_sym_AMP, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224426] = 2, + [224347] = 2, ACTIONS(12160), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224434] = 2, + [224355] = 2, ACTIONS(12162), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224442] = 2, + [224363] = 2, ACTIONS(12164), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224450] = 2, - ACTIONS(1610), 1, - anon_sym_RBRACE, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224458] = 2, + [224371] = 2, ACTIONS(12166), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224466] = 2, + [224379] = 2, ACTIONS(12168), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224474] = 2, + [224387] = 2, ACTIONS(12170), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224482] = 2, - ACTIONS(4465), 1, - anon_sym_while, + [224395] = 2, + ACTIONS(12172), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224490] = 2, - ACTIONS(12172), 1, + [224403] = 2, + ACTIONS(10689), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224411] = 2, + ACTIONS(12174), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224498] = 2, - ACTIONS(4218), 1, - anon_sym_while, + [224419] = 2, + ACTIONS(12176), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224506] = 2, - ACTIONS(12174), 1, - anon_sym_DASH_GT, + [224427] = 2, + ACTIONS(11875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224514] = 2, - ACTIONS(12176), 1, + [224435] = 2, + ACTIONS(11339), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224522] = 2, + [224443] = 2, ACTIONS(12178), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224530] = 2, - ACTIONS(12180), 1, - anon_sym_DASH_GT, + [224451] = 2, + ACTIONS(10701), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224538] = 2, - ACTIONS(10752), 1, - anon_sym_AMP, + [224459] = 2, + ACTIONS(3340), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224546] = 2, + [224467] = 2, + ACTIONS(12180), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224475] = 2, ACTIONS(12182), 1, - anon_sym_LBRACE, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224554] = 2, + [224483] = 2, ACTIONS(12184), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224562] = 2, + [224491] = 2, ACTIONS(12186), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224570] = 2, + [224499] = 2, ACTIONS(12188), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224578] = 2, + [224507] = 2, ACTIONS(12190), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224586] = 2, - ACTIONS(12192), 1, - anon_sym_else, + [224515] = 2, + ACTIONS(4315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224594] = 2, - ACTIONS(12194), 1, - anon_sym_RPAREN, + [224523] = 2, + ACTIONS(12192), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224602] = 2, - ACTIONS(1616), 1, - anon_sym_RBRACE, + [224531] = 2, + ACTIONS(12194), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224610] = 2, + [224539] = 2, ACTIONS(12196), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224618] = 2, + [224547] = 2, ACTIONS(12198), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224626] = 2, + [224555] = 2, ACTIONS(12200), 1, - anon_sym_AMP, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224634] = 2, + [224563] = 2, ACTIONS(12202), 1, - anon_sym_else, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224642] = 2, + [224571] = 2, ACTIONS(12204), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224650] = 2, - ACTIONS(12206), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224658] = 2, - ACTIONS(1804), 1, - anon_sym_while, + [224579] = 2, + ACTIONS(12206), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224666] = 2, + [224587] = 2, ACTIONS(12208), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224674] = 2, + [224595] = 2, ACTIONS(12210), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224682] = 2, - ACTIONS(4920), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224690] = 2, - ACTIONS(11709), 1, - anon_sym_RPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224698] = 2, + [224603] = 2, ACTIONS(12212), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224706] = 2, - ACTIONS(4162), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224714] = 2, - ACTIONS(1614), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224722] = 2, - ACTIONS(5155), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224730] = 2, + [224611] = 2, ACTIONS(12214), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224738] = 2, - ACTIONS(5151), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224746] = 2, + [224619] = 2, ACTIONS(12216), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224754] = 2, - ACTIONS(5177), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224762] = 2, - ACTIONS(5147), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224770] = 2, - ACTIONS(10738), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224778] = 2, + [224627] = 2, ACTIONS(12218), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224786] = 2, + [224635] = 2, ACTIONS(12220), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224794] = 2, + [224643] = 2, ACTIONS(12222), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224802] = 2, + [224651] = 2, ACTIONS(12224), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224810] = 2, + [224659] = 2, ACTIONS(12226), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224818] = 2, - ACTIONS(4323), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224826] = 2, - ACTIONS(5123), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224834] = 2, - ACTIONS(5119), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224842] = 2, - ACTIONS(4646), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224850] = 2, + [224667] = 2, ACTIONS(12228), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224858] = 2, + [224675] = 2, ACTIONS(12230), 1, - sym__automatic_semicolon, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224866] = 2, - ACTIONS(12232), 1, - anon_sym_COLON, + [224683] = 2, + ACTIONS(10699), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224874] = 2, - ACTIONS(11483), 1, - anon_sym_DASH_GT, + [224691] = 2, + ACTIONS(12232), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224882] = 2, + [224699] = 2, ACTIONS(12234), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224890] = 2, + [224707] = 2, ACTIONS(12236), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224898] = 2, - ACTIONS(5079), 1, - anon_sym_while, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224906] = 2, + [224715] = 2, ACTIONS(12238), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224914] = 2, + [224723] = 2, ACTIONS(12240), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224922] = 2, + [224731] = 2, ACTIONS(12242), 1, - anon_sym_object, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224930] = 2, - ACTIONS(1734), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224938] = 2, - ACTIONS(4185), 1, - anon_sym_while, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224946] = 2, + [224739] = 2, ACTIONS(12244), 1, - anon_sym_in, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224954] = 2, + [224747] = 2, ACTIONS(12246), 1, - anon_sym_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224962] = 2, + [224755] = 2, ACTIONS(12248), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224970] = 2, - ACTIONS(4776), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224978] = 2, + [224763] = 2, ACTIONS(12250), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224986] = 2, - ACTIONS(121), 1, - anon_sym_while, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224994] = 2, + [224771] = 2, ACTIONS(12252), 1, - anon_sym_RPAREN, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225002] = 2, + [224779] = 2, ACTIONS(12254), 1, - anon_sym_RBRACE, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225010] = 2, + [224787] = 2, ACTIONS(12256), 1, - anon_sym_class, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225018] = 2, + [224795] = 2, ACTIONS(12258), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225026] = 2, - ACTIONS(4469), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225034] = 2, + [224803] = 2, ACTIONS(12260), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225042] = 2, - ACTIONS(5173), 1, - anon_sym_while, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225050] = 2, - ACTIONS(4908), 1, - anon_sym_while, + [224811] = 2, + ACTIONS(11384), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225058] = 2, + [224819] = 2, ACTIONS(12262), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225066] = 2, - ACTIONS(4904), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225074] = 2, - ACTIONS(4654), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225082] = 2, + [224827] = 2, ACTIONS(12264), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225090] = 2, - ACTIONS(12266), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225098] = 2, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225106] = 2, - ACTIONS(4297), 1, - anon_sym_while, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225114] = 2, - ACTIONS(4900), 1, - anon_sym_while, + [224835] = 2, + ACTIONS(1419), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225122] = 2, - ACTIONS(4357), 1, + [224843] = 2, + ACTIONS(12266), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225130] = 2, + [224851] = 2, ACTIONS(12268), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225138] = 2, - ACTIONS(5109), 1, - anon_sym_while, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225146] = 2, + [224859] = 2, ACTIONS(12270), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225154] = 2, - ACTIONS(4483), 1, + [224867] = 2, + ACTIONS(12272), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225162] = 2, - ACTIONS(11461), 1, - anon_sym_RPAREN, + [224875] = 2, + ACTIONS(11259), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225170] = 2, - ACTIONS(12272), 1, - anon_sym_class, + [224883] = 2, + ACTIONS(9781), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225178] = 2, + [224891] = 2, ACTIONS(12274), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225186] = 2, - ACTIONS(5101), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225194] = 2, + [224899] = 2, ACTIONS(12276), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225202] = 2, - ACTIONS(4968), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225210] = 2, - ACTIONS(1816), 1, - anon_sym_while, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225218] = 2, + [224907] = 2, ACTIONS(12278), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225226] = 2, + [224915] = 2, ACTIONS(12280), 1, - anon_sym_object, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225234] = 2, + [224923] = 2, ACTIONS(12282), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225242] = 2, + [224931] = 2, ACTIONS(12284), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225250] = 2, + [224939] = 2, ACTIONS(12286), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225258] = 2, + [224947] = 2, ACTIONS(12288), 1, - anon_sym_class, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225266] = 2, + [224955] = 2, ACTIONS(12290), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225274] = 2, + [224963] = 2, ACTIONS(12292), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225282] = 2, + [224971] = 2, ACTIONS(12294), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225290] = 2, - ACTIONS(12296), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225298] = 2, - ACTIONS(10695), 1, - anon_sym_AMP, + [224979] = 2, + ACTIONS(12296), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225306] = 2, + [224987] = 2, ACTIONS(12298), 1, - anon_sym_else, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225314] = 2, + [224995] = 2, ACTIONS(12300), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225322] = 2, - ACTIONS(12302), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225330] = 2, - ACTIONS(10707), 1, - anon_sym_AMP, + [225003] = 2, + ACTIONS(12302), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225338] = 2, - ACTIONS(4301), 1, - anon_sym_while, + [225011] = 2, + ACTIONS(11576), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225346] = 2, + [225019] = 2, ACTIONS(12304), 1, - anon_sym_EQ, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225354] = 2, + [225027] = 2, ACTIONS(12306), 1, - anon_sym_COLON, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225362] = 2, - ACTIONS(4569), 1, - anon_sym_while, + [225035] = 2, + ACTIONS(11636), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225370] = 2, + [225043] = 2, ACTIONS(12308), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225378] = 2, - ACTIONS(3422), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225386] = 2, - ACTIONS(4441), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225394] = 2, + [225051] = 2, ACTIONS(12310), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225402] = 2, - ACTIONS(5087), 1, - anon_sym_while, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225410] = 2, + [225059] = 2, ACTIONS(12312), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225418] = 2, - ACTIONS(5041), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225426] = 2, - ACTIONS(4976), 1, - anon_sym_while, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225434] = 2, + [225067] = 2, ACTIONS(12314), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225442] = 2, + [225075] = 2, ACTIONS(12316), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225450] = 2, - ACTIONS(5105), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225458] = 2, + [225083] = 2, ACTIONS(12318), 1, - anon_sym_RPAREN, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225466] = 2, + [225091] = 2, ACTIONS(12320), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225474] = 2, + [225099] = 2, ACTIONS(12322), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225482] = 2, + [225107] = 2, ACTIONS(12324), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225490] = 2, + [225115] = 2, ACTIONS(12326), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225498] = 2, + [225123] = 2, ACTIONS(12328), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225506] = 2, + [225131] = 2, ACTIONS(12330), 1, - anon_sym_LBRACE, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225514] = 2, + [225139] = 2, ACTIONS(12332), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225522] = 2, + [225147] = 2, ACTIONS(12334), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225530] = 2, - ACTIONS(12336), 1, - anon_sym_EQ, + [225155] = 2, + ACTIONS(10726), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225538] = 2, - ACTIONS(12338), 1, - anon_sym_constructor, + [225163] = 2, + ACTIONS(12336), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225546] = 2, - ACTIONS(9137), 1, - anon_sym_AMP, + [225171] = 2, + ACTIONS(12338), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225554] = 2, + [225179] = 2, ACTIONS(12340), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225562] = 2, + [225187] = 2, ACTIONS(12342), 1, - anon_sym_RPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225570] = 2, + [225195] = 2, ACTIONS(12344), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225578] = 2, - ACTIONS(9135), 1, - anon_sym_AMP, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225586] = 2, + [225203] = 2, ACTIONS(12346), 1, - anon_sym_RPAREN, + anon_sym_file, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225594] = 2, + [225211] = 2, ACTIONS(12348), 1, - anon_sym_EQ, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225602] = 2, + [225219] = 2, ACTIONS(12350), 1, - anon_sym_COLON, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225610] = 2, + [225227] = 2, ACTIONS(12352), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225618] = 2, + [225235] = 2, ACTIONS(12354), 1, - anon_sym_RPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225626] = 2, + [225243] = 2, ACTIONS(12356), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225634] = 2, + [225251] = 2, ACTIONS(12358), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225642] = 2, + [225259] = 2, ACTIONS(12360), 1, - anon_sym_class, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225650] = 2, + [225267] = 2, ACTIONS(12362), 1, - anon_sym_RPAREN, + anon_sym_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225275] = 2, + ACTIONS(5079), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225658] = 2, + [225283] = 2, ACTIONS(12364), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225666] = 2, + [225291] = 2, ACTIONS(12366), 1, - anon_sym_else, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225674] = 2, + [225299] = 2, ACTIONS(12368), 1, - anon_sym_DASH_GT, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225682] = 2, + [225307] = 2, ACTIONS(12370), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225690] = 2, + [225315] = 2, ACTIONS(12372), 1, - anon_sym_COLON, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225698] = 2, + [225323] = 2, ACTIONS(12374), 1, - anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225331] = 2, + ACTIONS(11322), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225706] = 2, + [225339] = 2, ACTIONS(12376), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225714] = 2, + [225347] = 2, ACTIONS(12378), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225722] = 2, + [225355] = 2, ACTIONS(12380), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225730] = 2, + [225363] = 2, ACTIONS(12382), 1, - anon_sym_constructor, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225738] = 2, + [225371] = 2, ACTIONS(12384), 1, - anon_sym_while, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225746] = 2, - ACTIONS(12386), 1, - anon_sym_else, + [225379] = 2, + ACTIONS(11454), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225754] = 2, - ACTIONS(12388), 1, - anon_sym_RPAREN, + [225387] = 2, + ACTIONS(12386), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225762] = 2, - ACTIONS(11508), 1, - anon_sym_AMP, + [225395] = 2, + ACTIONS(12388), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225770] = 2, + [225403] = 2, ACTIONS(12390), 1, - anon_sym_LPAREN, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225778] = 2, + [225411] = 2, ACTIONS(12392), 1, - anon_sym_class, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225786] = 2, + [225419] = 2, ACTIONS(12394), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225794] = 2, + [225427] = 2, ACTIONS(12396), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225802] = 2, + [225435] = 2, ACTIONS(12398), 1, - anon_sym_LPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225810] = 2, + [225443] = 2, ACTIONS(12400), 1, - anon_sym_RPAREN, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225818] = 2, + [225451] = 2, ACTIONS(12402), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225826] = 2, + [225459] = 2, ACTIONS(12404), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225834] = 2, + [225467] = 2, ACTIONS(12406), 1, - anon_sym_RPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225842] = 2, + [225475] = 2, ACTIONS(12408), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225850] = 2, + [225483] = 2, + ACTIONS(11525), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225491] = 2, + ACTIONS(11803), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225499] = 2, ACTIONS(12410), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225507] = 2, + ACTIONS(1425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225858] = 2, + [225515] = 2, ACTIONS(12412), 1, - anon_sym_constructor, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225866] = 2, + [225523] = 2, ACTIONS(12414), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225874] = 2, + [225531] = 2, ACTIONS(12416), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225882] = 2, + [225539] = 2, ACTIONS(12418), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225890] = 2, + [225547] = 2, ACTIONS(12420), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225898] = 2, + [225555] = 2, ACTIONS(12422), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225906] = 2, + [225563] = 2, ACTIONS(12424), 1, - anon_sym_EQ, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225914] = 2, + [225571] = 2, ACTIONS(12426), 1, - anon_sym_COLON, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225922] = 2, + [225579] = 2, ACTIONS(12428), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225930] = 2, + [225587] = 2, ACTIONS(12430), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225938] = 2, + [225595] = 2, ACTIONS(12432), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225946] = 2, + [225603] = 2, ACTIONS(12434), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225611] = 2, + ACTIONS(11519), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225954] = 2, + [225619] = 2, ACTIONS(12436), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225962] = 2, + [225627] = 2, ACTIONS(12438), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225970] = 2, + [225635] = 2, ACTIONS(12440), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225978] = 2, + [225643] = 2, ACTIONS(12442), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225986] = 2, - ACTIONS(12444), 1, + [225651] = 2, + ACTIONS(1429), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225994] = 2, - ACTIONS(12446), 1, - anon_sym_SQUOTE, + [225659] = 2, + ACTIONS(12444), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226002] = 2, - ACTIONS(12448), 1, + [225667] = 2, + ACTIONS(12446), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226010] = 2, - ACTIONS(12450), 1, - anon_sym_COLON, + [225675] = 2, + ACTIONS(12448), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226018] = 2, - ACTIONS(10709), 1, - anon_sym_AMP, + [225683] = 2, + ACTIONS(12450), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226026] = 2, + [225691] = 2, ACTIONS(12452), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226034] = 2, + [225699] = 2, ACTIONS(12454), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226042] = 2, + [225707] = 2, ACTIONS(12456), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226050] = 2, + [225715] = 2, ACTIONS(12458), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226058] = 2, + [225723] = 2, ACTIONS(12460), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226066] = 2, + [225731] = 2, ACTIONS(12462), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226074] = 2, + [225739] = 2, ACTIONS(12464), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225747] = 2, + ACTIONS(11585), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226082] = 2, + [225755] = 2, ACTIONS(12466), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226090] = 2, + [225763] = 2, ACTIONS(12468), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226098] = 2, + [225771] = 2, ACTIONS(12470), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226106] = 2, + [225779] = 2, ACTIONS(12472), 1, - anon_sym_class, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225787] = 2, + ACTIONS(11587), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226114] = 2, + [225795] = 2, ACTIONS(12474), 1, - anon_sym_else, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226122] = 2, + [225803] = 2, ACTIONS(12476), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226130] = 2, + [225811] = 2, ACTIONS(12478), 1, - anon_sym_LBRACE, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226138] = 2, + [225819] = 2, ACTIONS(12480), 1, - anon_sym_EQ, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226146] = 2, + [225827] = 2, ACTIONS(12482), 1, - anon_sym_constructor, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226154] = 2, - ACTIONS(1630), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226162] = 2, - ACTIONS(9145), 1, - anon_sym_AMP, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226170] = 2, + [225835] = 2, ACTIONS(12484), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226178] = 2, + [225843] = 2, ACTIONS(12486), 1, - anon_sym_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226186] = 2, + [225851] = 2, ACTIONS(12488), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226194] = 2, + [225859] = 2, ACTIONS(12490), 1, - anon_sym_constructor, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226202] = 2, + [225867] = 2, ACTIONS(12492), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226210] = 2, + [225875] = 2, ACTIONS(12494), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226218] = 2, + [225883] = 2, ACTIONS(12496), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226226] = 2, + [225891] = 2, ACTIONS(12498), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226234] = 2, + [225899] = 2, ACTIONS(12500), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226242] = 2, + [225907] = 2, ACTIONS(12502), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226250] = 2, + [225915] = 2, ACTIONS(12504), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226258] = 2, + [225923] = 2, ACTIONS(12506), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226266] = 2, + [225931] = 2, ACTIONS(12508), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226274] = 2, + [225939] = 2, ACTIONS(12510), 1, - anon_sym_EQ, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226282] = 2, - ACTIONS(9141), 1, + [225947] = 2, + ACTIONS(12512), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225955] = 2, + ACTIONS(12514), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226290] = 2, - ACTIONS(12512), 1, + [225963] = 2, + ACTIONS(11292), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226298] = 2, - ACTIONS(12514), 1, + [225971] = 2, + ACTIONS(12516), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226306] = 2, - ACTIONS(12516), 1, - anon_sym_COLON, + [225979] = 2, + ACTIONS(6702), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226314] = 2, + [225987] = 2, ACTIONS(12518), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226322] = 2, + [225995] = 2, ACTIONS(12520), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226330] = 2, + [226003] = 2, ACTIONS(12522), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226338] = 2, + [226011] = 2, ACTIONS(12524), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226346] = 2, + [226019] = 2, ACTIONS(12526), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226354] = 2, + [226027] = 2, ACTIONS(12528), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226362] = 2, + [226035] = 2, ACTIONS(12530), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226370] = 2, - ACTIONS(12532), 1, - anon_sym_EQ, + [226043] = 2, + ACTIONS(6634), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226378] = 2, - ACTIONS(12534), 1, + [226051] = 2, + ACTIONS(12532), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226386] = 2, - ACTIONS(12536), 1, - anon_sym_class, + [226059] = 2, + ACTIONS(12534), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226394] = 2, - ACTIONS(4139), 1, - anon_sym_while, + [226067] = 2, + ACTIONS(11302), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226402] = 2, - ACTIONS(1634), 1, - anon_sym_RBRACE, + [226075] = 2, + ACTIONS(12536), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226410] = 2, + [226083] = 2, ACTIONS(12538), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226418] = 2, + [226091] = 2, ACTIONS(12540), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226426] = 2, + [226099] = 2, ACTIONS(12542), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226434] = 2, + [226107] = 2, ACTIONS(12544), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226442] = 2, + [226115] = 2, ACTIONS(12546), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226450] = 2, + [226123] = 2, ACTIONS(12548), 1, - anon_sym_class, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226131] = 2, + ACTIONS(12550), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226458] = 2, - ACTIONS(12550), 1, + [226139] = 2, + ACTIONS(1590), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226466] = 2, + [226147] = 2, ACTIONS(12552), 1, - anon_sym_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226474] = 2, + [226155] = 2, ACTIONS(12554), 1, - anon_sym_constructor, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226482] = 2, + [226163] = 2, ACTIONS(12556), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226490] = 2, + [226171] = 2, ACTIONS(12558), 1, - anon_sym_AMP, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226498] = 2, + [226179] = 2, ACTIONS(12560), 1, - anon_sym_COLON, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226506] = 2, + [226187] = 2, ACTIONS(12562), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226514] = 2, + [226195] = 2, ACTIONS(12564), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226522] = 2, - ACTIONS(12566), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226530] = 2, - ACTIONS(12568), 1, + [226203] = 2, + ACTIONS(12566), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226538] = 2, - ACTIONS(11372), 1, + [226211] = 2, + ACTIONS(12568), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226546] = 2, + [226219] = 2, ACTIONS(12570), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226554] = 2, - ACTIONS(11368), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226562] = 2, + [226227] = 2, ACTIONS(12572), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226570] = 2, + [226235] = 2, ACTIONS(12574), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226578] = 2, + [226243] = 2, ACTIONS(12576), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226586] = 2, - ACTIONS(1798), 1, - anon_sym_while, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226594] = 2, + [226251] = 2, ACTIONS(12578), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226602] = 2, + [226259] = 2, ACTIONS(12580), 1, - anon_sym_EQ, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226610] = 2, + [226267] = 2, ACTIONS(12582), 1, - anon_sym_else, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226618] = 2, + [226275] = 2, ACTIONS(12584), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226626] = 2, - ACTIONS(4964), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226634] = 2, - ACTIONS(11319), 1, - sym__automatic_semicolon, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226642] = 2, + [226283] = 2, ACTIONS(12586), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226650] = 2, - ACTIONS(3282), 1, - anon_sym_while, + [226291] = 2, + ACTIONS(12588), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226658] = 2, - ACTIONS(12588), 1, - anon_sym_RPAREN, + [226299] = 2, + ACTIONS(8238), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226666] = 2, + [226307] = 2, ACTIONS(12590), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226674] = 2, + [226315] = 2, ACTIONS(12592), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226682] = 2, + [226323] = 2, ACTIONS(12594), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226690] = 2, - ACTIONS(4329), 1, - anon_sym_while, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226698] = 2, + [226331] = 2, ACTIONS(12596), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226706] = 2, - ACTIONS(5201), 1, - anon_sym_while, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226714] = 2, + [226339] = 2, ACTIONS(12598), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226722] = 2, + [226347] = 2, ACTIONS(12600), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226730] = 2, + [226355] = 2, ACTIONS(12602), 1, - anon_sym_RPAREN, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226363] = 2, + ACTIONS(8196), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226738] = 2, + [226371] = 2, ACTIONS(12604), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226746] = 2, + [226379] = 2, ACTIONS(12606), 1, - anon_sym_GT, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226754] = 2, + [226387] = 2, ACTIONS(12608), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226762] = 2, + [226395] = 2, ACTIONS(12610), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226770] = 2, - ACTIONS(11500), 1, - anon_sym_AMP, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226778] = 2, + [226403] = 2, ACTIONS(12612), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226786] = 2, + [226411] = 2, ACTIONS(12614), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226794] = 2, + [226419] = 2, ACTIONS(12616), 1, - anon_sym_RPAREN, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226802] = 2, + [226427] = 2, ACTIONS(12618), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226810] = 2, - ACTIONS(11822), 1, - sym__automatic_semicolon, + [226435] = 2, + ACTIONS(12620), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226818] = 2, - ACTIONS(11354), 1, + [226443] = 2, + ACTIONS(11606), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226826] = 2, - ACTIONS(12620), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226834] = 2, + [226451] = 2, ACTIONS(12622), 1, - aux_sym__uni_character_literal_token1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226842] = 2, + [226459] = 2, ACTIONS(12624), 1, - anon_sym_SQUOTE, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226850] = 2, + [226467] = 2, ACTIONS(12626), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226858] = 2, - ACTIONS(12628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226866] = 2, - ACTIONS(11800), 1, - anon_sym_RPAREN, + [226475] = 2, + ACTIONS(12628), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226874] = 2, + [226483] = 2, ACTIONS(12630), 1, - anon_sym_RPAREN, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226882] = 2, + [226491] = 2, ACTIONS(12632), 1, - anon_sym_RPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226890] = 2, + [226499] = 2, ACTIONS(12634), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226898] = 2, + [226507] = 2, ACTIONS(12636), 1, - anon_sym_AMP, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226906] = 2, + [226515] = 2, ACTIONS(12638), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226914] = 2, - ACTIONS(11794), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226922] = 2, + [226523] = 2, ACTIONS(12640), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226930] = 2, + [226531] = 2, ACTIONS(12642), 1, - anon_sym_while, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226938] = 2, + [226539] = 2, ACTIONS(12644), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226946] = 2, - ACTIONS(4800), 1, - anon_sym_while, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226954] = 2, + [226547] = 2, ACTIONS(12646), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226962] = 2, + [226555] = 2, ACTIONS(12648), 1, - anon_sym_class, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226970] = 2, + [226563] = 2, ACTIONS(12650), 1, - anon_sym_constructor, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226978] = 2, - ACTIONS(11315), 1, - sym__automatic_semicolon, + [226571] = 2, + ACTIONS(12652), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226986] = 2, - ACTIONS(1413), 1, - anon_sym_RBRACE, + [226579] = 2, + ACTIONS(11731), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226994] = 2, - ACTIONS(12652), 1, - anon_sym_RBRACE, + [226587] = 2, + ACTIONS(11733), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227002] = 2, + [226595] = 2, ACTIONS(12654), 1, - anon_sym_RPAREN, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227010] = 2, + [226603] = 2, ACTIONS(12656), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227018] = 2, - ACTIONS(11810), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227026] = 2, + [226611] = 2, ACTIONS(12658), 1, - anon_sym_COLON, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227034] = 2, + [226619] = 2, ACTIONS(12660), 1, - anon_sym_AMP, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227042] = 2, + [226627] = 2, ACTIONS(12662), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227050] = 2, - ACTIONS(4852), 1, - anon_sym_while, + [226635] = 2, + ACTIONS(1421), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227058] = 2, + [226643] = 2, ACTIONS(12664), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227066] = 2, + [226651] = 2, ACTIONS(12666), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227074] = 2, + [226659] = 2, ACTIONS(12668), 1, - anon_sym_RBRACE, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227082] = 2, + [226667] = 2, ACTIONS(12670), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227090] = 2, + [226675] = 2, ACTIONS(12672), 1, - anon_sym_AMP, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227098] = 2, - ACTIONS(3346), 1, - anon_sym_while, + [226683] = 2, + ACTIONS(12674), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227106] = 2, - ACTIONS(12674), 1, - anon_sym_RPAREN, + [226691] = 2, + ACTIONS(9137), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227114] = 2, - ACTIONS(12676), 1, - anon_sym_RPAREN, + [226699] = 2, + ACTIONS(10711), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227122] = 2, - ACTIONS(11830), 1, - sym__automatic_semicolon, + [226707] = 2, + ACTIONS(12676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227130] = 2, + [226715] = 2, ACTIONS(12678), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227138] = 2, + [226723] = 2, ACTIONS(12680), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227146] = 2, + [226731] = 2, ACTIONS(12682), 1, - anon_sym_constructor, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227154] = 2, + [226739] = 2, ACTIONS(12684), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227162] = 2, + [226747] = 2, ACTIONS(12686), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227170] = 2, + [226755] = 2, ACTIONS(12688), 1, - anon_sym_else, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227178] = 2, + [226763] = 2, ACTIONS(12690), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227186] = 2, + [226771] = 2, ACTIONS(12692), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227194] = 2, - ACTIONS(3274), 1, - anon_sym_while, + [226779] = 2, + ACTIONS(12694), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227202] = 2, - ACTIONS(1572), 1, - anon_sym_RBRACE, + [226787] = 2, + ACTIONS(12696), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227210] = 2, - ACTIONS(12694), 1, - anon_sym_SQUOTE, + [226795] = 2, + ACTIONS(12698), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227218] = 2, - ACTIONS(12696), 1, - anon_sym_AMP, + [226803] = 2, + ACTIONS(1636), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227226] = 2, - ACTIONS(12698), 1, - anon_sym_COLON, + [226811] = 2, + ACTIONS(12020), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227234] = 2, + [226819] = 2, ACTIONS(12700), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227242] = 2, + [226827] = 2, ACTIONS(12702), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227250] = 2, + [226835] = 2, ACTIONS(12704), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227258] = 2, + [226843] = 2, ACTIONS(12706), 1, - anon_sym_AMP, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227266] = 2, + [226851] = 2, ACTIONS(12708), 1, - sym__automatic_semicolon, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227274] = 2, - ACTIONS(1574), 1, - anon_sym_RBRACE, + [226859] = 2, + ACTIONS(12710), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227282] = 2, - ACTIONS(12710), 1, - anon_sym_class, + [226867] = 2, + ACTIONS(11410), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227290] = 2, + [226875] = 2, ACTIONS(12712), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227298] = 2, + [226883] = 2, ACTIONS(12714), 1, - sym__automatic_semicolon, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227306] = 2, + [226891] = 2, ACTIONS(12716), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227314] = 2, - ACTIONS(12718), 1, - anon_sym_else, + [226899] = 2, + ACTIONS(5091), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227322] = 2, - ACTIONS(12720), 1, - anon_sym_class, + [226907] = 2, + ACTIONS(9135), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227330] = 2, - ACTIONS(12722), 1, - anon_sym_GT, + [226915] = 2, + ACTIONS(12718), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227338] = 2, - ACTIONS(12724), 1, - anon_sym_RPAREN, + [226923] = 2, + ACTIONS(12720), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227346] = 2, - ACTIONS(8231), 1, - anon_sym_AMP, + [226931] = 2, + ACTIONS(12722), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227354] = 2, - ACTIONS(12726), 1, - anon_sym_COLON, + [226939] = 2, + ACTIONS(12724), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227362] = 2, - ACTIONS(8235), 1, + [226947] = 2, + ACTIONS(12726), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227370] = 2, + [226955] = 2, ACTIONS(12728), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227378] = 2, + [226963] = 2, ACTIONS(12730), 1, - anon_sym_AMP, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227386] = 2, + [226971] = 2, ACTIONS(12732), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227394] = 2, - ACTIONS(3115), 1, - anon_sym_while, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227402] = 2, + [226979] = 2, ACTIONS(12734), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227410] = 2, + [226987] = 2, ACTIONS(12736), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227418] = 2, - ACTIONS(6619), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227426] = 2, - ACTIONS(11828), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227434] = 2, - ACTIONS(6688), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227442] = 2, + [226995] = 2, ACTIONS(12738), 1, - anon_sym_AMP, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227450] = 2, + [227003] = 2, ACTIONS(12740), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227458] = 2, + [227011] = 2, ACTIONS(12742), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227466] = 2, + [227019] = 2, + ACTIONS(11466), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227027] = 2, ACTIONS(12744), 1, - anon_sym_AMP, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227474] = 2, + [227035] = 2, ACTIONS(12746), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227482] = 2, + [227043] = 2, + ACTIONS(4319), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227051] = 2, ACTIONS(12748), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227490] = 2, + [227059] = 2, ACTIONS(12750), 1, - anon_sym_AMP, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227067] = 2, + ACTIONS(3296), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227498] = 2, + [227075] = 2, ACTIONS(12752), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227506] = 2, - ACTIONS(12754), 1, + [227083] = 2, + ACTIONS(11448), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227514] = 2, + [227091] = 2, + ACTIONS(12754), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227099] = 2, ACTIONS(12756), 1, - anon_sym_AMP, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227522] = 2, + [227107] = 2, ACTIONS(12758), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227530] = 2, + [227115] = 2, ACTIONS(12760), 1, - anon_sym_RBRACE, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227538] = 2, + [227123] = 2, ACTIONS(12762), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227546] = 2, + [227131] = 2, ACTIONS(12764), 1, - anon_sym_class, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227554] = 2, + [227139] = 2, ACTIONS(12766), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227562] = 2, + [227147] = 2, ACTIONS(12768), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227570] = 2, + [227155] = 2, ACTIONS(12770), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227578] = 2, + [227163] = 2, ACTIONS(12772), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227586] = 2, + [227171] = 2, ACTIONS(12774), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227594] = 2, + [227179] = 2, ACTIONS(12776), 1, - anon_sym_RBRACE, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227187] = 2, + ACTIONS(1792), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227602] = 2, + [227195] = 2, ACTIONS(12778), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227610] = 2, + [227203] = 2, ACTIONS(12780), 1, - anon_sym_LPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227618] = 2, + [227211] = 2, ACTIONS(12782), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227626] = 2, + [227219] = 2, ACTIONS(12784), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227634] = 2, + [227227] = 2, ACTIONS(12786), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227642] = 2, + [227235] = 2, ACTIONS(12788), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227243] = 2, + ACTIONS(1427), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227650] = 2, + [227251] = 2, ACTIONS(12790), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227658] = 2, + [227259] = 2, ACTIONS(12792), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227666] = 2, + [227267] = 2, ACTIONS(12794), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227674] = 2, + [227275] = 2, ACTIONS(12796), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227682] = 2, + [227283] = 2, ACTIONS(12798), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227690] = 2, + [227291] = 2, ACTIONS(12800), 1, - anon_sym_LPAREN, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227299] = 2, + ACTIONS(4167), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227698] = 2, + [227307] = 2, ACTIONS(12802), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227706] = 2, + [227315] = 2, ACTIONS(12804), 1, - anon_sym_LPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227714] = 2, + [227323] = 2, ACTIONS(12806), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227722] = 2, + [227331] = 2, ACTIONS(12808), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227730] = 2, + [227339] = 2, ACTIONS(12810), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227738] = 2, + [227347] = 2, ACTIONS(12812), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227746] = 2, + [227355] = 2, ACTIONS(12814), 1, - anon_sym_LPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227754] = 2, + [227363] = 2, ACTIONS(12816), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227762] = 2, + [227371] = 2, ACTIONS(12818), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227770] = 2, + [227379] = 2, ACTIONS(12820), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227778] = 2, - ACTIONS(12054), 1, - anon_sym_RPAREN, + [227387] = 2, + ACTIONS(4493), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227786] = 2, + [227395] = 2, ACTIONS(12822), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227794] = 2, + [227403] = 2, ACTIONS(12824), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227802] = 2, + [227411] = 2, ACTIONS(12826), 1, - anon_sym_class, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227810] = 2, + [227419] = 2, + ACTIONS(5119), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227427] = 2, ACTIONS(12828), 1, - anon_sym_class, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227818] = 2, + [227435] = 2, ACTIONS(12830), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227826] = 2, + [227443] = 2, ACTIONS(12832), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227834] = 2, + [227451] = 2, ACTIONS(12834), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227459] = 2, + ACTIONS(5123), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227842] = 2, + [227467] = 2, ACTIONS(12836), 1, - anon_sym_DASH_GT, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227850] = 2, + [227475] = 2, + ACTIONS(4381), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227483] = 2, ACTIONS(12838), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227858] = 2, + [227491] = 2, ACTIONS(12840), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227866] = 2, + [227499] = 2, ACTIONS(12842), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227874] = 2, + [227507] = 2, ACTIONS(12844), 1, - anon_sym_RPAREN, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227882] = 2, + [227515] = 2, ACTIONS(12846), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227890] = 2, + [227523] = 2, ACTIONS(12848), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227898] = 2, + [227531] = 2, ACTIONS(12850), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227906] = 2, + [227539] = 2, ACTIONS(12852), 1, - anon_sym_else, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227914] = 2, + [227547] = 2, ACTIONS(12854), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227922] = 2, - ACTIONS(12856), 1, - anon_sym_class, + [227555] = 2, + ACTIONS(5111), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227930] = 2, - ACTIONS(12858), 1, - anon_sym_RPAREN, + [227563] = 2, + ACTIONS(12856), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227938] = 2, - ACTIONS(11840), 1, - anon_sym_RPAREN, + [227571] = 2, + ACTIONS(12858), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227946] = 2, + [227579] = 2, ACTIONS(12860), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227954] = 2, + [227587] = 2, ACTIONS(12862), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227962] = 2, + [227595] = 2, ACTIONS(12864), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227970] = 2, + [227603] = 2, ACTIONS(12866), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227978] = 2, + [227611] = 2, ACTIONS(12868), 1, - anon_sym_else, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227986] = 2, + [227619] = 2, ACTIONS(12870), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227994] = 2, + [227627] = 2, ACTIONS(12872), 1, - anon_sym_DASH_GT, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228002] = 2, + [227635] = 2, ACTIONS(12874), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228010] = 2, + [227643] = 2, ACTIONS(12876), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228018] = 2, + [227651] = 2, ACTIONS(12878), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228026] = 2, + [227659] = 2, ACTIONS(12880), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228034] = 2, + [227667] = 2, ACTIONS(12882), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228042] = 2, + [227675] = 2, ACTIONS(12884), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228050] = 2, + [227683] = 2, ACTIONS(12886), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228058] = 2, + [227691] = 2, ACTIONS(12888), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228066] = 2, + [227699] = 2, ACTIONS(12890), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228074] = 2, + [227707] = 2, ACTIONS(12892), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228082] = 2, + [227715] = 2, ACTIONS(12894), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228090] = 2, + [227723] = 2, ACTIONS(12896), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228098] = 2, + [227731] = 2, ACTIONS(12898), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228106] = 2, + [227739] = 2, ACTIONS(12900), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228114] = 2, + [227747] = 2, ACTIONS(12902), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228122] = 2, - ACTIONS(5097), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228130] = 2, - ACTIONS(9046), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228138] = 2, + [227755] = 2, ACTIONS(12904), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228146] = 2, + [227763] = 2, ACTIONS(12906), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228154] = 2, + [227771] = 2, ACTIONS(12908), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228162] = 2, + [227779] = 2, ACTIONS(12910), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228170] = 2, + [227787] = 2, ACTIONS(12912), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228178] = 2, + [227795] = 2, ACTIONS(12914), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228186] = 2, - ACTIONS(11862), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228194] = 2, + [227803] = 2, ACTIONS(12916), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228202] = 2, + [227811] = 2, ACTIONS(12918), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228210] = 2, + [227819] = 2, ACTIONS(12920), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228218] = 2, + [227827] = 2, ACTIONS(12922), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228226] = 2, + [227835] = 2, + ACTIONS(5127), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227843] = 2, + ACTIONS(4243), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227851] = 2, ACTIONS(12924), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228234] = 2, + [227859] = 2, ACTIONS(12926), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228242] = 2, + [227867] = 2, ACTIONS(12928), 1, - sym__automatic_semicolon, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228250] = 2, + [227875] = 2, ACTIONS(12930), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228258] = 2, + [227883] = 2, ACTIONS(12932), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228266] = 2, + [227891] = 2, ACTIONS(12934), 1, - anon_sym_LPAREN, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228274] = 2, + [227899] = 2, ACTIONS(12936), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228282] = 2, + [227907] = 2, ACTIONS(12938), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228290] = 2, + [227915] = 2, ACTIONS(12940), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228298] = 2, + [227923] = 2, ACTIONS(12942), 1, - anon_sym_LPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228306] = 2, + [227931] = 2, ACTIONS(12944), 1, - sym__automatic_semicolon, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228314] = 2, + [227939] = 2, ACTIONS(12946), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228322] = 2, + [227947] = 2, ACTIONS(12948), 1, - anon_sym_in, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227955] = 2, + ACTIONS(1592), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228330] = 2, + [227963] = 2, ACTIONS(12950), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228338] = 2, + [227971] = 2, ACTIONS(12952), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228346] = 2, + [227979] = 2, ACTIONS(12954), 1, - anon_sym_in, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227987] = 2, + ACTIONS(1804), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227995] = 2, + ACTIONS(5139), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228354] = 2, + [228003] = 2, ACTIONS(12956), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228362] = 2, + [228011] = 2, ACTIONS(12958), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228370] = 2, + [228019] = 2, ACTIONS(12960), 1, - anon_sym_in, + aux_sym__uni_character_literal_token1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228378] = 2, + [228027] = 2, ACTIONS(12962), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228386] = 2, + [228035] = 2, ACTIONS(12964), 1, - anon_sym_RBRACE, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228394] = 2, + [228043] = 2, ACTIONS(12966), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228402] = 2, + [228051] = 2, ACTIONS(12968), 1, - anon_sym_in, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228059] = 2, + ACTIONS(4180), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228410] = 2, + [228067] = 2, ACTIONS(12970), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228418] = 2, + [228075] = 2, ACTIONS(12972), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228426] = 2, + [228083] = 2, ACTIONS(12974), 1, - anon_sym_LPAREN, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228091] = 2, + ACTIONS(11719), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228434] = 2, + [228099] = 2, ACTIONS(12976), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228107] = 2, + ACTIONS(5145), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228442] = 2, + [228115] = 2, ACTIONS(12978), 1, - anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228123] = 2, + ACTIONS(5149), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228450] = 2, + [228131] = 2, ACTIONS(12980), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228458] = 2, + [228139] = 2, ACTIONS(12982), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228466] = 2, + [228147] = 2, ACTIONS(12984), 1, - anon_sym_LPAREN, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228474] = 2, + [228155] = 2, ACTIONS(12986), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228482] = 2, + [228163] = 2, ACTIONS(12988), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228490] = 2, - ACTIONS(12990), 1, - anon_sym_LPAREN, + [228171] = 2, + ACTIONS(5057), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228498] = 2, - ACTIONS(12992), 1, - anon_sym_in, + [228179] = 2, + ACTIONS(5161), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228506] = 2, - ACTIONS(1632), 1, - anon_sym_RBRACE, + [228187] = 2, + ACTIONS(12990), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228195] = 2, + ACTIONS(12992), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228514] = 2, + [228203] = 2, ACTIONS(12994), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228522] = 2, + [228211] = 2, ACTIONS(12996), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228530] = 2, + [228219] = 2, ACTIONS(12998), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228538] = 2, + [228227] = 2, ACTIONS(13000), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228546] = 2, + [228235] = 2, ACTIONS(13002), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228554] = 2, + [228243] = 2, ACTIONS(13004), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228562] = 2, + [228251] = 2, ACTIONS(13006), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228570] = 2, + [228259] = 2, ACTIONS(13008), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228578] = 2, + [228267] = 2, ACTIONS(13010), 1, - anon_sym_in, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228275] = 2, + ACTIONS(3272), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228586] = 2, + [228283] = 2, ACTIONS(13012), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228594] = 2, + [228291] = 2, ACTIONS(13014), 1, - ts_builtin_sym_end, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228602] = 2, + [228299] = 2, ACTIONS(13016), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228610] = 2, + [228307] = 2, ACTIONS(13018), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228618] = 2, + [228315] = 2, ACTIONS(13020), 1, - anon_sym_LPAREN, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228626] = 2, + [228323] = 2, ACTIONS(13022), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228634] = 2, + [228331] = 2, ACTIONS(13024), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228642] = 2, - ACTIONS(1638), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228650] = 2, + [228339] = 2, ACTIONS(13026), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228658] = 2, - ACTIONS(11882), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228666] = 2, + [228347] = 2, ACTIONS(13028), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228674] = 2, + [228355] = 2, ACTIONS(13030), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228682] = 2, + [228363] = 2, ACTIONS(13032), 1, - anon_sym_RPAREN, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228371] = 2, + ACTIONS(5173), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228690] = 2, + [228379] = 2, ACTIONS(13034), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228698] = 2, + [228387] = 2, ACTIONS(13036), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228706] = 2, + [228395] = 2, + ACTIONS(9143), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228403] = 2, + ACTIONS(4413), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228411] = 2, + ACTIONS(5187), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228419] = 2, + ACTIONS(1594), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228427] = 2, ACTIONS(13038), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228714] = 2, + [228435] = 2, ACTIONS(13040), 1, - anon_sym_in, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228722] = 2, + [228443] = 2, ACTIONS(13042), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228730] = 2, + [228451] = 2, ACTIONS(13044), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228738] = 2, + [228459] = 2, ACTIONS(13046), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228746] = 2, + [228467] = 2, ACTIONS(13048), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228754] = 2, + [228475] = 2, ACTIONS(13050), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228762] = 2, + [228483] = 2, ACTIONS(13052), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228770] = 2, - ACTIONS(11309), 1, - anon_sym_RPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228778] = 2, + [228491] = 2, ACTIONS(13054), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228786] = 2, + [228499] = 2, ACTIONS(13056), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228794] = 2, + [228507] = 2, ACTIONS(13058), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228802] = 2, + [228515] = 2, ACTIONS(13060), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228810] = 2, + [228523] = 2, ACTIONS(13062), 1, - anon_sym_in, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228531] = 2, + ACTIONS(9040), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228818] = 2, + [228539] = 2, ACTIONS(13064), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228826] = 2, + [228547] = 2, ACTIONS(13066), 1, - anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228555] = 2, + ACTIONS(9141), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228834] = 2, + [228563] = 2, ACTIONS(13068), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228842] = 2, + [228571] = 2, ACTIONS(13070), 1, - anon_sym_LPAREN, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228850] = 2, + [228579] = 2, ACTIONS(13072), 1, - anon_sym_in, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228858] = 2, + [228587] = 2, ACTIONS(13074), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228866] = 2, + [228595] = 2, ACTIONS(13076), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228874] = 2, + [228603] = 2, ACTIONS(13078), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228882] = 2, + [228611] = 2, ACTIONS(13080), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228890] = 2, + [228619] = 2, ACTIONS(13082), 1, - anon_sym_in, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228898] = 2, + [228627] = 2, ACTIONS(13084), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228906] = 2, + [228635] = 2, ACTIONS(13086), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228914] = 2, + [228643] = 2, ACTIONS(13088), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228922] = 2, + [228651] = 2, ACTIONS(13090), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228930] = 2, + [228659] = 2, ACTIONS(13092), 1, - anon_sym_in, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228938] = 2, + [228667] = 2, ACTIONS(13094), 1, - anon_sym_LPAREN, + ts_builtin_sym_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228946] = 2, + [228675] = 2, ACTIONS(13096), 1, - anon_sym_LPAREN, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228683] = 2, + ACTIONS(1810), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228954] = 2, + [228691] = 2, ACTIONS(13098), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228962] = 2, + [228699] = 2, ACTIONS(13100), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228970] = 2, + [228707] = 2, + ACTIONS(4131), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228715] = 2, ACTIONS(13102), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228978] = 2, + [228723] = 2, ACTIONS(13104), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228986] = 2, + [228731] = 2, + ACTIONS(5217), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228739] = 2, + ACTIONS(5209), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228747] = 2, ACTIONS(13106), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228994] = 2, + [228755] = 2, ACTIONS(13108), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229002] = 2, + [228763] = 2, ACTIONS(13110), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229010] = 2, + [228771] = 2, ACTIONS(13112), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229018] = 2, + [228779] = 2, ACTIONS(13114), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229026] = 2, + [228787] = 2, ACTIONS(13116), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229034] = 2, + [228795] = 2, ACTIONS(13118), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229042] = 2, + [228803] = 2, ACTIONS(13120), 1, anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229050] = 2, + [228811] = 2, ACTIONS(13122), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229058] = 2, + [228819] = 2, ACTIONS(13124), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229066] = 2, + [228827] = 2, ACTIONS(13126), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229074] = 2, + [228835] = 2, ACTIONS(13128), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229082] = 2, + [228843] = 2, ACTIONS(13130), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229090] = 2, + [228851] = 2, ACTIONS(13132), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229098] = 2, + [228859] = 2, ACTIONS(13134), 1, - anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228867] = 2, + ACTIONS(4230), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228875] = 2, + ACTIONS(5169), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228883] = 2, + ACTIONS(5221), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229106] = 2, + [228891] = 2, ACTIONS(13136), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229114] = 2, + [228899] = 2, ACTIONS(13138), 1, - anon_sym_in, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229122] = 2, + [228907] = 2, ACTIONS(13140), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229130] = 2, + [228915] = 2, ACTIONS(13142), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229138] = 2, + [228923] = 2, ACTIONS(13144), 1, - anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228931] = 2, + ACTIONS(4655), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228939] = 2, + ACTIONS(4377), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229146] = 2, + [228947] = 2, ACTIONS(13146), 1, - anon_sym_in, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228955] = 2, + ACTIONS(5157), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228963] = 2, + ACTIONS(1816), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228971] = 2, + ACTIONS(4196), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229154] = 2, + [228979] = 2, ACTIONS(13148), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229162] = 2, + [228987] = 2, ACTIONS(13150), 1, - anon_sym_class, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228995] = 2, + ACTIONS(11650), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229003] = 2, + ACTIONS(5135), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229011] = 2, + ACTIONS(121), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229019] = 2, + ACTIONS(4409), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229170] = 2, + [229027] = 2, ACTIONS(13152), 1, - anon_sym_class, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229035] = 2, + ACTIONS(5131), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229043] = 2, + ACTIONS(5107), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229051] = 2, + ACTIONS(5099), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229059] = 2, + ACTIONS(4531), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229067] = 2, + ACTIONS(1736), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229075] = 2, + ACTIONS(4305), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229083] = 2, + ACTIONS(5045), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229178] = 2, + [229091] = 2, ACTIONS(13154), 1, - anon_sym_class, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229186] = 2, + [229099] = 2, + ACTIONS(4509), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229107] = 2, ACTIONS(13156), 1, - anon_sym_class, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229115] = 2, + ACTIONS(5041), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229123] = 2, + ACTIONS(5037), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229194] = 2, + [229131] = 2, ACTIONS(13158), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229202] = 2, + [229139] = 2, ACTIONS(13160), 1, - anon_sym_class, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229147] = 2, + ACTIONS(5083), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229155] = 2, + ACTIONS(1824), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229163] = 2, + ACTIONS(11326), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229210] = 2, + [229171] = 2, ACTIONS(13162), 1, - anon_sym_class, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229218] = 2, + [229179] = 2, ACTIONS(13164), 1, - anon_sym_class, + anon_sym_constructor, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229187] = 2, + ACTIONS(4253), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229226] = 2, + [229195] = 2, ACTIONS(13166), 1, - anon_sym_LPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229234] = 2, + [229203] = 2, ACTIONS(13168), 1, - anon_sym_in, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229211] = 2, + ACTIONS(4637), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229242] = 2, + [229219] = 2, ACTIONS(13170), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229250] = 2, + [229227] = 2, ACTIONS(13172), 1, - anon_sym_in, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229258] = 2, + [229235] = 2, ACTIONS(13174), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229266] = 2, + [229243] = 2, ACTIONS(13176), 1, - anon_sym_in, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229274] = 2, + [229251] = 2, ACTIONS(13178), 1, - anon_sym_in, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229282] = 2, + [229259] = 2, ACTIONS(13180), 1, - anon_sym_DASH_GT, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229290] = 2, + [229267] = 2, ACTIONS(13182), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229298] = 2, + [229275] = 2, ACTIONS(13184), 1, - anon_sym_LPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229306] = 2, + [229283] = 2, ACTIONS(13186), 1, - anon_sym_LPAREN, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229291] = 2, + ACTIONS(3424), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229314] = 2, + [229299] = 2, ACTIONS(13188), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229307] = 2, + ACTIONS(4387), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229322] = 2, + [229315] = 2, ACTIONS(13190), 1, - anon_sym_COLON, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229330] = 2, + [229323] = 2, ACTIONS(13192), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229331] = 2, + ACTIONS(5025), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229338] = 2, + [229339] = 2, ACTIONS(13194), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229346] = 2, + [229347] = 2, ACTIONS(13196), 1, - anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229355] = 2, + ACTIONS(5165), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229354] = 2, + [229363] = 2, ACTIONS(13198), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229362] = 3, - ACTIONS(3), 1, + [229371] = 2, + ACTIONS(5015), 1, + anon_sym_while, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10927), 1, sym_line_comment, + [229379] = 2, ACTIONS(13200), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229387] = 2, + ACTIONS(13202), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229395] = 2, + ACTIONS(13204), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229403] = 2, + ACTIONS(4986), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229411] = 2, + ACTIONS(13206), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [229419] = 3, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10907), 1, + sym_line_comment, + ACTIONS(13208), 1, aux_sym_shebang_line_token1, }; static const uint32_t ts_small_parse_table_map[] = { [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(4534)] = 75, + [SMALL_STATE(4535)] = 150, + [SMALL_STATE(4536)] = 225, + [SMALL_STATE(4537)] = 296, + [SMALL_STATE(4538)] = 381, + [SMALL_STATE(4539)] = 466, + [SMALL_STATE(4540)] = 551, + [SMALL_STATE(4541)] = 622, + [SMALL_STATE(4542)] = 697, + [SMALL_STATE(4543)] = 768, + [SMALL_STATE(4544)] = 839, + [SMALL_STATE(4545)] = 914, + [SMALL_STATE(4546)] = 999, + [SMALL_STATE(4547)] = 1084, [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(4549)] = 1229, + [SMALL_STATE(4550)] = 1309, + [SMALL_STATE(4551)] = 1391, + [SMALL_STATE(4552)] = 1473, + [SMALL_STATE(4553)] = 1559, + [SMALL_STATE(4554)] = 1641, + [SMALL_STATE(4555)] = 1711, + [SMALL_STATE(4556)] = 1785, + [SMALL_STATE(4557)] = 1867, + [SMALL_STATE(4558)] = 1947, + [SMALL_STATE(4559)] = 2019, + [SMALL_STATE(4560)] = 2089, + [SMALL_STATE(4561)] = 2175, + [SMALL_STATE(4562)] = 2247, + [SMALL_STATE(4563)] = 2317, + [SMALL_STATE(4564)] = 2397, + [SMALL_STATE(4565)] = 2471, + [SMALL_STATE(4566)] = 2545, + [SMALL_STATE(4567)] = 2623, + [SMALL_STATE(4568)] = 2703, + [SMALL_STATE(4569)] = 2783, + [SMALL_STATE(4570)] = 2865, + [SMALL_STATE(4571)] = 2943, + [SMALL_STATE(4572)] = 3017, + [SMALL_STATE(4573)] = 3091, + [SMALL_STATE(4574)] = 3171, + [SMALL_STATE(4575)] = 3251, + [SMALL_STATE(4576)] = 3331, + [SMALL_STATE(4577)] = 3411, [SMALL_STATE(4578)] = 3491, - [SMALL_STATE(4579)] = 3563, - [SMALL_STATE(4580)] = 3645, + [SMALL_STATE(4579)] = 3565, + [SMALL_STATE(4580)] = 3639, [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(4585)] = 4023, + [SMALL_STATE(4586)] = 4100, + [SMALL_STATE(4587)] = 4177, + [SMALL_STATE(4588)] = 4246, + [SMALL_STATE(4589)] = 4319, + [SMALL_STATE(4590)] = 4390, + [SMALL_STATE(4591)] = 4467, + [SMALL_STATE(4592)] = 4544, + [SMALL_STATE(4593)] = 4621, + [SMALL_STATE(4594)] = 4690, + [SMALL_STATE(4595)] = 4767, + [SMALL_STATE(4596)] = 4842, + [SMALL_STATE(4597)] = 4911, + [SMALL_STATE(4598)] = 4988, + [SMALL_STATE(4599)] = 5057, + [SMALL_STATE(4600)] = 5126, + [SMALL_STATE(4601)] = 5203, + [SMALL_STATE(4602)] = 5272, + [SMALL_STATE(4603)] = 5349, + [SMALL_STATE(4604)] = 5418, + [SMALL_STATE(4605)] = 5493, + [SMALL_STATE(4606)] = 5570, + [SMALL_STATE(4607)] = 5643, + [SMALL_STATE(4608)] = 5720, + [SMALL_STATE(4609)] = 5797, [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(4611)] = 5951, + [SMALL_STATE(4612)] = 6028, + [SMALL_STATE(4613)] = 6105, + [SMALL_STATE(4614)] = 6174, + [SMALL_STATE(4615)] = 6251, + [SMALL_STATE(4616)] = 6328, + [SMALL_STATE(4617)] = 6405, + [SMALL_STATE(4618)] = 6482, + [SMALL_STATE(4619)] = 6551, [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(4621)] = 6702, + [SMALL_STATE(4622)] = 6774, + [SMALL_STATE(4623)] = 6846, + [SMALL_STATE(4624)] = 6928, + [SMALL_STATE(4625)] = 7000, + [SMALL_STATE(4626)] = 7072, + [SMALL_STATE(4627)] = 7144, + [SMALL_STATE(4628)] = 7226, + [SMALL_STATE(4629)] = 7296, + [SMALL_STATE(4630)] = 7368, + [SMALL_STATE(4631)] = 7440, + [SMALL_STATE(4632)] = 7512, + [SMALL_STATE(4633)] = 7594, + [SMALL_STATE(4634)] = 7666, + [SMALL_STATE(4635)] = 7734, + [SMALL_STATE(4636)] = 7806, + [SMALL_STATE(4637)] = 7874, + [SMALL_STATE(4638)] = 7946, + [SMALL_STATE(4639)] = 8014, + [SMALL_STATE(4640)] = 8086, + [SMALL_STATE(4641)] = 8154, + [SMALL_STATE(4642)] = 8226, + [SMALL_STATE(4643)] = 8294, + [SMALL_STATE(4644)] = 8366, + [SMALL_STATE(4645)] = 8448, + [SMALL_STATE(4646)] = 8520, + [SMALL_STATE(4647)] = 8588, + [SMALL_STATE(4648)] = 8670, + [SMALL_STATE(4649)] = 8738, + [SMALL_STATE(4650)] = 8820, + [SMALL_STATE(4651)] = 8892, + [SMALL_STATE(4652)] = 8960, + [SMALL_STATE(4653)] = 9028, [SMALL_STATE(4654)] = 9096, - [SMALL_STATE(4655)] = 9164, - [SMALL_STATE(4656)] = 9246, - [SMALL_STATE(4657)] = 9314, - [SMALL_STATE(4658)] = 9386, + [SMALL_STATE(4655)] = 9168, + [SMALL_STATE(4656)] = 9236, + [SMALL_STATE(4657)] = 9308, + [SMALL_STATE(4658)] = 9376, [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(4662)] = 9674, + [SMALL_STATE(4663)] = 9746, + [SMALL_STATE(4664)] = 9818, + [SMALL_STATE(4665)] = 9900, + [SMALL_STATE(4666)] = 9972, + [SMALL_STATE(4667)] = 10042, + [SMALL_STATE(4668)] = 10124, + [SMALL_STATE(4669)] = 10192, + [SMALL_STATE(4670)] = 10262, + [SMALL_STATE(4671)] = 10330, + [SMALL_STATE(4672)] = 10412, + [SMALL_STATE(4673)] = 10484, + [SMALL_STATE(4674)] = 10556, + [SMALL_STATE(4675)] = 10624, + [SMALL_STATE(4676)] = 10706, + [SMALL_STATE(4677)] = 10774, + [SMALL_STATE(4678)] = 10846, + [SMALL_STATE(4679)] = 10914, + [SMALL_STATE(4680)] = 10986, + [SMALL_STATE(4681)] = 11054, + [SMALL_STATE(4682)] = 11126, + [SMALL_STATE(4683)] = 11198, + [SMALL_STATE(4684)] = 11266, + [SMALL_STATE(4685)] = 11348, + [SMALL_STATE(4686)] = 11420, + [SMALL_STATE(4687)] = 11492, + [SMALL_STATE(4688)] = 11562, + [SMALL_STATE(4689)] = 11634, + [SMALL_STATE(4690)] = 11716, + [SMALL_STATE(4691)] = 11788, + [SMALL_STATE(4692)] = 11870, + [SMALL_STATE(4693)] = 11940, + [SMALL_STATE(4694)] = 12010, + [SMALL_STATE(4695)] = 12082, + [SMALL_STATE(4696)] = 12152, + [SMALL_STATE(4697)] = 12220, [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(4702)] = 12570, + [SMALL_STATE(4703)] = 12637, + [SMALL_STATE(4704)] = 12714, + [SMALL_STATE(4705)] = 12781, + [SMALL_STATE(4706)] = 12858, + [SMALL_STATE(4707)] = 12935, + [SMALL_STATE(4708)] = 13002, + [SMALL_STATE(4709)] = 13069, + [SMALL_STATE(4710)] = 13150, + [SMALL_STATE(4711)] = 13229, + [SMALL_STATE(4712)] = 13296, + [SMALL_STATE(4713)] = 13375, + [SMALL_STATE(4714)] = 13456, + [SMALL_STATE(4715)] = 13523, + [SMALL_STATE(4716)] = 13600, + [SMALL_STATE(4717)] = 13667, + [SMALL_STATE(4718)] = 13736, + [SMALL_STATE(4719)] = 13807, + [SMALL_STATE(4720)] = 13874, + [SMALL_STATE(4721)] = 13941, + [SMALL_STATE(4722)] = 14008, + [SMALL_STATE(4723)] = 14079, + [SMALL_STATE(4724)] = 14146, + [SMALL_STATE(4725)] = 14213, + [SMALL_STATE(4726)] = 14282, + [SMALL_STATE(4727)] = 14351, + [SMALL_STATE(4728)] = 14420, + [SMALL_STATE(4729)] = 14491, + [SMALL_STATE(4730)] = 14558, + [SMALL_STATE(4731)] = 14625, + [SMALL_STATE(4732)] = 14704, + [SMALL_STATE(4733)] = 14771, + [SMALL_STATE(4734)] = 14838, + [SMALL_STATE(4735)] = 14907, + [SMALL_STATE(4736)] = 14974, + [SMALL_STATE(4737)] = 15041, + [SMALL_STATE(4738)] = 15108, + [SMALL_STATE(4739)] = 15177, + [SMALL_STATE(4740)] = 15244, + [SMALL_STATE(4741)] = 15323, + [SMALL_STATE(4742)] = 15400, + [SMALL_STATE(4743)] = 15477, + [SMALL_STATE(4744)] = 15556, + [SMALL_STATE(4745)] = 15623, + [SMALL_STATE(4746)] = 15690, + [SMALL_STATE(4747)] = 15757, + [SMALL_STATE(4748)] = 15824, + [SMALL_STATE(4749)] = 15891, + [SMALL_STATE(4750)] = 15958, + [SMALL_STATE(4751)] = 16039, + [SMALL_STATE(4752)] = 16106, + [SMALL_STATE(4753)] = 16173, + [SMALL_STATE(4754)] = 16240, + [SMALL_STATE(4755)] = 16307, + [SMALL_STATE(4756)] = 16374, + [SMALL_STATE(4757)] = 16441, + [SMALL_STATE(4758)] = 16508, + [SMALL_STATE(4759)] = 16575, + [SMALL_STATE(4760)] = 16654, + [SMALL_STATE(4761)] = 16721, + [SMALL_STATE(4762)] = 16788, + [SMALL_STATE(4763)] = 16857, + [SMALL_STATE(4764)] = 16924, + [SMALL_STATE(4765)] = 16991, + [SMALL_STATE(4766)] = 17058, + [SMALL_STATE(4767)] = 17135, + [SMALL_STATE(4768)] = 17202, + [SMALL_STATE(4769)] = 17269, + [SMALL_STATE(4770)] = 17336, + [SMALL_STATE(4771)] = 17403, + [SMALL_STATE(4772)] = 17470, + [SMALL_STATE(4773)] = 17537, + [SMALL_STATE(4774)] = 17604, + [SMALL_STATE(4775)] = 17671, + [SMALL_STATE(4776)] = 17738, + [SMALL_STATE(4777)] = 17805, + [SMALL_STATE(4778)] = 17874, + [SMALL_STATE(4779)] = 17941, + [SMALL_STATE(4780)] = 18008, + [SMALL_STATE(4781)] = 18075, + [SMALL_STATE(4782)] = 18154, + [SMALL_STATE(4783)] = 18221, + [SMALL_STATE(4784)] = 18288, + [SMALL_STATE(4785)] = 18355, + [SMALL_STATE(4786)] = 18432, + [SMALL_STATE(4787)] = 18499, + [SMALL_STATE(4788)] = 18566, + [SMALL_STATE(4789)] = 18633, + [SMALL_STATE(4790)] = 18700, + [SMALL_STATE(4791)] = 18767, + [SMALL_STATE(4792)] = 18834, + [SMALL_STATE(4793)] = 18901, + [SMALL_STATE(4794)] = 18968, + [SMALL_STATE(4795)] = 19045, + [SMALL_STATE(4796)] = 19112, + [SMALL_STATE(4797)] = 19179, + [SMALL_STATE(4798)] = 19246, [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(4800)] = 19380, + [SMALL_STATE(4801)] = 19447, + [SMALL_STATE(4802)] = 19520, + [SMALL_STATE(4803)] = 19587, + [SMALL_STATE(4804)] = 19654, + [SMALL_STATE(4805)] = 19727, + [SMALL_STATE(4806)] = 19794, + [SMALL_STATE(4807)] = 19861, + [SMALL_STATE(4808)] = 19928, + [SMALL_STATE(4809)] = 20007, + [SMALL_STATE(4810)] = 20086, + [SMALL_STATE(4811)] = 20153, + [SMALL_STATE(4812)] = 20230, + [SMALL_STATE(4813)] = 20297, + [SMALL_STATE(4814)] = 20374, + [SMALL_STATE(4815)] = 20441, + [SMALL_STATE(4816)] = 20512, + [SMALL_STATE(4817)] = 20579, + [SMALL_STATE(4818)] = 20646, + [SMALL_STATE(4819)] = 20713, + [SMALL_STATE(4820)] = 20780, + [SMALL_STATE(4821)] = 20857, + [SMALL_STATE(4822)] = 20934, + [SMALL_STATE(4823)] = 21001, + [SMALL_STATE(4824)] = 21068, + [SMALL_STATE(4825)] = 21135, + [SMALL_STATE(4826)] = 21212, + [SMALL_STATE(4827)] = 21279, + [SMALL_STATE(4828)] = 21356, + [SMALL_STATE(4829)] = 21435, + [SMALL_STATE(4830)] = 21502, + [SMALL_STATE(4831)] = 21571, + [SMALL_STATE(4832)] = 21640, + [SMALL_STATE(4833)] = 21707, + [SMALL_STATE(4834)] = 21774, + [SMALL_STATE(4835)] = 21841, + [SMALL_STATE(4836)] = 21908, + [SMALL_STATE(4837)] = 21975, + [SMALL_STATE(4838)] = 22042, + [SMALL_STATE(4839)] = 22111, + [SMALL_STATE(4840)] = 22182, + [SMALL_STATE(4841)] = 22253, + [SMALL_STATE(4842)] = 22320, + [SMALL_STATE(4843)] = 22387, + [SMALL_STATE(4844)] = 22454, + [SMALL_STATE(4845)] = 22521, + [SMALL_STATE(4846)] = 22588, + [SMALL_STATE(4847)] = 22667, + [SMALL_STATE(4848)] = 22734, + [SMALL_STATE(4849)] = 22801, + [SMALL_STATE(4850)] = 22868, + [SMALL_STATE(4851)] = 22935, + [SMALL_STATE(4852)] = 23002, + [SMALL_STATE(4853)] = 23069, + [SMALL_STATE(4854)] = 23136, + [SMALL_STATE(4855)] = 23203, + [SMALL_STATE(4856)] = 23270, + [SMALL_STATE(4857)] = 23337, + [SMALL_STATE(4858)] = 23414, + [SMALL_STATE(4859)] = 23481, + [SMALL_STATE(4860)] = 23548, + [SMALL_STATE(4861)] = 23625, + [SMALL_STATE(4862)] = 23692, + [SMALL_STATE(4863)] = 23759, + [SMALL_STATE(4864)] = 23826, + [SMALL_STATE(4865)] = 23907, + [SMALL_STATE(4866)] = 23988, + [SMALL_STATE(4867)] = 24055, + [SMALL_STATE(4868)] = 24122, + [SMALL_STATE(4869)] = 24189, + [SMALL_STATE(4870)] = 24256, + [SMALL_STATE(4871)] = 24325, + [SMALL_STATE(4872)] = 24392, + [SMALL_STATE(4873)] = 24459, + [SMALL_STATE(4874)] = 24538, + [SMALL_STATE(4875)] = 24605, + [SMALL_STATE(4876)] = 24672, + [SMALL_STATE(4877)] = 24739, + [SMALL_STATE(4878)] = 24810, + [SMALL_STATE(4879)] = 24889, + [SMALL_STATE(4880)] = 24956, + [SMALL_STATE(4881)] = 25023, + [SMALL_STATE(4882)] = 25090, + [SMALL_STATE(4883)] = 25169, + [SMALL_STATE(4884)] = 25246, + [SMALL_STATE(4885)] = 25313, + [SMALL_STATE(4886)] = 25380, + [SMALL_STATE(4887)] = 25447, + [SMALL_STATE(4888)] = 25514, + [SMALL_STATE(4889)] = 25593, [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(4895)] = 26000, + [SMALL_STATE(4896)] = 26078, + [SMALL_STATE(4897)] = 26152, + [SMALL_STATE(4898)] = 26226, + [SMALL_STATE(4899)] = 26306, + [SMALL_STATE(4900)] = 26376, + [SMALL_STATE(4901)] = 26442, + [SMALL_STATE(4902)] = 26514, + [SMALL_STATE(4903)] = 26590, + [SMALL_STATE(4904)] = 26664, + [SMALL_STATE(4905)] = 26738, + [SMALL_STATE(4906)] = 26810, + [SMALL_STATE(4907)] = 26886, + [SMALL_STATE(4908)] = 26962, + [SMALL_STATE(4909)] = 27038, + [SMALL_STATE(4910)] = 27104, + [SMALL_STATE(4911)] = 27178, + [SMALL_STATE(4912)] = 27248, + [SMALL_STATE(4913)] = 27318, + [SMALL_STATE(4914)] = 27392, + [SMALL_STATE(4915)] = 27470, + [SMALL_STATE(4916)] = 27550, + [SMALL_STATE(4917)] = 27626, + [SMALL_STATE(4918)] = 27700, + [SMALL_STATE(4919)] = 27774, + [SMALL_STATE(4920)] = 27852, + [SMALL_STATE(4921)] = 27922, + [SMALL_STATE(4922)] = 27998, + [SMALL_STATE(4923)] = 28064, + [SMALL_STATE(4924)] = 28140, + [SMALL_STATE(4925)] = 28210, + [SMALL_STATE(4926)] = 28284, + [SMALL_STATE(4927)] = 28360, + [SMALL_STATE(4928)] = 28434, + [SMALL_STATE(4929)] = 28500, + [SMALL_STATE(4930)] = 28574, + [SMALL_STATE(4931)] = 28648, + [SMALL_STATE(4932)] = 28722, + [SMALL_STATE(4933)] = 28802, + [SMALL_STATE(4934)] = 28878, + [SMALL_STATE(4935)] = 28944, + [SMALL_STATE(4936)] = 29010, + [SMALL_STATE(4937)] = 29076, + [SMALL_STATE(4938)] = 29150, + [SMALL_STATE(4939)] = 29216, + [SMALL_STATE(4940)] = 29292, + [SMALL_STATE(4941)] = 29358, + [SMALL_STATE(4942)] = 29432, + [SMALL_STATE(4943)] = 29508, + [SMALL_STATE(4944)] = 29586, + [SMALL_STATE(4945)] = 29656, + [SMALL_STATE(4946)] = 29722, + [SMALL_STATE(4947)] = 29796, + [SMALL_STATE(4948)] = 29872, + [SMALL_STATE(4949)] = 29938, + [SMALL_STATE(4950)] = 30004, + [SMALL_STATE(4951)] = 30082, + [SMALL_STATE(4952)] = 30156, + [SMALL_STATE(4953)] = 30232, [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(4955)] = 30386, + [SMALL_STATE(4956)] = 30462, + [SMALL_STATE(4957)] = 30538, + [SMALL_STATE(4958)] = 30612, + [SMALL_STATE(4959)] = 30686, + [SMALL_STATE(4960)] = 30760, + [SMALL_STATE(4961)] = 30836, + [SMALL_STATE(4962)] = 30912, + [SMALL_STATE(4963)] = 30988, + [SMALL_STATE(4964)] = 31064, + [SMALL_STATE(4965)] = 31144, [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(4967)] = 31283, + [SMALL_STATE(4968)] = 31356, + [SMALL_STATE(4969)] = 31427, + [SMALL_STATE(4970)] = 31496, + [SMALL_STATE(4971)] = 31565, + [SMALL_STATE(4972)] = 31630, + [SMALL_STATE(4973)] = 31695, + [SMALL_STATE(4974)] = 31768, + [SMALL_STATE(4975)] = 31841, + [SMALL_STATE(4976)] = 31910, + [SMALL_STATE(4977)] = 31983, + [SMALL_STATE(4978)] = 32054, + [SMALL_STATE(4979)] = 32127, + [SMALL_STATE(4980)] = 32196, [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(4982)] = 32338, + [SMALL_STATE(4983)] = 32407, + [SMALL_STATE(4984)] = 32480, + [SMALL_STATE(4985)] = 32549, + [SMALL_STATE(4986)] = 32616, + [SMALL_STATE(4987)] = 32685, + [SMALL_STATE(4988)] = 32754, + [SMALL_STATE(4989)] = 32819, + [SMALL_STATE(4990)] = 32894, + [SMALL_STATE(4991)] = 32963, + [SMALL_STATE(4992)] = 33028, + [SMALL_STATE(4993)] = 33093, + [SMALL_STATE(4994)] = 33160, + [SMALL_STATE(4995)] = 33235, + [SMALL_STATE(4996)] = 33312, + [SMALL_STATE(4997)] = 33385, + [SMALL_STATE(4998)] = 33462, + [SMALL_STATE(4999)] = 33527, + [SMALL_STATE(5000)] = 33596, + [SMALL_STATE(5001)] = 33665, + [SMALL_STATE(5002)] = 33730, + [SMALL_STATE(5003)] = 33799, + [SMALL_STATE(5004)] = 33864, + [SMALL_STATE(5005)] = 33933, + [SMALL_STATE(5006)] = 34006, + [SMALL_STATE(5007)] = 34075, + [SMALL_STATE(5008)] = 34140, + [SMALL_STATE(5009)] = 34205, + [SMALL_STATE(5010)] = 34272, + [SMALL_STATE(5011)] = 34337, + [SMALL_STATE(5012)] = 34406, + [SMALL_STATE(5013)] = 34475, + [SMALL_STATE(5014)] = 34544, + [SMALL_STATE(5015)] = 34609, + [SMALL_STATE(5016)] = 34674, + [SMALL_STATE(5017)] = 34743, + [SMALL_STATE(5018)] = 34818, + [SMALL_STATE(5019)] = 34891, [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(5023)] = 35167, + [SMALL_STATE(5024)] = 35236, + [SMALL_STATE(5025)] = 35309, + [SMALL_STATE(5026)] = 35382, + [SMALL_STATE(5027)] = 35451, + [SMALL_STATE(5028)] = 35520, + [SMALL_STATE(5029)] = 35593, + [SMALL_STATE(5030)] = 35666, [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(5032)] = 35812, + [SMALL_STATE(5033)] = 35885, + [SMALL_STATE(5034)] = 35954, + [SMALL_STATE(5035)] = 36029, + [SMALL_STATE(5036)] = 36094, + [SMALL_STATE(5037)] = 36163, + [SMALL_STATE(5038)] = 36236, + [SMALL_STATE(5039)] = 36309, + [SMALL_STATE(5040)] = 36386, [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(5042)] = 36516, + [SMALL_STATE(5043)] = 36585, + [SMALL_STATE(5044)] = 36658, + [SMALL_STATE(5045)] = 36727, + [SMALL_STATE(5046)] = 36792, + [SMALL_STATE(5047)] = 36857, + [SMALL_STATE(5048)] = 36930, [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(5050)] = 37080, + [SMALL_STATE(5051)] = 37149, + [SMALL_STATE(5052)] = 37224, + [SMALL_STATE(5053)] = 37297, + [SMALL_STATE(5054)] = 37364, + [SMALL_STATE(5055)] = 37437, + [SMALL_STATE(5056)] = 37510, + [SMALL_STATE(5057)] = 37583, + [SMALL_STATE(5058)] = 37656, + [SMALL_STATE(5059)] = 37731, + [SMALL_STATE(5060)] = 37800, + [SMALL_STATE(5061)] = 37869, + [SMALL_STATE(5062)] = 37934, + [SMALL_STATE(5063)] = 38007, + [SMALL_STATE(5064)] = 38074, + [SMALL_STATE(5065)] = 38139, [SMALL_STATE(5066)] = 38208, - [SMALL_STATE(5067)] = 38273, - [SMALL_STATE(5068)] = 38346, - [SMALL_STATE(5069)] = 38411, + [SMALL_STATE(5067)] = 38277, + [SMALL_STATE(5068)] = 38342, + [SMALL_STATE(5069)] = 38407, [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(5072)] = 38627, + [SMALL_STATE(5073)] = 38691, + [SMALL_STATE(5074)] = 38759, + [SMALL_STATE(5075)] = 38823, + [SMALL_STATE(5076)] = 38887, + [SMALL_STATE(5077)] = 38951, [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(5079)] = 39083, + [SMALL_STATE(5080)] = 39147, + [SMALL_STATE(5081)] = 39211, + [SMALL_STATE(5082)] = 39275, + [SMALL_STATE(5083)] = 39339, + [SMALL_STATE(5084)] = 39409, + [SMALL_STATE(5085)] = 39473, + [SMALL_STATE(5086)] = 39537, + [SMALL_STATE(5087)] = 39603, + [SMALL_STATE(5088)] = 39667, + [SMALL_STATE(5089)] = 39731, + [SMALL_STATE(5090)] = 39803, + [SMALL_STATE(5091)] = 39867, + [SMALL_STATE(5092)] = 39931, + [SMALL_STATE(5093)] = 39995, + [SMALL_STATE(5094)] = 40059, + [SMALL_STATE(5095)] = 40123, + [SMALL_STATE(5096)] = 40187, + [SMALL_STATE(5097)] = 40251, + [SMALL_STATE(5098)] = 40315, + [SMALL_STATE(5099)] = 40379, + [SMALL_STATE(5100)] = 40443, + [SMALL_STATE(5101)] = 40507, + [SMALL_STATE(5102)] = 40571, + [SMALL_STATE(5103)] = 40643, + [SMALL_STATE(5104)] = 40707, + [SMALL_STATE(5105)] = 40771, + [SMALL_STATE(5106)] = 40843, + [SMALL_STATE(5107)] = 40907, + [SMALL_STATE(5108)] = 40971, + [SMALL_STATE(5109)] = 41035, + [SMALL_STATE(5110)] = 41099, + [SMALL_STATE(5111)] = 41163, + [SMALL_STATE(5112)] = 41227, + [SMALL_STATE(5113)] = 41291, + [SMALL_STATE(5114)] = 41355, + [SMALL_STATE(5115)] = 41427, + [SMALL_STATE(5116)] = 41493, + [SMALL_STATE(5117)] = 41557, + [SMALL_STATE(5118)] = 41621, + [SMALL_STATE(5119)] = 41685, + [SMALL_STATE(5120)] = 41749, + [SMALL_STATE(5121)] = 41813, + [SMALL_STATE(5122)] = 41877, + [SMALL_STATE(5123)] = 41941, + [SMALL_STATE(5124)] = 42013, + [SMALL_STATE(5125)] = 42077, + [SMALL_STATE(5126)] = 42141, + [SMALL_STATE(5127)] = 42205, + [SMALL_STATE(5128)] = 42269, + [SMALL_STATE(5129)] = 42333, + [SMALL_STATE(5130)] = 42401, + [SMALL_STATE(5131)] = 42465, + [SMALL_STATE(5132)] = 42529, + [SMALL_STATE(5133)] = 42593, + [SMALL_STATE(5134)] = 42657, + [SMALL_STATE(5135)] = 42731, + [SMALL_STATE(5136)] = 42803, + [SMALL_STATE(5137)] = 42867, + [SMALL_STATE(5138)] = 42941, + [SMALL_STATE(5139)] = 43005, + [SMALL_STATE(5140)] = 43077, + [SMALL_STATE(5141)] = 43141, + [SMALL_STATE(5142)] = 43205, + [SMALL_STATE(5143)] = 43269, + [SMALL_STATE(5144)] = 43333, + [SMALL_STATE(5145)] = 43397, + [SMALL_STATE(5146)] = 43461, + [SMALL_STATE(5147)] = 43533, + [SMALL_STATE(5148)] = 43597, + [SMALL_STATE(5149)] = 43661, + [SMALL_STATE(5150)] = 43725, + [SMALL_STATE(5151)] = 43789, + [SMALL_STATE(5152)] = 43853, + [SMALL_STATE(5153)] = 43917, + [SMALL_STATE(5154)] = 43981, [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(5157)] = 44181, + [SMALL_STATE(5158)] = 44247, + [SMALL_STATE(5159)] = 44313, + [SMALL_STATE(5160)] = 44377, + [SMALL_STATE(5161)] = 44443, + [SMALL_STATE(5162)] = 44507, + [SMALL_STATE(5163)] = 44579, + [SMALL_STATE(5164)] = 44643, + [SMALL_STATE(5165)] = 44707, + [SMALL_STATE(5166)] = 44773, + [SMALL_STATE(5167)] = 44837, + [SMALL_STATE(5168)] = 44901, + [SMALL_STATE(5169)] = 44965, + [SMALL_STATE(5170)] = 45035, + [SMALL_STATE(5171)] = 45099, + [SMALL_STATE(5172)] = 45169, + [SMALL_STATE(5173)] = 45233, + [SMALL_STATE(5174)] = 45303, + [SMALL_STATE(5175)] = 45367, + [SMALL_STATE(5176)] = 45439, + [SMALL_STATE(5177)] = 45503, + [SMALL_STATE(5178)] = 45577, + [SMALL_STATE(5179)] = 45641, + [SMALL_STATE(5180)] = 45705, + [SMALL_STATE(5181)] = 45777, + [SMALL_STATE(5182)] = 45841, + [SMALL_STATE(5183)] = 45905, + [SMALL_STATE(5184)] = 45969, + [SMALL_STATE(5185)] = 46033, + [SMALL_STATE(5186)] = 46097, + [SMALL_STATE(5187)] = 46167, + [SMALL_STATE(5188)] = 46231, + [SMALL_STATE(5189)] = 46295, + [SMALL_STATE(5190)] = 46359, + [SMALL_STATE(5191)] = 46423, + [SMALL_STATE(5192)] = 46489, + [SMALL_STATE(5193)] = 46555, + [SMALL_STATE(5194)] = 46619, + [SMALL_STATE(5195)] = 46683, + [SMALL_STATE(5196)] = 46747, + [SMALL_STATE(5197)] = 46811, + [SMALL_STATE(5198)] = 46883, + [SMALL_STATE(5199)] = 46947, + [SMALL_STATE(5200)] = 47011, + [SMALL_STATE(5201)] = 47075, + [SMALL_STATE(5202)] = 47147, + [SMALL_STATE(5203)] = 47211, + [SMALL_STATE(5204)] = 47275, + [SMALL_STATE(5205)] = 47339, + [SMALL_STATE(5206)] = 47403, + [SMALL_STATE(5207)] = 47467, + [SMALL_STATE(5208)] = 47531, + [SMALL_STATE(5209)] = 47605, + [SMALL_STATE(5210)] = 47677, + [SMALL_STATE(5211)] = 47741, + [SMALL_STATE(5212)] = 47805, + [SMALL_STATE(5213)] = 47869, + [SMALL_STATE(5214)] = 47933, + [SMALL_STATE(5215)] = 47997, + [SMALL_STATE(5216)] = 48061, + [SMALL_STATE(5217)] = 48125, + [SMALL_STATE(5218)] = 48189, + [SMALL_STATE(5219)] = 48253, + [SMALL_STATE(5220)] = 48317, + [SMALL_STATE(5221)] = 48381, + [SMALL_STATE(5222)] = 48453, + [SMALL_STATE(5223)] = 48517, + [SMALL_STATE(5224)] = 48589, + [SMALL_STATE(5225)] = 48663, + [SMALL_STATE(5226)] = 48737, + [SMALL_STATE(5227)] = 48809, + [SMALL_STATE(5228)] = 48873, + [SMALL_STATE(5229)] = 48937, + [SMALL_STATE(5230)] = 49001, + [SMALL_STATE(5231)] = 49065, + [SMALL_STATE(5232)] = 49129, + [SMALL_STATE(5233)] = 49203, + [SMALL_STATE(5234)] = 49273, + [SMALL_STATE(5235)] = 49337, + [SMALL_STATE(5236)] = 49401, + [SMALL_STATE(5237)] = 49465, + [SMALL_STATE(5238)] = 49529, + [SMALL_STATE(5239)] = 49593, + [SMALL_STATE(5240)] = 49657, + [SMALL_STATE(5241)] = 49721, + [SMALL_STATE(5242)] = 49785, + [SMALL_STATE(5243)] = 49849, [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(5245)] = 49985, + [SMALL_STATE(5246)] = 50049, + [SMALL_STATE(5247)] = 50113, + [SMALL_STATE(5248)] = 50177, + [SMALL_STATE(5249)] = 50241, + [SMALL_STATE(5250)] = 50305, [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(5256)] = 50697, + [SMALL_STATE(5257)] = 50763, + [SMALL_STATE(5258)] = 50827, + [SMALL_STATE(5259)] = 50891, + [SMALL_STATE(5260)] = 50955, + [SMALL_STATE(5261)] = 51019, + [SMALL_STATE(5262)] = 51089, + [SMALL_STATE(5263)] = 51153, + [SMALL_STATE(5264)] = 51217, + [SMALL_STATE(5265)] = 51281, [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(5268)] = 51479, + [SMALL_STATE(5269)] = 51546, + [SMALL_STATE(5270)] = 51613, + [SMALL_STATE(5271)] = 51680, + [SMALL_STATE(5272)] = 51749, + [SMALL_STATE(5273)] = 51816, + [SMALL_STATE(5274)] = 51883, + [SMALL_STATE(5275)] = 51952, + [SMALL_STATE(5276)] = 52019, + [SMALL_STATE(5277)] = 52086, + [SMALL_STATE(5278)] = 52153, + [SMALL_STATE(5279)] = 52230, + [SMALL_STATE(5280)] = 52297, + [SMALL_STATE(5281)] = 52366, + [SMALL_STATE(5282)] = 52433, + [SMALL_STATE(5283)] = 52502, + [SMALL_STATE(5284)] = 52569, + [SMALL_STATE(5285)] = 52636, + [SMALL_STATE(5286)] = 52703, + [SMALL_STATE(5287)] = 52770, + [SMALL_STATE(5288)] = 52835, + [SMALL_STATE(5289)] = 52902, + [SMALL_STATE(5290)] = 52969, + [SMALL_STATE(5291)] = 53036, [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(5294)] = 53255, + [SMALL_STATE(5295)] = 53320, + [SMALL_STATE(5296)] = 53393, + [SMALL_STATE(5297)] = 53460, + [SMALL_STATE(5298)] = 53527, + [SMALL_STATE(5299)] = 53604, + [SMALL_STATE(5300)] = 53671, + [SMALL_STATE(5301)] = 53738, + [SMALL_STATE(5302)] = 53805, + [SMALL_STATE(5303)] = 53872, + [SMALL_STATE(5304)] = 53949, + [SMALL_STATE(5305)] = 54014, + [SMALL_STATE(5306)] = 54081, + [SMALL_STATE(5307)] = 54158, [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(5309)] = 54300, + [SMALL_STATE(5310)] = 54365, + [SMALL_STATE(5311)] = 54430, + [SMALL_STATE(5312)] = 54497, + [SMALL_STATE(5313)] = 54574, + [SMALL_STATE(5314)] = 54651, + [SMALL_STATE(5315)] = 54718, [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(5319)] = 54981, + [SMALL_STATE(5320)] = 55087, + [SMALL_STATE(5321)] = 55151, + [SMALL_STATE(5322)] = 55225, + [SMALL_STATE(5323)] = 55299, + [SMALL_STATE(5324)] = 55361, + [SMALL_STATE(5325)] = 55423, + [SMALL_STATE(5326)] = 55485, + [SMALL_STATE(5327)] = 55547, + [SMALL_STATE(5328)] = 55621, + [SMALL_STATE(5329)] = 55685, + [SMALL_STATE(5330)] = 55759, + [SMALL_STATE(5331)] = 55821, + [SMALL_STATE(5332)] = 55883, + [SMALL_STATE(5333)] = 55959, + [SMALL_STATE(5334)] = 56021, + [SMALL_STATE(5335)] = 56083, + [SMALL_STATE(5336)] = 56145, + [SMALL_STATE(5337)] = 56207, + [SMALL_STATE(5338)] = 56269, + [SMALL_STATE(5339)] = 56331, + [SMALL_STATE(5340)] = 56393, + [SMALL_STATE(5341)] = 56469, + [SMALL_STATE(5342)] = 56533, + [SMALL_STATE(5343)] = 56609, + [SMALL_STATE(5344)] = 56683, + [SMALL_STATE(5345)] = 56759, + [SMALL_STATE(5346)] = 56865, + [SMALL_STATE(5347)] = 56933, + [SMALL_STATE(5348)] = 57001, + [SMALL_STATE(5349)] = 57063, + [SMALL_STATE(5350)] = 57137, + [SMALL_STATE(5351)] = 57205, + [SMALL_STATE(5352)] = 57281, + [SMALL_STATE(5353)] = 57355, + [SMALL_STATE(5354)] = 57417, + [SMALL_STATE(5355)] = 57481, + [SMALL_STATE(5356)] = 57549, + [SMALL_STATE(5357)] = 57613, + [SMALL_STATE(5358)] = 57675, + [SMALL_STATE(5359)] = 57737, + [SMALL_STATE(5360)] = 57811, + [SMALL_STATE(5361)] = 57873, + [SMALL_STATE(5362)] = 57979, + [SMALL_STATE(5363)] = 58041, + [SMALL_STATE(5364)] = 58113, + [SMALL_STATE(5365)] = 58175, + [SMALL_STATE(5366)] = 58237, + [SMALL_STATE(5367)] = 58299, + [SMALL_STATE(5368)] = 58361, + [SMALL_STATE(5369)] = 58423, + [SMALL_STATE(5370)] = 58485, + [SMALL_STATE(5371)] = 58547, + [SMALL_STATE(5372)] = 58609, + [SMALL_STATE(5373)] = 58671, + [SMALL_STATE(5374)] = 58733, + [SMALL_STATE(5375)] = 58795, + [SMALL_STATE(5376)] = 58859, + [SMALL_STATE(5377)] = 58921, + [SMALL_STATE(5378)] = 58987, + [SMALL_STATE(5379)] = 59049, + [SMALL_STATE(5380)] = 59111, + [SMALL_STATE(5381)] = 59175, + [SMALL_STATE(5382)] = 59237, + [SMALL_STATE(5383)] = 59299, + [SMALL_STATE(5384)] = 59361, + [SMALL_STATE(5385)] = 59431, + [SMALL_STATE(5386)] = 59493, + [SMALL_STATE(5387)] = 59555, + [SMALL_STATE(5388)] = 59617, + [SMALL_STATE(5389)] = 59679, + [SMALL_STATE(5390)] = 59741, + [SMALL_STATE(5391)] = 59803, + [SMALL_STATE(5392)] = 59875, + [SMALL_STATE(5393)] = 59937, + [SMALL_STATE(5394)] = 60009, + [SMALL_STATE(5395)] = 60071, + [SMALL_STATE(5396)] = 60133, + [SMALL_STATE(5397)] = 60195, + [SMALL_STATE(5398)] = 60257, + [SMALL_STATE(5399)] = 60319, + [SMALL_STATE(5400)] = 60381, + [SMALL_STATE(5401)] = 60455, + [SMALL_STATE(5402)] = 60519, + [SMALL_STATE(5403)] = 60581, + [SMALL_STATE(5404)] = 60643, + [SMALL_STATE(5405)] = 60707, + [SMALL_STATE(5406)] = 60771, + [SMALL_STATE(5407)] = 60877, + [SMALL_STATE(5408)] = 60939, + [SMALL_STATE(5409)] = 61003, + [SMALL_STATE(5410)] = 61065, + [SMALL_STATE(5411)] = 61129, + [SMALL_STATE(5412)] = 61193, + [SMALL_STATE(5413)] = 61255, + [SMALL_STATE(5414)] = 61317, + [SMALL_STATE(5415)] = 61391, + [SMALL_STATE(5416)] = 61453, + [SMALL_STATE(5417)] = 61519, + [SMALL_STATE(5418)] = 61581, + [SMALL_STATE(5419)] = 61643, + [SMALL_STATE(5420)] = 61705, + [SMALL_STATE(5421)] = 61767, + [SMALL_STATE(5422)] = 61829, + [SMALL_STATE(5423)] = 61891, + [SMALL_STATE(5424)] = 61953, + [SMALL_STATE(5425)] = 62019, [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(5427)] = 62154, + [SMALL_STATE(5428)] = 62217, + [SMALL_STATE(5429)] = 62322, + [SMALL_STATE(5430)] = 62383, + [SMALL_STATE(5431)] = 62484, + [SMALL_STATE(5432)] = 62549, + [SMALL_STATE(5433)] = 62620, + [SMALL_STATE(5434)] = 62681, + [SMALL_STATE(5435)] = 62752, + [SMALL_STATE(5436)] = 62823, + [SMALL_STATE(5437)] = 62894, + [SMALL_STATE(5438)] = 62965, + [SMALL_STATE(5439)] = 63036, + [SMALL_STATE(5440)] = 63107, + [SMALL_STATE(5441)] = 63172, + [SMALL_STATE(5442)] = 63233, + [SMALL_STATE(5443)] = 63304, + [SMALL_STATE(5444)] = 63375, + [SMALL_STATE(5445)] = 63444, + [SMALL_STATE(5446)] = 63513, + [SMALL_STATE(5447)] = 63584, + [SMALL_STATE(5448)] = 63655, + [SMALL_STATE(5449)] = 63756, + [SMALL_STATE(5450)] = 63827, + [SMALL_STATE(5451)] = 63896, + [SMALL_STATE(5452)] = 63965, + [SMALL_STATE(5453)] = 64030, + [SMALL_STATE(5454)] = 64099, + [SMALL_STATE(5455)] = 64172, + [SMALL_STATE(5456)] = 64243, + [SMALL_STATE(5457)] = 64314, + [SMALL_STATE(5458)] = 64383, + [SMALL_STATE(5459)] = 64452, + [SMALL_STATE(5460)] = 64553, + [SMALL_STATE(5461)] = 64624, + [SMALL_STATE(5462)] = 64693, + [SMALL_STATE(5463)] = 64756, + [SMALL_STATE(5464)] = 64817, + [SMALL_STATE(5465)] = 64890, + [SMALL_STATE(5466)] = 64955, + [SMALL_STATE(5467)] = 65026, + [SMALL_STATE(5468)] = 65089, + [SMALL_STATE(5469)] = 65162, + [SMALL_STATE(5470)] = 65235, + [SMALL_STATE(5471)] = 65304, + [SMALL_STATE(5472)] = 65405, + [SMALL_STATE(5473)] = 65476, + [SMALL_STATE(5474)] = 65539, + [SMALL_STATE(5475)] = 65602, + [SMALL_STATE(5476)] = 65673, + [SMALL_STATE(5477)] = 65746, + [SMALL_STATE(5478)] = 65815, + [SMALL_STATE(5479)] = 65920, + [SMALL_STATE(5480)] = 66021, [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(5484)] = 66399, + [SMALL_STATE(5485)] = 66499, + [SMALL_STATE(5486)] = 66569, + [SMALL_STATE(5487)] = 66631, + [SMALL_STATE(5488)] = 66701, + [SMALL_STATE(5489)] = 66769, + [SMALL_STATE(5490)] = 66839, + [SMALL_STATE(5491)] = 66939, + [SMALL_STATE(5492)] = 67007, + [SMALL_STATE(5493)] = 67067, + [SMALL_STATE(5494)] = 67133, + [SMALL_STATE(5495)] = 67215, + [SMALL_STATE(5496)] = 67315, + [SMALL_STATE(5497)] = 67415, + [SMALL_STATE(5498)] = 67515, + [SMALL_STATE(5499)] = 67585, + [SMALL_STATE(5500)] = 67651, + [SMALL_STATE(5501)] = 67751, + [SMALL_STATE(5502)] = 67819, + [SMALL_STATE(5503)] = 67919, + [SMALL_STATE(5504)] = 68019, + [SMALL_STATE(5505)] = 68119, + [SMALL_STATE(5506)] = 68189, + [SMALL_STATE(5507)] = 68259, + [SMALL_STATE(5508)] = 68359, + [SMALL_STATE(5509)] = 68459, + [SMALL_STATE(5510)] = 68559, + [SMALL_STATE(5511)] = 68629, + [SMALL_STATE(5512)] = 68729, + [SMALL_STATE(5513)] = 68793, + [SMALL_STATE(5514)] = 68853, + [SMALL_STATE(5515)] = 68913, + [SMALL_STATE(5516)] = 68981, + [SMALL_STATE(5517)] = 69041, [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(5520)] = 69243, + [SMALL_STATE(5521)] = 69325, + [SMALL_STATE(5522)] = 69389, + [SMALL_STATE(5523)] = 69489, + [SMALL_STATE(5524)] = 69557, + [SMALL_STATE(5525)] = 69625, + [SMALL_STATE(5526)] = 69693, + [SMALL_STATE(5527)] = 69757, + [SMALL_STATE(5528)] = 69825, + [SMALL_STATE(5529)] = 69895, + [SMALL_STATE(5530)] = 69995, + [SMALL_STATE(5531)] = 70059, + [SMALL_STATE(5532)] = 70159, + [SMALL_STATE(5533)] = 70227, + [SMALL_STATE(5534)] = 70327, [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(5536)] = 70496, + [SMALL_STATE(5537)] = 70591, + [SMALL_STATE(5538)] = 70688, + [SMALL_STATE(5539)] = 70787, + [SMALL_STATE(5540)] = 70884, + [SMALL_STATE(5541)] = 70983, + [SMALL_STATE(5542)] = 71042, + [SMALL_STATE(5543)] = 71139, + [SMALL_STATE(5544)] = 71236, + [SMALL_STATE(5545)] = 71295, + [SMALL_STATE(5546)] = 71390, + [SMALL_STATE(5547)] = 71487, + [SMALL_STATE(5548)] = 71548, + [SMALL_STATE(5549)] = 71607, + [SMALL_STATE(5550)] = 71706, + [SMALL_STATE(5551)] = 71773, + [SMALL_STATE(5552)] = 71870, + [SMALL_STATE(5553)] = 71937, + [SMALL_STATE(5554)] = 72004, + [SMALL_STATE(5555)] = 72071, + [SMALL_STATE(5556)] = 72138, + [SMALL_STATE(5557)] = 72235, + [SMALL_STATE(5558)] = 72302, + [SMALL_STATE(5559)] = 72369, + [SMALL_STATE(5560)] = 72432, + [SMALL_STATE(5561)] = 72531, + [SMALL_STATE(5562)] = 72628, + [SMALL_STATE(5563)] = 72695, + [SMALL_STATE(5564)] = 72756, + [SMALL_STATE(5565)] = 72819, + [SMALL_STATE(5566)] = 72916, + [SMALL_STATE(5567)] = 72975, + [SMALL_STATE(5568)] = 73072, + [SMALL_STATE(5569)] = 73139, + [SMALL_STATE(5570)] = 73236, + [SMALL_STATE(5571)] = 73333, + [SMALL_STATE(5572)] = 73432, + [SMALL_STATE(5573)] = 73529, + [SMALL_STATE(5574)] = 73590, + [SMALL_STATE(5575)] = 73655, + [SMALL_STATE(5576)] = 73754, + [SMALL_STATE(5577)] = 73813, + [SMALL_STATE(5578)] = 73878, + [SMALL_STATE(5579)] = 73977, + [SMALL_STATE(5580)] = 74072, + [SMALL_STATE(5581)] = 74171, + [SMALL_STATE(5582)] = 74270, + [SMALL_STATE(5583)] = 74337, + [SMALL_STATE(5584)] = 74396, + [SMALL_STATE(5585)] = 74455, + [SMALL_STATE(5586)] = 74552, + [SMALL_STATE(5587)] = 74649, + [SMALL_STATE(5588)] = 74744, + [SMALL_STATE(5589)] = 74843, + [SMALL_STATE(5590)] = 74902, + [SMALL_STATE(5591)] = 75001, + [SMALL_STATE(5592)] = 75064, + [SMALL_STATE(5593)] = 75123, + [SMALL_STATE(5594)] = 75186, + [SMALL_STATE(5595)] = 75283, + [SMALL_STATE(5596)] = 75380, + [SMALL_STATE(5597)] = 75441, + [SMALL_STATE(5598)] = 75536, + [SMALL_STATE(5599)] = 75635, + [SMALL_STATE(5600)] = 75694, + [SMALL_STATE(5601)] = 75757, [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(5603)] = 75916, + [SMALL_STATE(5604)] = 75976, + [SMALL_STATE(5605)] = 76070, + [SMALL_STATE(5606)] = 76132, + [SMALL_STATE(5607)] = 76226, + [SMALL_STATE(5608)] = 76290, + [SMALL_STATE(5609)] = 76384, + [SMALL_STATE(5610)] = 76444, + [SMALL_STATE(5611)] = 76502, + [SMALL_STATE(5612)] = 76596, + [SMALL_STATE(5613)] = 76676, + [SMALL_STATE(5614)] = 76736, + [SMALL_STATE(5615)] = 76796, + [SMALL_STATE(5616)] = 76890, + [SMALL_STATE(5617)] = 76948, [SMALL_STATE(5618)] = 77042, - [SMALL_STATE(5619)] = 77136, - [SMALL_STATE(5620)] = 77200, - [SMALL_STATE(5621)] = 77280, - [SMALL_STATE(5622)] = 77374, + [SMALL_STATE(5619)] = 77102, + [SMALL_STATE(5620)] = 77196, + [SMALL_STATE(5621)] = 77276, + [SMALL_STATE(5622)] = 77370, [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(5624)] = 77495, + [SMALL_STATE(5625)] = 77556, + [SMALL_STATE(5626)] = 77615, + [SMALL_STATE(5627)] = 77676, + [SMALL_STATE(5628)] = 77737, + [SMALL_STATE(5629)] = 77796, + [SMALL_STATE(5630)] = 77857, + [SMALL_STATE(5631)] = 77916, + [SMALL_STATE(5632)] = 77975, [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(5634)] = 78092, + [SMALL_STATE(5635)] = 78178, + [SMALL_STATE(5636)] = 78236, + [SMALL_STATE(5637)] = 78292, + [SMALL_STATE(5638)] = 78350, + [SMALL_STATE(5639)] = 78408, + [SMALL_STATE(5640)] = 78466, + [SMALL_STATE(5641)] = 78552, + [SMALL_STATE(5642)] = 78608, + [SMALL_STATE(5643)] = 78668, + [SMALL_STATE(5644)] = 78754, + [SMALL_STATE(5645)] = 78810, + [SMALL_STATE(5646)] = 78896, + [SMALL_STATE(5647)] = 78952, + [SMALL_STATE(5648)] = 79038, + [SMALL_STATE(5649)] = 79124, + [SMALL_STATE(5650)] = 79184, + [SMALL_STATE(5651)] = 79244, [SMALL_STATE(5652)] = 79334, - [SMALL_STATE(5653)] = 79417, - [SMALL_STATE(5654)] = 79476, - [SMALL_STATE(5655)] = 79561, + [SMALL_STATE(5653)] = 79419, + [SMALL_STATE(5654)] = 79480, + [SMALL_STATE(5655)] = 79563, [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(5659)] = 79873, + [SMALL_STATE(5660)] = 79932, + [SMALL_STATE(5661)] = 80015, + [SMALL_STATE(5662)] = 80098, + [SMALL_STATE(5663)] = 80181, + [SMALL_STATE(5664)] = 80264, + [SMALL_STATE(5665)] = 80349, + [SMALL_STATE(5666)] = 80434, + [SMALL_STATE(5667)] = 80489, + [SMALL_STATE(5668)] = 80574, + [SMALL_STATE(5669)] = 80657, + [SMALL_STATE(5670)] = 80742, [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(5675)] = 81096, + [SMALL_STATE(5676)] = 81178, + [SMALL_STATE(5677)] = 81260, + [SMALL_STATE(5678)] = 81342, + [SMALL_STATE(5679)] = 81424, + [SMALL_STATE(5680)] = 81506, + [SMALL_STATE(5681)] = 81588, [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(5683)] = 81716, + [SMALL_STATE(5684)] = 81768, + [SMALL_STATE(5685)] = 81820, + [SMALL_STATE(5686)] = 81876, + [SMALL_STATE(5687)] = 81938, + [SMALL_STATE(5688)] = 81992, + [SMALL_STATE(5689)] = 82043, + [SMALL_STATE(5690)] = 82098, + [SMALL_STATE(5691)] = 82153, + [SMALL_STATE(5692)] = 82204, + [SMALL_STATE(5693)] = 82255, + [SMALL_STATE(5694)] = 82310, + [SMALL_STATE(5695)] = 82361, + [SMALL_STATE(5696)] = 82422, + [SMALL_STATE(5697)] = 82470, + [SMALL_STATE(5698)] = 82520, + [SMALL_STATE(5699)] = 82568, + [SMALL_STATE(5700)] = 82618, + [SMALL_STATE(5701)] = 82668, + [SMALL_STATE(5702)] = 82766, + [SMALL_STATE(5703)] = 82820, [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(5705)] = 82968, + [SMALL_STATE(5706)] = 83066, + [SMALL_STATE(5707)] = 83164, + [SMALL_STATE(5708)] = 83214, + [SMALL_STATE(5709)] = 83262, + [SMALL_STATE(5710)] = 83360, + [SMALL_STATE(5711)] = 83410, + [SMALL_STATE(5712)] = 83462, + [SMALL_STATE(5713)] = 83510, + [SMALL_STATE(5714)] = 83558, + [SMALL_STATE(5715)] = 83606, + [SMALL_STATE(5716)] = 83656, + [SMALL_STATE(5717)] = 83754, + [SMALL_STATE(5718)] = 83805, + [SMALL_STATE(5719)] = 83856, + [SMALL_STATE(5720)] = 83907, + [SMALL_STATE(5721)] = 83955, + [SMALL_STATE(5722)] = 84045, + [SMALL_STATE(5723)] = 84135, + [SMALL_STATE(5724)] = 84183, + [SMALL_STATE(5725)] = 84233, + [SMALL_STATE(5726)] = 84283, + [SMALL_STATE(5727)] = 84333, + [SMALL_STATE(5728)] = 84423, + [SMALL_STATE(5729)] = 84513, + [SMALL_STATE(5730)] = 84563, + [SMALL_STATE(5731)] = 84653, + [SMALL_STATE(5732)] = 84743, + [SMALL_STATE(5733)] = 84793, + [SMALL_STATE(5734)] = 84883, + [SMALL_STATE(5735)] = 84931, + [SMALL_STATE(5736)] = 85021, + [SMALL_STATE(5737)] = 85069, + [SMALL_STATE(5738)] = 85117, + [SMALL_STATE(5739)] = 85165, + [SMALL_STATE(5740)] = 85217, + [SMALL_STATE(5741)] = 85265, + [SMALL_STATE(5742)] = 85315, + [SMALL_STATE(5743)] = 85405, + [SMALL_STATE(5744)] = 85453, + [SMALL_STATE(5745)] = 85501, + [SMALL_STATE(5746)] = 85591, + [SMALL_STATE(5747)] = 85641, + [SMALL_STATE(5748)] = 85731, + [SMALL_STATE(5749)] = 85821, + [SMALL_STATE(5750)] = 85869, + [SMALL_STATE(5751)] = 85917, + [SMALL_STATE(5752)] = 86007, + [SMALL_STATE(5753)] = 86055, + [SMALL_STATE(5754)] = 86145, + [SMALL_STATE(5755)] = 86193, + [SMALL_STATE(5756)] = 86283, + [SMALL_STATE(5757)] = 86373, + [SMALL_STATE(5758)] = 86421, + [SMALL_STATE(5759)] = 86511, + [SMALL_STATE(5760)] = 86601, + [SMALL_STATE(5761)] = 86649, + [SMALL_STATE(5762)] = 86739, + [SMALL_STATE(5763)] = 86787, + [SMALL_STATE(5764)] = 86877, + [SMALL_STATE(5765)] = 86925, + [SMALL_STATE(5766)] = 86973, + [SMALL_STATE(5767)] = 87063, + [SMALL_STATE(5768)] = 87110, + [SMALL_STATE(5769)] = 87157, + [SMALL_STATE(5770)] = 87206, + [SMALL_STATE(5771)] = 87250, + [SMALL_STATE(5772)] = 87298, + [SMALL_STATE(5773)] = 87342, + [SMALL_STATE(5774)] = 87390, + [SMALL_STATE(5775)] = 87434, + [SMALL_STATE(5776)] = 87480, + [SMALL_STATE(5777)] = 87526, + [SMALL_STATE(5778)] = 87570, + [SMALL_STATE(5779)] = 87616, + [SMALL_STATE(5780)] = 87664, + [SMALL_STATE(5781)] = 87710, + [SMALL_STATE(5782)] = 87756, + [SMALL_STATE(5783)] = 87804, + [SMALL_STATE(5784)] = 87854, + [SMALL_STATE(5785)] = 87898, + [SMALL_STATE(5786)] = 87942, + [SMALL_STATE(5787)] = 87988, + [SMALL_STATE(5788)] = 88032, + [SMALL_STATE(5789)] = 88078, + [SMALL_STATE(5790)] = 88124, + [SMALL_STATE(5791)] = 88170, + [SMALL_STATE(5792)] = 88216, + [SMALL_STATE(5793)] = 88262, + [SMALL_STATE(5794)] = 88306, + [SMALL_STATE(5795)] = 88352, + [SMALL_STATE(5796)] = 88398, + [SMALL_STATE(5797)] = 88444, + [SMALL_STATE(5798)] = 88490, + [SMALL_STATE(5799)] = 88536, + [SMALL_STATE(5800)] = 88580, + [SMALL_STATE(5801)] = 88626, + [SMALL_STATE(5802)] = 88672, + [SMALL_STATE(5803)] = 88718, + [SMALL_STATE(5804)] = 88766, + [SMALL_STATE(5805)] = 88812, + [SMALL_STATE(5806)] = 88855, + [SMALL_STATE(5807)] = 88904, + [SMALL_STATE(5808)] = 88953, + [SMALL_STATE(5809)] = 88996, + [SMALL_STATE(5810)] = 89043, + [SMALL_STATE(5811)] = 89092, + [SMALL_STATE(5812)] = 89139, + [SMALL_STATE(5813)] = 89182, + [SMALL_STATE(5814)] = 89227, + [SMALL_STATE(5815)] = 89274, + [SMALL_STATE(5816)] = 89318, + [SMALL_STATE(5817)] = 89364, + [SMALL_STATE(5818)] = 89406, [SMALL_STATE(5819)] = 89448, [SMALL_STATE(5820)] = 89490, - [SMALL_STATE(5821)] = 89534, - [SMALL_STATE(5822)] = 89576, - [SMALL_STATE(5823)] = 89622, + [SMALL_STATE(5821)] = 89532, + [SMALL_STATE(5822)] = 89574, + [SMALL_STATE(5823)] = 89618, [SMALL_STATE(5824)] = 89664, - [SMALL_STATE(5825)] = 89706, + [SMALL_STATE(5825)] = 89708, [SMALL_STATE(5826)] = 89750, - [SMALL_STATE(5827)] = 89798, - [SMALL_STATE(5828)] = 89846, - [SMALL_STATE(5829)] = 89888, + [SMALL_STATE(5827)] = 89796, + [SMALL_STATE(5828)] = 89840, + [SMALL_STATE(5829)] = 89882, [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(5835)] = 90144, + [SMALL_STATE(5836)] = 90188, + [SMALL_STATE(5837)] = 90230, + [SMALL_STATE(5838)] = 90272, + [SMALL_STATE(5839)] = 90314, [SMALL_STATE(5840)] = 90362, - [SMALL_STATE(5841)] = 90406, - [SMALL_STATE(5842)] = 90453, - [SMALL_STATE(5843)] = 90496, - [SMALL_STATE(5844)] = 90543, + [SMALL_STATE(5841)] = 90404, + [SMALL_STATE(5842)] = 90447, + [SMALL_STATE(5843)] = 90494, + [SMALL_STATE(5844)] = 90537, [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(5846)] = 90631, + [SMALL_STATE(5847)] = 90672, + [SMALL_STATE(5848)] = 90715, + [SMALL_STATE(5849)] = 90756, + [SMALL_STATE(5850)] = 90799, + [SMALL_STATE(5851)] = 90840, + [SMALL_STATE(5852)] = 90882, [SMALL_STATE(5853)] = 90960, [SMALL_STATE(5854)] = 91038, [SMALL_STATE(5855)] = 91080, - [SMALL_STATE(5856)] = 91122, + [SMALL_STATE(5856)] = 91158, [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(5861)] = 91440, + [SMALL_STATE(5862)] = 91518, + [SMALL_STATE(5863)] = 91596, + [SMALL_STATE(5864)] = 91642, + [SMALL_STATE(5865)] = 91684, + [SMALL_STATE(5866)] = 91726, + [SMALL_STATE(5867)] = 91804, + [SMALL_STATE(5868)] = 91846, + [SMALL_STATE(5869)] = 91924, + [SMALL_STATE(5870)] = 91966, + [SMALL_STATE(5871)] = 92044, + [SMALL_STATE(5872)] = 92086, + [SMALL_STATE(5873)] = 92128, + [SMALL_STATE(5874)] = 92204, + [SMALL_STATE(5875)] = 92246, + [SMALL_STATE(5876)] = 92288, + [SMALL_STATE(5877)] = 92330, + [SMALL_STATE(5878)] = 92372, + [SMALL_STATE(5879)] = 92414, + [SMALL_STATE(5880)] = 92456, + [SMALL_STATE(5881)] = 92498, + [SMALL_STATE(5882)] = 92540, + [SMALL_STATE(5883)] = 92582, + [SMALL_STATE(5884)] = 92624, + [SMALL_STATE(5885)] = 92702, + [SMALL_STATE(5886)] = 92777, + [SMALL_STATE(5887)] = 92852, + [SMALL_STATE(5888)] = 92925, + [SMALL_STATE(5889)] = 93000, + [SMALL_STATE(5890)] = 93075, + [SMALL_STATE(5891)] = 93150, + [SMALL_STATE(5892)] = 93225, + [SMALL_STATE(5893)] = 93297, + [SMALL_STATE(5894)] = 93369, + [SMALL_STATE(5895)] = 93441, + [SMALL_STATE(5896)] = 93513, + [SMALL_STATE(5897)] = 93585, + [SMALL_STATE(5898)] = 93657, + [SMALL_STATE(5899)] = 93729, + [SMALL_STATE(5900)] = 93769, + [SMALL_STATE(5901)] = 93841, + [SMALL_STATE(5902)] = 93913, + [SMALL_STATE(5903)] = 93953, + [SMALL_STATE(5904)] = 94025, + [SMALL_STATE(5905)] = 94065, + [SMALL_STATE(5906)] = 94137, + [SMALL_STATE(5907)] = 94209, + [SMALL_STATE(5908)] = 94281, + [SMALL_STATE(5909)] = 94353, + [SMALL_STATE(5910)] = 94425, + [SMALL_STATE(5911)] = 94497, + [SMALL_STATE(5912)] = 94569, + [SMALL_STATE(5913)] = 94641, + [SMALL_STATE(5914)] = 94713, + [SMALL_STATE(5915)] = 94785, + [SMALL_STATE(5916)] = 94857, + [SMALL_STATE(5917)] = 94929, + [SMALL_STATE(5918)] = 95001, + [SMALL_STATE(5919)] = 95073, + [SMALL_STATE(5920)] = 95145, + [SMALL_STATE(5921)] = 95217, + [SMALL_STATE(5922)] = 95289, + [SMALL_STATE(5923)] = 95361, + [SMALL_STATE(5924)] = 95433, + [SMALL_STATE(5925)] = 95505, + [SMALL_STATE(5926)] = 95577, + [SMALL_STATE(5927)] = 95649, + [SMALL_STATE(5928)] = 95721, + [SMALL_STATE(5929)] = 95793, + [SMALL_STATE(5930)] = 95865, + [SMALL_STATE(5931)] = 95937, + [SMALL_STATE(5932)] = 96009, + [SMALL_STATE(5933)] = 96081, + [SMALL_STATE(5934)] = 96153, + [SMALL_STATE(5935)] = 96225, + [SMALL_STATE(5936)] = 96297, + [SMALL_STATE(5937)] = 96369, + [SMALL_STATE(5938)] = 96409, + [SMALL_STATE(5939)] = 96481, + [SMALL_STATE(5940)] = 96553, + [SMALL_STATE(5941)] = 96625, + [SMALL_STATE(5942)] = 96697, + [SMALL_STATE(5943)] = 96769, + [SMALL_STATE(5944)] = 96841, + [SMALL_STATE(5945)] = 96913, + [SMALL_STATE(5946)] = 96985, + [SMALL_STATE(5947)] = 97057, + [SMALL_STATE(5948)] = 97129, + [SMALL_STATE(5949)] = 97201, + [SMALL_STATE(5950)] = 97273, + [SMALL_STATE(5951)] = 97345, + [SMALL_STATE(5952)] = 97417, + [SMALL_STATE(5953)] = 97489, + [SMALL_STATE(5954)] = 97561, + [SMALL_STATE(5955)] = 97633, + [SMALL_STATE(5956)] = 97705, + [SMALL_STATE(5957)] = 97777, + [SMALL_STATE(5958)] = 97849, + [SMALL_STATE(5959)] = 97921, + [SMALL_STATE(5960)] = 97993, + [SMALL_STATE(5961)] = 98065, + [SMALL_STATE(5962)] = 98137, + [SMALL_STATE(5963)] = 98209, + [SMALL_STATE(5964)] = 98281, + [SMALL_STATE(5965)] = 98353, + [SMALL_STATE(5966)] = 98425, + [SMALL_STATE(5967)] = 98497, + [SMALL_STATE(5968)] = 98569, + [SMALL_STATE(5969)] = 98641, + [SMALL_STATE(5970)] = 98713, + [SMALL_STATE(5971)] = 98785, + [SMALL_STATE(5972)] = 98857, + [SMALL_STATE(5973)] = 98929, + [SMALL_STATE(5974)] = 99001, + [SMALL_STATE(5975)] = 99073, + [SMALL_STATE(5976)] = 99145, + [SMALL_STATE(5977)] = 99217, + [SMALL_STATE(5978)] = 99289, + [SMALL_STATE(5979)] = 99361, + [SMALL_STATE(5980)] = 99433, + [SMALL_STATE(5981)] = 99505, + [SMALL_STATE(5982)] = 99577, + [SMALL_STATE(5983)] = 99617, + [SMALL_STATE(5984)] = 99689, + [SMALL_STATE(5985)] = 99761, + [SMALL_STATE(5986)] = 99833, + [SMALL_STATE(5987)] = 99905, + [SMALL_STATE(5988)] = 99977, + [SMALL_STATE(5989)] = 100049, + [SMALL_STATE(5990)] = 100121, + [SMALL_STATE(5991)] = 100193, + [SMALL_STATE(5992)] = 100265, + [SMALL_STATE(5993)] = 100337, + [SMALL_STATE(5994)] = 100409, + [SMALL_STATE(5995)] = 100481, + [SMALL_STATE(5996)] = 100553, + [SMALL_STATE(5997)] = 100625, + [SMALL_STATE(5998)] = 100697, + [SMALL_STATE(5999)] = 100769, + [SMALL_STATE(6000)] = 100841, + [SMALL_STATE(6001)] = 100913, + [SMALL_STATE(6002)] = 100985, + [SMALL_STATE(6003)] = 101057, + [SMALL_STATE(6004)] = 101129, + [SMALL_STATE(6005)] = 101201, + [SMALL_STATE(6006)] = 101273, + [SMALL_STATE(6007)] = 101345, + [SMALL_STATE(6008)] = 101417, + [SMALL_STATE(6009)] = 101489, + [SMALL_STATE(6010)] = 101561, + [SMALL_STATE(6011)] = 101633, + [SMALL_STATE(6012)] = 101705, + [SMALL_STATE(6013)] = 101777, + [SMALL_STATE(6014)] = 101849, + [SMALL_STATE(6015)] = 101921, + [SMALL_STATE(6016)] = 101993, + [SMALL_STATE(6017)] = 102065, + [SMALL_STATE(6018)] = 102137, + [SMALL_STATE(6019)] = 102209, + [SMALL_STATE(6020)] = 102281, + [SMALL_STATE(6021)] = 102353, + [SMALL_STATE(6022)] = 102425, + [SMALL_STATE(6023)] = 102497, + [SMALL_STATE(6024)] = 102569, + [SMALL_STATE(6025)] = 102641, + [SMALL_STATE(6026)] = 102713, + [SMALL_STATE(6027)] = 102785, + [SMALL_STATE(6028)] = 102857, + [SMALL_STATE(6029)] = 102929, + [SMALL_STATE(6030)] = 103001, + [SMALL_STATE(6031)] = 103073, + [SMALL_STATE(6032)] = 103145, + [SMALL_STATE(6033)] = 103217, + [SMALL_STATE(6034)] = 103289, + [SMALL_STATE(6035)] = 103361, + [SMALL_STATE(6036)] = 103433, + [SMALL_STATE(6037)] = 103505, + [SMALL_STATE(6038)] = 103577, + [SMALL_STATE(6039)] = 103649, + [SMALL_STATE(6040)] = 103721, + [SMALL_STATE(6041)] = 103793, + [SMALL_STATE(6042)] = 103865, + [SMALL_STATE(6043)] = 103937, + [SMALL_STATE(6044)] = 104009, + [SMALL_STATE(6045)] = 104081, + [SMALL_STATE(6046)] = 104153, + [SMALL_STATE(6047)] = 104225, + [SMALL_STATE(6048)] = 104297, + [SMALL_STATE(6049)] = 104369, + [SMALL_STATE(6050)] = 104441, + [SMALL_STATE(6051)] = 104513, + [SMALL_STATE(6052)] = 104553, + [SMALL_STATE(6053)] = 104625, + [SMALL_STATE(6054)] = 104697, + [SMALL_STATE(6055)] = 104769, + [SMALL_STATE(6056)] = 104841, + [SMALL_STATE(6057)] = 104913, + [SMALL_STATE(6058)] = 104985, + [SMALL_STATE(6059)] = 105057, + [SMALL_STATE(6060)] = 105129, + [SMALL_STATE(6061)] = 105201, + [SMALL_STATE(6062)] = 105241, + [SMALL_STATE(6063)] = 105313, + [SMALL_STATE(6064)] = 105385, + [SMALL_STATE(6065)] = 105457, + [SMALL_STATE(6066)] = 105529, + [SMALL_STATE(6067)] = 105601, + [SMALL_STATE(6068)] = 105673, + [SMALL_STATE(6069)] = 105745, + [SMALL_STATE(6070)] = 105785, + [SMALL_STATE(6071)] = 105857, + [SMALL_STATE(6072)] = 105929, + [SMALL_STATE(6073)] = 106001, + [SMALL_STATE(6074)] = 106073, + [SMALL_STATE(6075)] = 106145, + [SMALL_STATE(6076)] = 106217, + [SMALL_STATE(6077)] = 106289, + [SMALL_STATE(6078)] = 106361, + [SMALL_STATE(6079)] = 106433, + [SMALL_STATE(6080)] = 106505, + [SMALL_STATE(6081)] = 106577, + [SMALL_STATE(6082)] = 106649, + [SMALL_STATE(6083)] = 106721, + [SMALL_STATE(6084)] = 106793, + [SMALL_STATE(6085)] = 106865, + [SMALL_STATE(6086)] = 106937, + [SMALL_STATE(6087)] = 107009, + [SMALL_STATE(6088)] = 107081, + [SMALL_STATE(6089)] = 107153, + [SMALL_STATE(6090)] = 107225, + [SMALL_STATE(6091)] = 107297, + [SMALL_STATE(6092)] = 107369, + [SMALL_STATE(6093)] = 107441, + [SMALL_STATE(6094)] = 107513, + [SMALL_STATE(6095)] = 107585, + [SMALL_STATE(6096)] = 107657, + [SMALL_STATE(6097)] = 107729, + [SMALL_STATE(6098)] = 107801, + [SMALL_STATE(6099)] = 107873, + [SMALL_STATE(6100)] = 107945, + [SMALL_STATE(6101)] = 108017, + [SMALL_STATE(6102)] = 108089, + [SMALL_STATE(6103)] = 108161, + [SMALL_STATE(6104)] = 108233, + [SMALL_STATE(6105)] = 108305, + [SMALL_STATE(6106)] = 108377, + [SMALL_STATE(6107)] = 108449, + [SMALL_STATE(6108)] = 108521, + [SMALL_STATE(6109)] = 108561, + [SMALL_STATE(6110)] = 108633, + [SMALL_STATE(6111)] = 108705, + [SMALL_STATE(6112)] = 108777, + [SMALL_STATE(6113)] = 108849, + [SMALL_STATE(6114)] = 108921, + [SMALL_STATE(6115)] = 108993, + [SMALL_STATE(6116)] = 109065, + [SMALL_STATE(6117)] = 109137, + [SMALL_STATE(6118)] = 109209, + [SMALL_STATE(6119)] = 109281, + [SMALL_STATE(6120)] = 109353, + [SMALL_STATE(6121)] = 109425, + [SMALL_STATE(6122)] = 109497, + [SMALL_STATE(6123)] = 109569, + [SMALL_STATE(6124)] = 109641, + [SMALL_STATE(6125)] = 109713, + [SMALL_STATE(6126)] = 109785, + [SMALL_STATE(6127)] = 109857, + [SMALL_STATE(6128)] = 109929, + [SMALL_STATE(6129)] = 110001, + [SMALL_STATE(6130)] = 110073, + [SMALL_STATE(6131)] = 110145, + [SMALL_STATE(6132)] = 110217, + [SMALL_STATE(6133)] = 110259, + [SMALL_STATE(6134)] = 110331, + [SMALL_STATE(6135)] = 110403, + [SMALL_STATE(6136)] = 110475, + [SMALL_STATE(6137)] = 110547, + [SMALL_STATE(6138)] = 110619, + [SMALL_STATE(6139)] = 110691, + [SMALL_STATE(6140)] = 110763, + [SMALL_STATE(6141)] = 110835, + [SMALL_STATE(6142)] = 110907, + [SMALL_STATE(6143)] = 110979, + [SMALL_STATE(6144)] = 111051, + [SMALL_STATE(6145)] = 111123, + [SMALL_STATE(6146)] = 111195, + [SMALL_STATE(6147)] = 111267, + [SMALL_STATE(6148)] = 111339, + [SMALL_STATE(6149)] = 111411, + [SMALL_STATE(6150)] = 111483, + [SMALL_STATE(6151)] = 111555, + [SMALL_STATE(6152)] = 111627, + [SMALL_STATE(6153)] = 111699, + [SMALL_STATE(6154)] = 111771, + [SMALL_STATE(6155)] = 111843, + [SMALL_STATE(6156)] = 111915, + [SMALL_STATE(6157)] = 111987, + [SMALL_STATE(6158)] = 112059, + [SMALL_STATE(6159)] = 112131, + [SMALL_STATE(6160)] = 112203, + [SMALL_STATE(6161)] = 112275, + [SMALL_STATE(6162)] = 112347, + [SMALL_STATE(6163)] = 112419, + [SMALL_STATE(6164)] = 112491, + [SMALL_STATE(6165)] = 112563, + [SMALL_STATE(6166)] = 112635, + [SMALL_STATE(6167)] = 112707, + [SMALL_STATE(6168)] = 112779, + [SMALL_STATE(6169)] = 112851, + [SMALL_STATE(6170)] = 112923, + [SMALL_STATE(6171)] = 112995, + [SMALL_STATE(6172)] = 113067, + [SMALL_STATE(6173)] = 113139, + [SMALL_STATE(6174)] = 113211, + [SMALL_STATE(6175)] = 113283, + [SMALL_STATE(6176)] = 113355, + [SMALL_STATE(6177)] = 113427, + [SMALL_STATE(6178)] = 113499, + [SMALL_STATE(6179)] = 113571, + [SMALL_STATE(6180)] = 113643, + [SMALL_STATE(6181)] = 113715, + [SMALL_STATE(6182)] = 113787, + [SMALL_STATE(6183)] = 113859, + [SMALL_STATE(6184)] = 113931, + [SMALL_STATE(6185)] = 114003, + [SMALL_STATE(6186)] = 114075, + [SMALL_STATE(6187)] = 114147, + [SMALL_STATE(6188)] = 114219, + [SMALL_STATE(6189)] = 114291, + [SMALL_STATE(6190)] = 114363, + [SMALL_STATE(6191)] = 114435, + [SMALL_STATE(6192)] = 114507, + [SMALL_STATE(6193)] = 114579, + [SMALL_STATE(6194)] = 114651, + [SMALL_STATE(6195)] = 114723, + [SMALL_STATE(6196)] = 114795, + [SMALL_STATE(6197)] = 114867, + [SMALL_STATE(6198)] = 114939, + [SMALL_STATE(6199)] = 115011, + [SMALL_STATE(6200)] = 115083, + [SMALL_STATE(6201)] = 115155, + [SMALL_STATE(6202)] = 115227, + [SMALL_STATE(6203)] = 115299, + [SMALL_STATE(6204)] = 115371, + [SMALL_STATE(6205)] = 115443, + [SMALL_STATE(6206)] = 115515, + [SMALL_STATE(6207)] = 115587, + [SMALL_STATE(6208)] = 115659, + [SMALL_STATE(6209)] = 115731, + [SMALL_STATE(6210)] = 115803, + [SMALL_STATE(6211)] = 115875, + [SMALL_STATE(6212)] = 115947, + [SMALL_STATE(6213)] = 116019, + [SMALL_STATE(6214)] = 116091, + [SMALL_STATE(6215)] = 116163, + [SMALL_STATE(6216)] = 116235, + [SMALL_STATE(6217)] = 116307, + [SMALL_STATE(6218)] = 116379, + [SMALL_STATE(6219)] = 116451, + [SMALL_STATE(6220)] = 116523, + [SMALL_STATE(6221)] = 116595, + [SMALL_STATE(6222)] = 116667, + [SMALL_STATE(6223)] = 116739, + [SMALL_STATE(6224)] = 116811, + [SMALL_STATE(6225)] = 116883, + [SMALL_STATE(6226)] = 116955, + [SMALL_STATE(6227)] = 117027, + [SMALL_STATE(6228)] = 117099, + [SMALL_STATE(6229)] = 117171, + [SMALL_STATE(6230)] = 117243, + [SMALL_STATE(6231)] = 117315, + [SMALL_STATE(6232)] = 117387, + [SMALL_STATE(6233)] = 117459, + [SMALL_STATE(6234)] = 117531, + [SMALL_STATE(6235)] = 117603, + [SMALL_STATE(6236)] = 117675, + [SMALL_STATE(6237)] = 117747, + [SMALL_STATE(6238)] = 117819, + [SMALL_STATE(6239)] = 117891, + [SMALL_STATE(6240)] = 117963, + [SMALL_STATE(6241)] = 118035, + [SMALL_STATE(6242)] = 118107, + [SMALL_STATE(6243)] = 118179, + [SMALL_STATE(6244)] = 118251, + [SMALL_STATE(6245)] = 118323, + [SMALL_STATE(6246)] = 118395, + [SMALL_STATE(6247)] = 118467, + [SMALL_STATE(6248)] = 118539, + [SMALL_STATE(6249)] = 118611, + [SMALL_STATE(6250)] = 118683, + [SMALL_STATE(6251)] = 118755, + [SMALL_STATE(6252)] = 118827, + [SMALL_STATE(6253)] = 118899, + [SMALL_STATE(6254)] = 118971, + [SMALL_STATE(6255)] = 119043, + [SMALL_STATE(6256)] = 119115, + [SMALL_STATE(6257)] = 119187, + [SMALL_STATE(6258)] = 119259, + [SMALL_STATE(6259)] = 119331, + [SMALL_STATE(6260)] = 119403, + [SMALL_STATE(6261)] = 119475, + [SMALL_STATE(6262)] = 119547, + [SMALL_STATE(6263)] = 119619, + [SMALL_STATE(6264)] = 119691, + [SMALL_STATE(6265)] = 119763, + [SMALL_STATE(6266)] = 119835, + [SMALL_STATE(6267)] = 119907, + [SMALL_STATE(6268)] = 119979, + [SMALL_STATE(6269)] = 120051, + [SMALL_STATE(6270)] = 120123, + [SMALL_STATE(6271)] = 120195, + [SMALL_STATE(6272)] = 120267, + [SMALL_STATE(6273)] = 120339, + [SMALL_STATE(6274)] = 120411, + [SMALL_STATE(6275)] = 120483, + [SMALL_STATE(6276)] = 120555, + [SMALL_STATE(6277)] = 120627, + [SMALL_STATE(6278)] = 120699, + [SMALL_STATE(6279)] = 120771, + [SMALL_STATE(6280)] = 120843, + [SMALL_STATE(6281)] = 120915, + [SMALL_STATE(6282)] = 120987, + [SMALL_STATE(6283)] = 121059, + [SMALL_STATE(6284)] = 121131, + [SMALL_STATE(6285)] = 121203, + [SMALL_STATE(6286)] = 121275, + [SMALL_STATE(6287)] = 121347, + [SMALL_STATE(6288)] = 121419, + [SMALL_STATE(6289)] = 121491, + [SMALL_STATE(6290)] = 121563, + [SMALL_STATE(6291)] = 121635, + [SMALL_STATE(6292)] = 121707, + [SMALL_STATE(6293)] = 121779, + [SMALL_STATE(6294)] = 121851, + [SMALL_STATE(6295)] = 121923, + [SMALL_STATE(6296)] = 121995, + [SMALL_STATE(6297)] = 122067, + [SMALL_STATE(6298)] = 122139, + [SMALL_STATE(6299)] = 122211, + [SMALL_STATE(6300)] = 122283, + [SMALL_STATE(6301)] = 122355, + [SMALL_STATE(6302)] = 122427, + [SMALL_STATE(6303)] = 122499, + [SMALL_STATE(6304)] = 122571, + [SMALL_STATE(6305)] = 122643, + [SMALL_STATE(6306)] = 122715, + [SMALL_STATE(6307)] = 122787, + [SMALL_STATE(6308)] = 122859, + [SMALL_STATE(6309)] = 122931, + [SMALL_STATE(6310)] = 123003, + [SMALL_STATE(6311)] = 123075, + [SMALL_STATE(6312)] = 123147, + [SMALL_STATE(6313)] = 123219, + [SMALL_STATE(6314)] = 123291, + [SMALL_STATE(6315)] = 123363, + [SMALL_STATE(6316)] = 123435, + [SMALL_STATE(6317)] = 123507, + [SMALL_STATE(6318)] = 123579, + [SMALL_STATE(6319)] = 123651, + [SMALL_STATE(6320)] = 123723, + [SMALL_STATE(6321)] = 123795, + [SMALL_STATE(6322)] = 123867, + [SMALL_STATE(6323)] = 123939, + [SMALL_STATE(6324)] = 124011, + [SMALL_STATE(6325)] = 124083, + [SMALL_STATE(6326)] = 124155, + [SMALL_STATE(6327)] = 124227, + [SMALL_STATE(6328)] = 124299, + [SMALL_STATE(6329)] = 124371, + [SMALL_STATE(6330)] = 124443, + [SMALL_STATE(6331)] = 124515, + [SMALL_STATE(6332)] = 124587, + [SMALL_STATE(6333)] = 124659, + [SMALL_STATE(6334)] = 124731, + [SMALL_STATE(6335)] = 124803, + [SMALL_STATE(6336)] = 124875, + [SMALL_STATE(6337)] = 124947, + [SMALL_STATE(6338)] = 125019, + [SMALL_STATE(6339)] = 125091, + [SMALL_STATE(6340)] = 125163, + [SMALL_STATE(6341)] = 125235, + [SMALL_STATE(6342)] = 125307, + [SMALL_STATE(6343)] = 125379, + [SMALL_STATE(6344)] = 125451, + [SMALL_STATE(6345)] = 125523, + [SMALL_STATE(6346)] = 125595, + [SMALL_STATE(6347)] = 125667, + [SMALL_STATE(6348)] = 125739, + [SMALL_STATE(6349)] = 125811, + [SMALL_STATE(6350)] = 125883, + [SMALL_STATE(6351)] = 125955, + [SMALL_STATE(6352)] = 126027, + [SMALL_STATE(6353)] = 126099, + [SMALL_STATE(6354)] = 126171, + [SMALL_STATE(6355)] = 126243, + [SMALL_STATE(6356)] = 126315, + [SMALL_STATE(6357)] = 126387, + [SMALL_STATE(6358)] = 126459, + [SMALL_STATE(6359)] = 126531, + [SMALL_STATE(6360)] = 126603, + [SMALL_STATE(6361)] = 126675, + [SMALL_STATE(6362)] = 126747, + [SMALL_STATE(6363)] = 126819, + [SMALL_STATE(6364)] = 126891, + [SMALL_STATE(6365)] = 126963, + [SMALL_STATE(6366)] = 127035, + [SMALL_STATE(6367)] = 127107, + [SMALL_STATE(6368)] = 127179, + [SMALL_STATE(6369)] = 127251, + [SMALL_STATE(6370)] = 127323, + [SMALL_STATE(6371)] = 127395, + [SMALL_STATE(6372)] = 127467, + [SMALL_STATE(6373)] = 127539, + [SMALL_STATE(6374)] = 127579, + [SMALL_STATE(6375)] = 127651, + [SMALL_STATE(6376)] = 127723, + [SMALL_STATE(6377)] = 127795, + [SMALL_STATE(6378)] = 127867, + [SMALL_STATE(6379)] = 127939, + [SMALL_STATE(6380)] = 128011, + [SMALL_STATE(6381)] = 128083, + [SMALL_STATE(6382)] = 128155, + [SMALL_STATE(6383)] = 128227, + [SMALL_STATE(6384)] = 128299, + [SMALL_STATE(6385)] = 128371, + [SMALL_STATE(6386)] = 128443, + [SMALL_STATE(6387)] = 128483, + [SMALL_STATE(6388)] = 128555, + [SMALL_STATE(6389)] = 128627, + [SMALL_STATE(6390)] = 128699, + [SMALL_STATE(6391)] = 128739, + [SMALL_STATE(6392)] = 128811, + [SMALL_STATE(6393)] = 128883, + [SMALL_STATE(6394)] = 128955, + [SMALL_STATE(6395)] = 129027, + [SMALL_STATE(6396)] = 129099, + [SMALL_STATE(6397)] = 129171, + [SMALL_STATE(6398)] = 129243, + [SMALL_STATE(6399)] = 129315, + [SMALL_STATE(6400)] = 129387, + [SMALL_STATE(6401)] = 129459, + [SMALL_STATE(6402)] = 129531, + [SMALL_STATE(6403)] = 129603, + [SMALL_STATE(6404)] = 129675, + [SMALL_STATE(6405)] = 129747, + [SMALL_STATE(6406)] = 129819, + [SMALL_STATE(6407)] = 129891, + [SMALL_STATE(6408)] = 129963, + [SMALL_STATE(6409)] = 130035, + [SMALL_STATE(6410)] = 130107, + [SMALL_STATE(6411)] = 130179, + [SMALL_STATE(6412)] = 130250, + [SMALL_STATE(6413)] = 130321, + [SMALL_STATE(6414)] = 130392, + [SMALL_STATE(6415)] = 130463, + [SMALL_STATE(6416)] = 130534, + [SMALL_STATE(6417)] = 130605, + [SMALL_STATE(6418)] = 130676, + [SMALL_STATE(6419)] = 130747, + [SMALL_STATE(6420)] = 130818, + [SMALL_STATE(6421)] = 130889, + [SMALL_STATE(6422)] = 130960, + [SMALL_STATE(6423)] = 131031, + [SMALL_STATE(6424)] = 131102, + [SMALL_STATE(6425)] = 131173, + [SMALL_STATE(6426)] = 131244, + [SMALL_STATE(6427)] = 131315, + [SMALL_STATE(6428)] = 131386, + [SMALL_STATE(6429)] = 131457, + [SMALL_STATE(6430)] = 131528, + [SMALL_STATE(6431)] = 131599, + [SMALL_STATE(6432)] = 131670, + [SMALL_STATE(6433)] = 131741, + [SMALL_STATE(6434)] = 131812, + [SMALL_STATE(6435)] = 131883, + [SMALL_STATE(6436)] = 131954, + [SMALL_STATE(6437)] = 132025, + [SMALL_STATE(6438)] = 132096, + [SMALL_STATE(6439)] = 132167, + [SMALL_STATE(6440)] = 132238, + [SMALL_STATE(6441)] = 132309, + [SMALL_STATE(6442)] = 132380, + [SMALL_STATE(6443)] = 132451, + [SMALL_STATE(6444)] = 132522, + [SMALL_STATE(6445)] = 132593, + [SMALL_STATE(6446)] = 132664, + [SMALL_STATE(6447)] = 132735, + [SMALL_STATE(6448)] = 132806, + [SMALL_STATE(6449)] = 132877, + [SMALL_STATE(6450)] = 132948, + [SMALL_STATE(6451)] = 133019, + [SMALL_STATE(6452)] = 133090, [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(6454)] = 133226, + [SMALL_STATE(6455)] = 133294, + [SMALL_STATE(6456)] = 133360, + [SMALL_STATE(6457)] = 133428, + [SMALL_STATE(6458)] = 133494, + [SMALL_STATE(6459)] = 133560, + [SMALL_STATE(6460)] = 133626, + [SMALL_STATE(6461)] = 133694, + [SMALL_STATE(6462)] = 133762, + [SMALL_STATE(6463)] = 133828, + [SMALL_STATE(6464)] = 133896, + [SMALL_STATE(6465)] = 133962, + [SMALL_STATE(6466)] = 134030, + [SMALL_STATE(6467)] = 134096, + [SMALL_STATE(6468)] = 134164, + [SMALL_STATE(6469)] = 134232, + [SMALL_STATE(6470)] = 134300, + [SMALL_STATE(6471)] = 134366, + [SMALL_STATE(6472)] = 134434, + [SMALL_STATE(6473)] = 134502, + [SMALL_STATE(6474)] = 134568, + [SMALL_STATE(6475)] = 134636, + [SMALL_STATE(6476)] = 134702, + [SMALL_STATE(6477)] = 134768, + [SMALL_STATE(6478)] = 134834, + [SMALL_STATE(6479)] = 134902, + [SMALL_STATE(6480)] = 134970, + [SMALL_STATE(6481)] = 135036, + [SMALL_STATE(6482)] = 135102, + [SMALL_STATE(6483)] = 135168, + [SMALL_STATE(6484)] = 135234, + [SMALL_STATE(6485)] = 135300, + [SMALL_STATE(6486)] = 135366, + [SMALL_STATE(6487)] = 135432, + [SMALL_STATE(6488)] = 135500, + [SMALL_STATE(6489)] = 135568, + [SMALL_STATE(6490)] = 135634, + [SMALL_STATE(6491)] = 135700, + [SMALL_STATE(6492)] = 135766, + [SMALL_STATE(6493)] = 135832, + [SMALL_STATE(6494)] = 135900, + [SMALL_STATE(6495)] = 135966, + [SMALL_STATE(6496)] = 136032, + [SMALL_STATE(6497)] = 136098, + [SMALL_STATE(6498)] = 136164, + [SMALL_STATE(6499)] = 136230, + [SMALL_STATE(6500)] = 136298, + [SMALL_STATE(6501)] = 136364, + [SMALL_STATE(6502)] = 136430, + [SMALL_STATE(6503)] = 136498, + [SMALL_STATE(6504)] = 136564, + [SMALL_STATE(6505)] = 136630, + [SMALL_STATE(6506)] = 136698, + [SMALL_STATE(6507)] = 136764, + [SMALL_STATE(6508)] = 136830, + [SMALL_STATE(6509)] = 136896, + [SMALL_STATE(6510)] = 136962, + [SMALL_STATE(6511)] = 137028, + [SMALL_STATE(6512)] = 137094, + [SMALL_STATE(6513)] = 137160, + [SMALL_STATE(6514)] = 137228, + [SMALL_STATE(6515)] = 137294, + [SMALL_STATE(6516)] = 137360, + [SMALL_STATE(6517)] = 137426, + [SMALL_STATE(6518)] = 137494, + [SMALL_STATE(6519)] = 137562, + [SMALL_STATE(6520)] = 137628, + [SMALL_STATE(6521)] = 137696, + [SMALL_STATE(6522)] = 137762, + [SMALL_STATE(6523)] = 137828, + [SMALL_STATE(6524)] = 137894, [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(6530)] = 138290, [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(6532)] = 138424, + [SMALL_STATE(6533)] = 138492, + [SMALL_STATE(6534)] = 138558, + [SMALL_STATE(6535)] = 138620, + [SMALL_STATE(6536)] = 138682, + [SMALL_STATE(6537)] = 138744, + [SMALL_STATE(6538)] = 138806, + [SMALL_STATE(6539)] = 138868, + [SMALL_STATE(6540)] = 138930, + [SMALL_STATE(6541)] = 138992, + [SMALL_STATE(6542)] = 139054, + [SMALL_STATE(6543)] = 139116, + [SMALL_STATE(6544)] = 139178, + [SMALL_STATE(6545)] = 139240, + [SMALL_STATE(6546)] = 139302, + [SMALL_STATE(6547)] = 139364, + [SMALL_STATE(6548)] = 139426, + [SMALL_STATE(6549)] = 139488, + [SMALL_STATE(6550)] = 139550, + [SMALL_STATE(6551)] = 139612, + [SMALL_STATE(6552)] = 139674, + [SMALL_STATE(6553)] = 139736, + [SMALL_STATE(6554)] = 139798, + [SMALL_STATE(6555)] = 139860, + [SMALL_STATE(6556)] = 139922, + [SMALL_STATE(6557)] = 139984, + [SMALL_STATE(6558)] = 140020, + [SMALL_STATE(6559)] = 140082, + [SMALL_STATE(6560)] = 140144, + [SMALL_STATE(6561)] = 140206, + [SMALL_STATE(6562)] = 140268, + [SMALL_STATE(6563)] = 140330, + [SMALL_STATE(6564)] = 140392, + [SMALL_STATE(6565)] = 140454, + [SMALL_STATE(6566)] = 140516, + [SMALL_STATE(6567)] = 140578, + [SMALL_STATE(6568)] = 140640, + [SMALL_STATE(6569)] = 140702, + [SMALL_STATE(6570)] = 140738, + [SMALL_STATE(6571)] = 140800, + [SMALL_STATE(6572)] = 140862, + [SMALL_STATE(6573)] = 140924, + [SMALL_STATE(6574)] = 140986, + [SMALL_STATE(6575)] = 141048, + [SMALL_STATE(6576)] = 141110, + [SMALL_STATE(6577)] = 141172, + [SMALL_STATE(6578)] = 141234, + [SMALL_STATE(6579)] = 141296, + [SMALL_STATE(6580)] = 141358, + [SMALL_STATE(6581)] = 141420, + [SMALL_STATE(6582)] = 141482, + [SMALL_STATE(6583)] = 141544, + [SMALL_STATE(6584)] = 141606, + [SMALL_STATE(6585)] = 141668, + [SMALL_STATE(6586)] = 141730, + [SMALL_STATE(6587)] = 141792, + [SMALL_STATE(6588)] = 141854, + [SMALL_STATE(6589)] = 141916, + [SMALL_STATE(6590)] = 141978, + [SMALL_STATE(6591)] = 142017, + [SMALL_STATE(6592)] = 142055, + [SMALL_STATE(6593)] = 142113, + [SMALL_STATE(6594)] = 142171, + [SMALL_STATE(6595)] = 142229, + [SMALL_STATE(6596)] = 142287, + [SMALL_STATE(6597)] = 142345, + [SMALL_STATE(6598)] = 142403, + [SMALL_STATE(6599)] = 142461, + [SMALL_STATE(6600)] = 142519, + [SMALL_STATE(6601)] = 142577, + [SMALL_STATE(6602)] = 142615, + [SMALL_STATE(6603)] = 142670, + [SMALL_STATE(6604)] = 142725, + [SMALL_STATE(6605)] = 142780, + [SMALL_STATE(6606)] = 142835, + [SMALL_STATE(6607)] = 142890, + [SMALL_STATE(6608)] = 142945, + [SMALL_STATE(6609)] = 142978, + [SMALL_STATE(6610)] = 143011, + [SMALL_STATE(6611)] = 143066, + [SMALL_STATE(6612)] = 143121, + [SMALL_STATE(6613)] = 143176, + [SMALL_STATE(6614)] = 143231, + [SMALL_STATE(6615)] = 143286, + [SMALL_STATE(6616)] = 143341, + [SMALL_STATE(6617)] = 143396, + [SMALL_STATE(6618)] = 143451, + [SMALL_STATE(6619)] = 143506, + [SMALL_STATE(6620)] = 143561, + [SMALL_STATE(6621)] = 143616, + [SMALL_STATE(6622)] = 143671, + [SMALL_STATE(6623)] = 143726, + [SMALL_STATE(6624)] = 143780, [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(6626)] = 143888, + [SMALL_STATE(6627)] = 143942, + [SMALL_STATE(6628)] = 143996, + [SMALL_STATE(6629)] = 144048, + [SMALL_STATE(6630)] = 144100, + [SMALL_STATE(6631)] = 144154, [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(6633)] = 144258, + [SMALL_STATE(6634)] = 144312, + [SMALL_STATE(6635)] = 144366, + [SMALL_STATE(6636)] = 144418, + [SMALL_STATE(6637)] = 144470, + [SMALL_STATE(6638)] = 144522, + [SMALL_STATE(6639)] = 144576, + [SMALL_STATE(6640)] = 144630, + [SMALL_STATE(6641)] = 144682, + [SMALL_STATE(6642)] = 144734, + [SMALL_STATE(6643)] = 144788, + [SMALL_STATE(6644)] = 144840, + [SMALL_STATE(6645)] = 144892, + [SMALL_STATE(6646)] = 144946, + [SMALL_STATE(6647)] = 144998, + [SMALL_STATE(6648)] = 145052, + [SMALL_STATE(6649)] = 145106, + [SMALL_STATE(6650)] = 145160, + [SMALL_STATE(6651)] = 145214, + [SMALL_STATE(6652)] = 145268, + [SMALL_STATE(6653)] = 145320, + [SMALL_STATE(6654)] = 145372, + [SMALL_STATE(6655)] = 145426, + [SMALL_STATE(6656)] = 145480, + [SMALL_STATE(6657)] = 145534, + [SMALL_STATE(6658)] = 145588, + [SMALL_STATE(6659)] = 145640, + [SMALL_STATE(6660)] = 145694, + [SMALL_STATE(6661)] = 145746, + [SMALL_STATE(6662)] = 145798, + [SMALL_STATE(6663)] = 145852, + [SMALL_STATE(6664)] = 145906, + [SMALL_STATE(6665)] = 145960, + [SMALL_STATE(6666)] = 146014, + [SMALL_STATE(6667)] = 146068, + [SMALL_STATE(6668)] = 146122, + [SMALL_STATE(6669)] = 146174, + [SMALL_STATE(6670)] = 146228, + [SMALL_STATE(6671)] = 146282, + [SMALL_STATE(6672)] = 146336, + [SMALL_STATE(6673)] = 146390, + [SMALL_STATE(6674)] = 146444, + [SMALL_STATE(6675)] = 146496, + [SMALL_STATE(6676)] = 146548, + [SMALL_STATE(6677)] = 146602, + [SMALL_STATE(6678)] = 146656, + [SMALL_STATE(6679)] = 146710, + [SMALL_STATE(6680)] = 146762, + [SMALL_STATE(6681)] = 146816, + [SMALL_STATE(6682)] = 146852, + [SMALL_STATE(6683)] = 146906, + [SMALL_STATE(6684)] = 146960, + [SMALL_STATE(6685)] = 147014, + [SMALL_STATE(6686)] = 147068, + [SMALL_STATE(6687)] = 147122, + [SMALL_STATE(6688)] = 147171, + [SMALL_STATE(6689)] = 147206, + [SMALL_STATE(6690)] = 147255, + [SMALL_STATE(6691)] = 147304, + [SMALL_STATE(6692)] = 147353, + [SMALL_STATE(6693)] = 147402, + [SMALL_STATE(6694)] = 147451, + [SMALL_STATE(6695)] = 147500, + [SMALL_STATE(6696)] = 147549, + [SMALL_STATE(6697)] = 147598, + [SMALL_STATE(6698)] = 147647, + [SMALL_STATE(6699)] = 147696, + [SMALL_STATE(6700)] = 147745, + [SMALL_STATE(6701)] = 147794, + [SMALL_STATE(6702)] = 147843, + [SMALL_STATE(6703)] = 147892, + [SMALL_STATE(6704)] = 147941, + [SMALL_STATE(6705)] = 147990, + [SMALL_STATE(6706)] = 148039, + [SMALL_STATE(6707)] = 148088, + [SMALL_STATE(6708)] = 148137, + [SMALL_STATE(6709)] = 148186, + [SMALL_STATE(6710)] = 148235, + [SMALL_STATE(6711)] = 148284, + [SMALL_STATE(6712)] = 148333, + [SMALL_STATE(6713)] = 148382, + [SMALL_STATE(6714)] = 148431, + [SMALL_STATE(6715)] = 148480, + [SMALL_STATE(6716)] = 148529, + [SMALL_STATE(6717)] = 148578, + [SMALL_STATE(6718)] = 148627, + [SMALL_STATE(6719)] = 148676, + [SMALL_STATE(6720)] = 148725, + [SMALL_STATE(6721)] = 148774, + [SMALL_STATE(6722)] = 148823, + [SMALL_STATE(6723)] = 148872, + [SMALL_STATE(6724)] = 148921, + [SMALL_STATE(6725)] = 148970, + [SMALL_STATE(6726)] = 149019, + [SMALL_STATE(6727)] = 149068, + [SMALL_STATE(6728)] = 149117, + [SMALL_STATE(6729)] = 149166, + [SMALL_STATE(6730)] = 149201, + [SMALL_STATE(6731)] = 149250, + [SMALL_STATE(6732)] = 149299, + [SMALL_STATE(6733)] = 149348, + [SMALL_STATE(6734)] = 149397, + [SMALL_STATE(6735)] = 149446, + [SMALL_STATE(6736)] = 149495, + [SMALL_STATE(6737)] = 149544, + [SMALL_STATE(6738)] = 149593, + [SMALL_STATE(6739)] = 149642, + [SMALL_STATE(6740)] = 149691, + [SMALL_STATE(6741)] = 149740, + [SMALL_STATE(6742)] = 149789, + [SMALL_STATE(6743)] = 149838, + [SMALL_STATE(6744)] = 149868, + [SMALL_STATE(6745)] = 149898, + [SMALL_STATE(6746)] = 149928, + [SMALL_STATE(6747)] = 149958, + [SMALL_STATE(6748)] = 150009, + [SMALL_STATE(6749)] = 150060, + [SMALL_STATE(6750)] = 150109, + [SMALL_STATE(6751)] = 150158, + [SMALL_STATE(6752)] = 150207, + [SMALL_STATE(6753)] = 150256, + [SMALL_STATE(6754)] = 150305, + [SMALL_STATE(6755)] = 150354, + [SMALL_STATE(6756)] = 150403, + [SMALL_STATE(6757)] = 150452, + [SMALL_STATE(6758)] = 150501, + [SMALL_STATE(6759)] = 150550, + [SMALL_STATE(6760)] = 150599, + [SMALL_STATE(6761)] = 150648, + [SMALL_STATE(6762)] = 150699, + [SMALL_STATE(6763)] = 150748, + [SMALL_STATE(6764)] = 150799, + [SMALL_STATE(6765)] = 150848, + [SMALL_STATE(6766)] = 150899, + [SMALL_STATE(6767)] = 150950, + [SMALL_STATE(6768)] = 150999, + [SMALL_STATE(6769)] = 151050, + [SMALL_STATE(6770)] = 151101, + [SMALL_STATE(6771)] = 151150, + [SMALL_STATE(6772)] = 151199, + [SMALL_STATE(6773)] = 151248, + [SMALL_STATE(6774)] = 151297, + [SMALL_STATE(6775)] = 151346, + [SMALL_STATE(6776)] = 151395, + [SMALL_STATE(6777)] = 151444, + [SMALL_STATE(6778)] = 151493, + [SMALL_STATE(6779)] = 151544, + [SMALL_STATE(6780)] = 151593, + [SMALL_STATE(6781)] = 151644, + [SMALL_STATE(6782)] = 151695, + [SMALL_STATE(6783)] = 151746, + [SMALL_STATE(6784)] = 151797, + [SMALL_STATE(6785)] = 151846, + [SMALL_STATE(6786)] = 151895, + [SMALL_STATE(6787)] = 151944, + [SMALL_STATE(6788)] = 151993, + [SMALL_STATE(6789)] = 152042, + [SMALL_STATE(6790)] = 152091, + [SMALL_STATE(6791)] = 152140, + [SMALL_STATE(6792)] = 152189, + [SMALL_STATE(6793)] = 152240, + [SMALL_STATE(6794)] = 152291, + [SMALL_STATE(6795)] = 152342, + [SMALL_STATE(6796)] = 152391, + [SMALL_STATE(6797)] = 152440, + [SMALL_STATE(6798)] = 152491, + [SMALL_STATE(6799)] = 152540, + [SMALL_STATE(6800)] = 152591, + [SMALL_STATE(6801)] = 152642, + [SMALL_STATE(6802)] = 152693, + [SMALL_STATE(6803)] = 152742, + [SMALL_STATE(6804)] = 152793, + [SMALL_STATE(6805)] = 152842, + [SMALL_STATE(6806)] = 152891, + [SMALL_STATE(6807)] = 152942, + [SMALL_STATE(6808)] = 152991, + [SMALL_STATE(6809)] = 153042, + [SMALL_STATE(6810)] = 153093, + [SMALL_STATE(6811)] = 153144, + [SMALL_STATE(6812)] = 153193, + [SMALL_STATE(6813)] = 153242, + [SMALL_STATE(6814)] = 153293, [SMALL_STATE(6815)] = 153344, [SMALL_STATE(6816)] = 153393, [SMALL_STATE(6817)] = 153444, [SMALL_STATE(6818)] = 153495, - [SMALL_STATE(6819)] = 153544, + [SMALL_STATE(6819)] = 153546, [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(6821)] = 153646, + [SMALL_STATE(6822)] = 153695, + [SMALL_STATE(6823)] = 153746, + [SMALL_STATE(6824)] = 153797, + [SMALL_STATE(6825)] = 153846, + [SMALL_STATE(6826)] = 153895, + [SMALL_STATE(6827)] = 153946, + [SMALL_STATE(6828)] = 153995, + [SMALL_STATE(6829)] = 154046, + [SMALL_STATE(6830)] = 154097, + [SMALL_STATE(6831)] = 154148, + [SMALL_STATE(6832)] = 154197, + [SMALL_STATE(6833)] = 154248, + [SMALL_STATE(6834)] = 154299, + [SMALL_STATE(6835)] = 154348, + [SMALL_STATE(6836)] = 154399, + [SMALL_STATE(6837)] = 154450, + [SMALL_STATE(6838)] = 154501, + [SMALL_STATE(6839)] = 154550, + [SMALL_STATE(6840)] = 154599, + [SMALL_STATE(6841)] = 154650, + [SMALL_STATE(6842)] = 154701, + [SMALL_STATE(6843)] = 154750, + [SMALL_STATE(6844)] = 154799, + [SMALL_STATE(6845)] = 154848, + [SMALL_STATE(6846)] = 154899, + [SMALL_STATE(6847)] = 154950, + [SMALL_STATE(6848)] = 155001, + [SMALL_STATE(6849)] = 155052, + [SMALL_STATE(6850)] = 155103, + [SMALL_STATE(6851)] = 155152, + [SMALL_STATE(6852)] = 155201, + [SMALL_STATE(6853)] = 155252, + [SMALL_STATE(6854)] = 155301, + [SMALL_STATE(6855)] = 155352, + [SMALL_STATE(6856)] = 155401, + [SMALL_STATE(6857)] = 155452, + [SMALL_STATE(6858)] = 155503, + [SMALL_STATE(6859)] = 155554, [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(6861)] = 155652, + [SMALL_STATE(6862)] = 155701, + [SMALL_STATE(6863)] = 155750, + [SMALL_STATE(6864)] = 155801, + [SMALL_STATE(6865)] = 155850, + [SMALL_STATE(6866)] = 155901, + [SMALL_STATE(6867)] = 155950, + [SMALL_STATE(6868)] = 156001, + [SMALL_STATE(6869)] = 156052, + [SMALL_STATE(6870)] = 156103, + [SMALL_STATE(6871)] = 156152, + [SMALL_STATE(6872)] = 156203, + [SMALL_STATE(6873)] = 156254, + [SMALL_STATE(6874)] = 156303, + [SMALL_STATE(6875)] = 156354, + [SMALL_STATE(6876)] = 156405, + [SMALL_STATE(6877)] = 156456, + [SMALL_STATE(6878)] = 156505, + [SMALL_STATE(6879)] = 156556, + [SMALL_STATE(6880)] = 156607, + [SMALL_STATE(6881)] = 156658, + [SMALL_STATE(6882)] = 156709, + [SMALL_STATE(6883)] = 156760, + [SMALL_STATE(6884)] = 156809, + [SMALL_STATE(6885)] = 156860, + [SMALL_STATE(6886)] = 156911, + [SMALL_STATE(6887)] = 156962, + [SMALL_STATE(6888)] = 157011, + [SMALL_STATE(6889)] = 157062, + [SMALL_STATE(6890)] = 157113, + [SMALL_STATE(6891)] = 157162, + [SMALL_STATE(6892)] = 157211, + [SMALL_STATE(6893)] = 157262, + [SMALL_STATE(6894)] = 157313, + [SMALL_STATE(6895)] = 157362, + [SMALL_STATE(6896)] = 157411, + [SMALL_STATE(6897)] = 157462, + [SMALL_STATE(6898)] = 157511, + [SMALL_STATE(6899)] = 157560, + [SMALL_STATE(6900)] = 157609, + [SMALL_STATE(6901)] = 157660, + [SMALL_STATE(6902)] = 157709, + [SMALL_STATE(6903)] = 157758, [SMALL_STATE(6904)] = 157809, [SMALL_STATE(6905)] = 157858, [SMALL_STATE(6906)] = 157907, - [SMALL_STATE(6907)] = 157958, + [SMALL_STATE(6907)] = 157956, [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(6911)] = 158156, + [SMALL_STATE(6912)] = 158207, + [SMALL_STATE(6913)] = 158256, + [SMALL_STATE(6914)] = 158305, + [SMALL_STATE(6915)] = 158354, + [SMALL_STATE(6916)] = 158403, + [SMALL_STATE(6917)] = 158452, + [SMALL_STATE(6918)] = 158501, + [SMALL_STATE(6919)] = 158552, + [SMALL_STATE(6920)] = 158601, + [SMALL_STATE(6921)] = 158650, + [SMALL_STATE(6922)] = 158699, + [SMALL_STATE(6923)] = 158748, + [SMALL_STATE(6924)] = 158799, + [SMALL_STATE(6925)] = 158848, + [SMALL_STATE(6926)] = 158899, + [SMALL_STATE(6927)] = 158948, + [SMALL_STATE(6928)] = 158997, + [SMALL_STATE(6929)] = 159048, + [SMALL_STATE(6930)] = 159097, + [SMALL_STATE(6931)] = 159146, + [SMALL_STATE(6932)] = 159195, + [SMALL_STATE(6933)] = 159246, + [SMALL_STATE(6934)] = 159295, + [SMALL_STATE(6935)] = 159346, + [SMALL_STATE(6936)] = 159397, + [SMALL_STATE(6937)] = 159446, + [SMALL_STATE(6938)] = 159495, + [SMALL_STATE(6939)] = 159546, + [SMALL_STATE(6940)] = 159597, + [SMALL_STATE(6941)] = 159646, + [SMALL_STATE(6942)] = 159697, + [SMALL_STATE(6943)] = 159748, + [SMALL_STATE(6944)] = 159799, + [SMALL_STATE(6945)] = 159848, + [SMALL_STATE(6946)] = 159899, + [SMALL_STATE(6947)] = 159948, + [SMALL_STATE(6948)] = 159999, + [SMALL_STATE(6949)] = 160050, + [SMALL_STATE(6950)] = 160099, + [SMALL_STATE(6951)] = 160148, + [SMALL_STATE(6952)] = 160197, + [SMALL_STATE(6953)] = 160248, + [SMALL_STATE(6954)] = 160297, + [SMALL_STATE(6955)] = 160348, + [SMALL_STATE(6956)] = 160397, + [SMALL_STATE(6957)] = 160448, + [SMALL_STATE(6958)] = 160497, + [SMALL_STATE(6959)] = 160546, + [SMALL_STATE(6960)] = 160595, + [SMALL_STATE(6961)] = 160646, + [SMALL_STATE(6962)] = 160697, + [SMALL_STATE(6963)] = 160748, + [SMALL_STATE(6964)] = 160799, + [SMALL_STATE(6965)] = 160850, + [SMALL_STATE(6966)] = 160901, + [SMALL_STATE(6967)] = 160952, + [SMALL_STATE(6968)] = 161001, + [SMALL_STATE(6969)] = 161052, + [SMALL_STATE(6970)] = 161103, + [SMALL_STATE(6971)] = 161152, + [SMALL_STATE(6972)] = 161203, + [SMALL_STATE(6973)] = 161252, + [SMALL_STATE(6974)] = 161303, + [SMALL_STATE(6975)] = 161354, + [SMALL_STATE(6976)] = 161403, + [SMALL_STATE(6977)] = 161452, + [SMALL_STATE(6978)] = 161503, + [SMALL_STATE(6979)] = 161552, + [SMALL_STATE(6980)] = 161603, + [SMALL_STATE(6981)] = 161652, + [SMALL_STATE(6982)] = 161703, + [SMALL_STATE(6983)] = 161754, + [SMALL_STATE(6984)] = 161805, + [SMALL_STATE(6985)] = 161854, + [SMALL_STATE(6986)] = 161903, + [SMALL_STATE(6987)] = 161952, + [SMALL_STATE(6988)] = 162001, + [SMALL_STATE(6989)] = 162050, + [SMALL_STATE(6990)] = 162101, + [SMALL_STATE(6991)] = 162150, + [SMALL_STATE(6992)] = 162199, + [SMALL_STATE(6993)] = 162248, + [SMALL_STATE(6994)] = 162297, + [SMALL_STATE(6995)] = 162348, + [SMALL_STATE(6996)] = 162397, + [SMALL_STATE(6997)] = 162446, + [SMALL_STATE(6998)] = 162495, + [SMALL_STATE(6999)] = 162544, [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(7002)] = 162691, + [SMALL_STATE(7003)] = 162740, + [SMALL_STATE(7004)] = 162789, + [SMALL_STATE(7005)] = 162838, + [SMALL_STATE(7006)] = 162887, + [SMALL_STATE(7007)] = 162936, + [SMALL_STATE(7008)] = 162985, + [SMALL_STATE(7009)] = 163034, + [SMALL_STATE(7010)] = 163085, + [SMALL_STATE(7011)] = 163136, + [SMALL_STATE(7012)] = 163187, + [SMALL_STATE(7013)] = 163238, + [SMALL_STATE(7014)] = 163289, + [SMALL_STATE(7015)] = 163340, + [SMALL_STATE(7016)] = 163389, + [SMALL_STATE(7017)] = 163440, [SMALL_STATE(7018)] = 163491, - [SMALL_STATE(7019)] = 163540, + [SMALL_STATE(7019)] = 163542, [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(7021)] = 163642, + [SMALL_STATE(7022)] = 163693, + [SMALL_STATE(7023)] = 163744, + [SMALL_STATE(7024)] = 163795, + [SMALL_STATE(7025)] = 163846, + [SMALL_STATE(7026)] = 163897, + [SMALL_STATE(7027)] = 163948, + [SMALL_STATE(7028)] = 163999, + [SMALL_STATE(7029)] = 164050, + [SMALL_STATE(7030)] = 164101, + [SMALL_STATE(7031)] = 164150, + [SMALL_STATE(7032)] = 164201, + [SMALL_STATE(7033)] = 164250, + [SMALL_STATE(7034)] = 164299, + [SMALL_STATE(7035)] = 164350, + [SMALL_STATE(7036)] = 164399, + [SMALL_STATE(7037)] = 164450, + [SMALL_STATE(7038)] = 164501, + [SMALL_STATE(7039)] = 164552, + [SMALL_STATE(7040)] = 164601, + [SMALL_STATE(7041)] = 164650, + [SMALL_STATE(7042)] = 164701, + [SMALL_STATE(7043)] = 164752, + [SMALL_STATE(7044)] = 164803, + [SMALL_STATE(7045)] = 164854, + [SMALL_STATE(7046)] = 164905, + [SMALL_STATE(7047)] = 164956, + [SMALL_STATE(7048)] = 165005, + [SMALL_STATE(7049)] = 165054, + [SMALL_STATE(7050)] = 165103, + [SMALL_STATE(7051)] = 165152, + [SMALL_STATE(7052)] = 165201, + [SMALL_STATE(7053)] = 165250, + [SMALL_STATE(7054)] = 165301, + [SMALL_STATE(7055)] = 165352, + [SMALL_STATE(7056)] = 165401, + [SMALL_STATE(7057)] = 165450, + [SMALL_STATE(7058)] = 165501, + [SMALL_STATE(7059)] = 165550, + [SMALL_STATE(7060)] = 165601, + [SMALL_STATE(7061)] = 165652, + [SMALL_STATE(7062)] = 165701, + [SMALL_STATE(7063)] = 165750, + [SMALL_STATE(7064)] = 165801, + [SMALL_STATE(7065)] = 165852, + [SMALL_STATE(7066)] = 165903, + [SMALL_STATE(7067)] = 165952, + [SMALL_STATE(7068)] = 166003, + [SMALL_STATE(7069)] = 166054, + [SMALL_STATE(7070)] = 166105, + [SMALL_STATE(7071)] = 166156, + [SMALL_STATE(7072)] = 166207, + [SMALL_STATE(7073)] = 166258, + [SMALL_STATE(7074)] = 166307, + [SMALL_STATE(7075)] = 166358, + [SMALL_STATE(7076)] = 166409, + [SMALL_STATE(7077)] = 166460, + [SMALL_STATE(7078)] = 166511, + [SMALL_STATE(7079)] = 166560, + [SMALL_STATE(7080)] = 166611, + [SMALL_STATE(7081)] = 166662, + [SMALL_STATE(7082)] = 166713, + [SMALL_STATE(7083)] = 166764, + [SMALL_STATE(7084)] = 166815, + [SMALL_STATE(7085)] = 166866, + [SMALL_STATE(7086)] = 166917, + [SMALL_STATE(7087)] = 166968, + [SMALL_STATE(7088)] = 167019, [SMALL_STATE(7089)] = 167068, [SMALL_STATE(7090)] = 167119, [SMALL_STATE(7091)] = 167170, @@ -672362,10 +669047,10 @@ static const uint32_t ts_small_parse_table_map[] = { [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(7098)] = 167525, + [SMALL_STATE(7099)] = 167576, + [SMALL_STATE(7100)] = 167627, + [SMALL_STATE(7101)] = 167678, [SMALL_STATE(7102)] = 167729, [SMALL_STATE(7103)] = 167780, [SMALL_STATE(7104)] = 167831, @@ -672399,1935 +669084,1935 @@ static const uint32_t ts_small_parse_table_map[] = { [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(7135)] = 169410, + [SMALL_STATE(7136)] = 169454, + [SMALL_STATE(7137)] = 169498, + [SMALL_STATE(7138)] = 169542, + [SMALL_STATE(7139)] = 169590, + [SMALL_STATE(7140)] = 169628, + [SMALL_STATE(7141)] = 169676, + [SMALL_STATE(7142)] = 169720, + [SMALL_STATE(7143)] = 169764, + [SMALL_STATE(7144)] = 169808, + [SMALL_STATE(7145)] = 169852, + [SMALL_STATE(7146)] = 169900, + [SMALL_STATE(7147)] = 169948, [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(7150)] = 170066, + [SMALL_STATE(7151)] = 170110, + [SMALL_STATE(7152)] = 170154, + [SMALL_STATE(7153)] = 170202, + [SMALL_STATE(7154)] = 170246, + [SMALL_STATE(7155)] = 170290, + [SMALL_STATE(7156)] = 170338, + [SMALL_STATE(7157)] = 170382, + [SMALL_STATE(7158)] = 170426, + [SMALL_STATE(7159)] = 170470, + [SMALL_STATE(7160)] = 170514, + [SMALL_STATE(7161)] = 170558, + [SMALL_STATE(7162)] = 170602, + [SMALL_STATE(7163)] = 170646, + [SMALL_STATE(7164)] = 170684, + [SMALL_STATE(7165)] = 170728, + [SMALL_STATE(7166)] = 170772, + [SMALL_STATE(7167)] = 170816, + [SMALL_STATE(7168)] = 170860, + [SMALL_STATE(7169)] = 170908, + [SMALL_STATE(7170)] = 170936, + [SMALL_STATE(7171)] = 170980, + [SMALL_STATE(7172)] = 171024, + [SMALL_STATE(7173)] = 171068, + [SMALL_STATE(7174)] = 171112, + [SMALL_STATE(7175)] = 171156, + [SMALL_STATE(7176)] = 171192, + [SMALL_STATE(7177)] = 171240, + [SMALL_STATE(7178)] = 171284, + [SMALL_STATE(7179)] = 171328, + [SMALL_STATE(7180)] = 171372, + [SMALL_STATE(7181)] = 171420, + [SMALL_STATE(7182)] = 171464, + [SMALL_STATE(7183)] = 171508, + [SMALL_STATE(7184)] = 171552, [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(7187)] = 171684, + [SMALL_STATE(7188)] = 171732, + [SMALL_STATE(7189)] = 171776, + [SMALL_STATE(7190)] = 171820, + [SMALL_STATE(7191)] = 171852, + [SMALL_STATE(7192)] = 171900, + [SMALL_STATE(7193)] = 171944, + [SMALL_STATE(7194)] = 171988, + [SMALL_STATE(7195)] = 172032, + [SMALL_STATE(7196)] = 172076, + [SMALL_STATE(7197)] = 172120, + [SMALL_STATE(7198)] = 172164, + [SMALL_STATE(7199)] = 172208, + [SMALL_STATE(7200)] = 172252, + [SMALL_STATE(7201)] = 172296, + [SMALL_STATE(7202)] = 172340, + [SMALL_STATE(7203)] = 172384, + [SMALL_STATE(7204)] = 172420, + [SMALL_STATE(7205)] = 172468, + [SMALL_STATE(7206)] = 172516, + [SMALL_STATE(7207)] = 172560, + [SMALL_STATE(7208)] = 172604, + [SMALL_STATE(7209)] = 172652, + [SMALL_STATE(7210)] = 172700, + [SMALL_STATE(7211)] = 172744, + [SMALL_STATE(7212)] = 172771, + [SMALL_STATE(7213)] = 172802, + [SMALL_STATE(7214)] = 172837, + [SMALL_STATE(7215)] = 172868, + [SMALL_STATE(7216)] = 172899, + [SMALL_STATE(7217)] = 172942, + [SMALL_STATE(7218)] = 172973, + [SMALL_STATE(7219)] = 173000, + [SMALL_STATE(7220)] = 173035, + [SMALL_STATE(7221)] = 173070, + [SMALL_STATE(7222)] = 173105, + [SMALL_STATE(7223)] = 173140, + [SMALL_STATE(7224)] = 173171, + [SMALL_STATE(7225)] = 173211, + [SMALL_STATE(7226)] = 173237, + [SMALL_STATE(7227)] = 173277, + [SMALL_STATE(7228)] = 173317, + [SMALL_STATE(7229)] = 173357, + [SMALL_STATE(7230)] = 173397, + [SMALL_STATE(7231)] = 173437, + [SMALL_STATE(7232)] = 173477, + [SMALL_STATE(7233)] = 173517, + [SMALL_STATE(7234)] = 173557, + [SMALL_STATE(7235)] = 173597, + [SMALL_STATE(7236)] = 173623, + [SMALL_STATE(7237)] = 173663, + [SMALL_STATE(7238)] = 173689, + [SMALL_STATE(7239)] = 173729, + [SMALL_STATE(7240)] = 173769, + [SMALL_STATE(7241)] = 173809, + [SMALL_STATE(7242)] = 173849, + [SMALL_STATE(7243)] = 173889, + [SMALL_STATE(7244)] = 173929, + [SMALL_STATE(7245)] = 173969, + [SMALL_STATE(7246)] = 174009, + [SMALL_STATE(7247)] = 174049, + [SMALL_STATE(7248)] = 174089, + [SMALL_STATE(7249)] = 174129, + [SMALL_STATE(7250)] = 174169, + [SMALL_STATE(7251)] = 174209, + [SMALL_STATE(7252)] = 174249, + [SMALL_STATE(7253)] = 174275, + [SMALL_STATE(7254)] = 174315, + [SMALL_STATE(7255)] = 174345, + [SMALL_STATE(7256)] = 174375, + [SMALL_STATE(7257)] = 174403, + [SMALL_STATE(7258)] = 174443, + [SMALL_STATE(7259)] = 174483, + [SMALL_STATE(7260)] = 174523, + [SMALL_STATE(7261)] = 174563, + [SMALL_STATE(7262)] = 174603, + [SMALL_STATE(7263)] = 174643, + [SMALL_STATE(7264)] = 174683, + [SMALL_STATE(7265)] = 174723, + [SMALL_STATE(7266)] = 174763, + [SMALL_STATE(7267)] = 174803, + [SMALL_STATE(7268)] = 174843, + [SMALL_STATE(7269)] = 174883, + [SMALL_STATE(7270)] = 174923, + [SMALL_STATE(7271)] = 174963, + [SMALL_STATE(7272)] = 175003, + [SMALL_STATE(7273)] = 175043, + [SMALL_STATE(7274)] = 175083, + [SMALL_STATE(7275)] = 175123, + [SMALL_STATE(7276)] = 175163, + [SMALL_STATE(7277)] = 175191, + [SMALL_STATE(7278)] = 175231, + [SMALL_STATE(7279)] = 175271, + [SMALL_STATE(7280)] = 175311, + [SMALL_STATE(7281)] = 175348, + [SMALL_STATE(7282)] = 175385, + [SMALL_STATE(7283)] = 175422, + [SMALL_STATE(7284)] = 175459, + [SMALL_STATE(7285)] = 175496, + [SMALL_STATE(7286)] = 175535, + [SMALL_STATE(7287)] = 175566, + [SMALL_STATE(7288)] = 175603, + [SMALL_STATE(7289)] = 175640, + [SMALL_STATE(7290)] = 175677, + [SMALL_STATE(7291)] = 175714, + [SMALL_STATE(7292)] = 175753, + [SMALL_STATE(7293)] = 175790, + [SMALL_STATE(7294)] = 175815, + [SMALL_STATE(7295)] = 175852, + [SMALL_STATE(7296)] = 175877, + [SMALL_STATE(7297)] = 175914, + [SMALL_STATE(7298)] = 175951, + [SMALL_STATE(7299)] = 175976, + [SMALL_STATE(7300)] = 176013, + [SMALL_STATE(7301)] = 176050, + [SMALL_STATE(7302)] = 176087, + [SMALL_STATE(7303)] = 176124, + [SMALL_STATE(7304)] = 176149, + [SMALL_STATE(7305)] = 176188, + [SMALL_STATE(7306)] = 176217, + [SMALL_STATE(7307)] = 176254, + [SMALL_STATE(7308)] = 176291, + [SMALL_STATE(7309)] = 176328, + [SMALL_STATE(7310)] = 176365, + [SMALL_STATE(7311)] = 176402, + [SMALL_STATE(7312)] = 176431, + [SMALL_STATE(7313)] = 176470, + [SMALL_STATE(7314)] = 176507, + [SMALL_STATE(7315)] = 176546, + [SMALL_STATE(7316)] = 176583, + [SMALL_STATE(7317)] = 176620, + [SMALL_STATE(7318)] = 176657, + [SMALL_STATE(7319)] = 176686, + [SMALL_STATE(7320)] = 176725, + [SMALL_STATE(7321)] = 176762, + [SMALL_STATE(7322)] = 176799, + [SMALL_STATE(7323)] = 176836, + [SMALL_STATE(7324)] = 176873, + [SMALL_STATE(7325)] = 176910, + [SMALL_STATE(7326)] = 176949, + [SMALL_STATE(7327)] = 176988, + [SMALL_STATE(7328)] = 177025, + [SMALL_STATE(7329)] = 177064, + [SMALL_STATE(7330)] = 177101, + [SMALL_STATE(7331)] = 177138, + [SMALL_STATE(7332)] = 177175, + [SMALL_STATE(7333)] = 177212, + [SMALL_STATE(7334)] = 177249, + [SMALL_STATE(7335)] = 177288, + [SMALL_STATE(7336)] = 177325, + [SMALL_STATE(7337)] = 177362, + [SMALL_STATE(7338)] = 177399, + [SMALL_STATE(7339)] = 177436, + [SMALL_STATE(7340)] = 177473, + [SMALL_STATE(7341)] = 177510, + [SMALL_STATE(7342)] = 177547, + [SMALL_STATE(7343)] = 177576, + [SMALL_STATE(7344)] = 177601, + [SMALL_STATE(7345)] = 177626, + [SMALL_STATE(7346)] = 177651, + [SMALL_STATE(7347)] = 177676, + [SMALL_STATE(7348)] = 177701, + [SMALL_STATE(7349)] = 177726, + [SMALL_STATE(7350)] = 177763, + [SMALL_STATE(7351)] = 177800, + [SMALL_STATE(7352)] = 177827, + [SMALL_STATE(7353)] = 177866, + [SMALL_STATE(7354)] = 177905, + [SMALL_STATE(7355)] = 177934, + [SMALL_STATE(7356)] = 177973, + [SMALL_STATE(7357)] = 178010, + [SMALL_STATE(7358)] = 178035, + [SMALL_STATE(7359)] = 178060, + [SMALL_STATE(7360)] = 178096, + [SMALL_STATE(7361)] = 178132, + [SMALL_STATE(7362)] = 178168, + [SMALL_STATE(7363)] = 178204, + [SMALL_STATE(7364)] = 178240, + [SMALL_STATE(7365)] = 178276, + [SMALL_STATE(7366)] = 178312, + [SMALL_STATE(7367)] = 178348, + [SMALL_STATE(7368)] = 178384, + [SMALL_STATE(7369)] = 178420, + [SMALL_STATE(7370)] = 178456, + [SMALL_STATE(7371)] = 178492, + [SMALL_STATE(7372)] = 178528, + [SMALL_STATE(7373)] = 178564, + [SMALL_STATE(7374)] = 178600, + [SMALL_STATE(7375)] = 178636, + [SMALL_STATE(7376)] = 178672, + [SMALL_STATE(7377)] = 178708, + [SMALL_STATE(7378)] = 178740, + [SMALL_STATE(7379)] = 178776, + [SMALL_STATE(7380)] = 178812, + [SMALL_STATE(7381)] = 178848, + [SMALL_STATE(7382)] = 178884, + [SMALL_STATE(7383)] = 178920, + [SMALL_STATE(7384)] = 178956, + [SMALL_STATE(7385)] = 178992, + [SMALL_STATE(7386)] = 179028, + [SMALL_STATE(7387)] = 179064, + [SMALL_STATE(7388)] = 179100, + [SMALL_STATE(7389)] = 179132, + [SMALL_STATE(7390)] = 179168, + [SMALL_STATE(7391)] = 179204, + [SMALL_STATE(7392)] = 179240, + [SMALL_STATE(7393)] = 179276, + [SMALL_STATE(7394)] = 179312, + [SMALL_STATE(7395)] = 179348, + [SMALL_STATE(7396)] = 179384, + [SMALL_STATE(7397)] = 179420, + [SMALL_STATE(7398)] = 179456, + [SMALL_STATE(7399)] = 179480, + [SMALL_STATE(7400)] = 179516, + [SMALL_STATE(7401)] = 179552, + [SMALL_STATE(7402)] = 179584, + [SMALL_STATE(7403)] = 179620, + [SMALL_STATE(7404)] = 179656, + [SMALL_STATE(7405)] = 179688, + [SMALL_STATE(7406)] = 179720, + [SMALL_STATE(7407)] = 179756, + [SMALL_STATE(7408)] = 179792, + [SMALL_STATE(7409)] = 179824, + [SMALL_STATE(7410)] = 179848, + [SMALL_STATE(7411)] = 179884, + [SMALL_STATE(7412)] = 179920, + [SMALL_STATE(7413)] = 179952, + [SMALL_STATE(7414)] = 179980, + [SMALL_STATE(7415)] = 180012, + [SMALL_STATE(7416)] = 180044, + [SMALL_STATE(7417)] = 180080, + [SMALL_STATE(7418)] = 180116, + [SMALL_STATE(7419)] = 180152, + [SMALL_STATE(7420)] = 180188, + [SMALL_STATE(7421)] = 180224, + [SMALL_STATE(7422)] = 180260, + [SMALL_STATE(7423)] = 180292, + [SMALL_STATE(7424)] = 180328, + [SMALL_STATE(7425)] = 180364, + [SMALL_STATE(7426)] = 180400, + [SMALL_STATE(7427)] = 180428, + [SMALL_STATE(7428)] = 180460, + [SMALL_STATE(7429)] = 180492, + [SMALL_STATE(7430)] = 180524, + [SMALL_STATE(7431)] = 180560, + [SMALL_STATE(7432)] = 180596, + [SMALL_STATE(7433)] = 180628, + [SMALL_STATE(7434)] = 180660, + [SMALL_STATE(7435)] = 180688, + [SMALL_STATE(7436)] = 180726, + [SMALL_STATE(7437)] = 180758, + [SMALL_STATE(7438)] = 180790, + [SMALL_STATE(7439)] = 180826, + [SMALL_STATE(7440)] = 180858, + [SMALL_STATE(7441)] = 180894, + [SMALL_STATE(7442)] = 180930, + [SMALL_STATE(7443)] = 180966, [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(7445)] = 181034, + [SMALL_STATE(7446)] = 181066, + [SMALL_STATE(7447)] = 181098, + [SMALL_STATE(7448)] = 181134, + [SMALL_STATE(7449)] = 181170, + [SMALL_STATE(7450)] = 181204, + [SMALL_STATE(7451)] = 181240, + [SMALL_STATE(7452)] = 181276, + [SMALL_STATE(7453)] = 181308, + [SMALL_STATE(7454)] = 181344, + [SMALL_STATE(7455)] = 181376, + [SMALL_STATE(7456)] = 181412, + [SMALL_STATE(7457)] = 181448, + [SMALL_STATE(7458)] = 181484, + [SMALL_STATE(7459)] = 181516, + [SMALL_STATE(7460)] = 181552, + [SMALL_STATE(7461)] = 181584, + [SMALL_STATE(7462)] = 181616, + [SMALL_STATE(7463)] = 181652, + [SMALL_STATE(7464)] = 181684, + [SMALL_STATE(7465)] = 181720, + [SMALL_STATE(7466)] = 181752, + [SMALL_STATE(7467)] = 181784, + [SMALL_STATE(7468)] = 181820, + [SMALL_STATE(7469)] = 181852, + [SMALL_STATE(7470)] = 181888, + [SMALL_STATE(7471)] = 181924, + [SMALL_STATE(7472)] = 181956, + [SMALL_STATE(7473)] = 181992, + [SMALL_STATE(7474)] = 182022, + [SMALL_STATE(7475)] = 182058, + [SMALL_STATE(7476)] = 182094, + [SMALL_STATE(7477)] = 182130, + [SMALL_STATE(7478)] = 182162, + [SMALL_STATE(7479)] = 182198, + [SMALL_STATE(7480)] = 182234, + [SMALL_STATE(7481)] = 182266, + [SMALL_STATE(7482)] = 182298, + [SMALL_STATE(7483)] = 182334, + [SMALL_STATE(7484)] = 182366, + [SMALL_STATE(7485)] = 182398, + [SMALL_STATE(7486)] = 182434, + [SMALL_STATE(7487)] = 182466, + [SMALL_STATE(7488)] = 182502, + [SMALL_STATE(7489)] = 182534, + [SMALL_STATE(7490)] = 182566, + [SMALL_STATE(7491)] = 182602, + [SMALL_STATE(7492)] = 182634, + [SMALL_STATE(7493)] = 182670, + [SMALL_STATE(7494)] = 182706, + [SMALL_STATE(7495)] = 182738, + [SMALL_STATE(7496)] = 182774, + [SMALL_STATE(7497)] = 182806, + [SMALL_STATE(7498)] = 182842, + [SMALL_STATE(7499)] = 182878, + [SMALL_STATE(7500)] = 182914, + [SMALL_STATE(7501)] = 182950, + [SMALL_STATE(7502)] = 182982, + [SMALL_STATE(7503)] = 183018, + [SMALL_STATE(7504)] = 183054, + [SMALL_STATE(7505)] = 183086, + [SMALL_STATE(7506)] = 183118, + [SMALL_STATE(7507)] = 183150, + [SMALL_STATE(7508)] = 183182, + [SMALL_STATE(7509)] = 183214, + [SMALL_STATE(7510)] = 183250, + [SMALL_STATE(7511)] = 183282, + [SMALL_STATE(7512)] = 183314, + [SMALL_STATE(7513)] = 183350, + [SMALL_STATE(7514)] = 183386, + [SMALL_STATE(7515)] = 183418, + [SMALL_STATE(7516)] = 183450, + [SMALL_STATE(7517)] = 183482, + [SMALL_STATE(7518)] = 183514, + [SMALL_STATE(7519)] = 183550, + [SMALL_STATE(7520)] = 183582, + [SMALL_STATE(7521)] = 183618, + [SMALL_STATE(7522)] = 183654, + [SMALL_STATE(7523)] = 183686, + [SMALL_STATE(7524)] = 183718, + [SMALL_STATE(7525)] = 183754, + [SMALL_STATE(7526)] = 183790, + [SMALL_STATE(7527)] = 183826, + [SMALL_STATE(7528)] = 183858, + [SMALL_STATE(7529)] = 183894, + [SMALL_STATE(7530)] = 183930, + [SMALL_STATE(7531)] = 183966, + [SMALL_STATE(7532)] = 183998, + [SMALL_STATE(7533)] = 184030, + [SMALL_STATE(7534)] = 184062, + [SMALL_STATE(7535)] = 184098, + [SMALL_STATE(7536)] = 184130, + [SMALL_STATE(7537)] = 184166, + [SMALL_STATE(7538)] = 184198, + [SMALL_STATE(7539)] = 184230, + [SMALL_STATE(7540)] = 184262, + [SMALL_STATE(7541)] = 184294, + [SMALL_STATE(7542)] = 184330, + [SMALL_STATE(7543)] = 184366, + [SMALL_STATE(7544)] = 184398, + [SMALL_STATE(7545)] = 184434, + [SMALL_STATE(7546)] = 184470, + [SMALL_STATE(7547)] = 184506, [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(7549)] = 184578, + [SMALL_STATE(7550)] = 184610, + [SMALL_STATE(7551)] = 184642, + [SMALL_STATE(7552)] = 184678, + [SMALL_STATE(7553)] = 184714, + [SMALL_STATE(7554)] = 184746, + [SMALL_STATE(7555)] = 184782, + [SMALL_STATE(7556)] = 184814, + [SMALL_STATE(7557)] = 184850, + [SMALL_STATE(7558)] = 184886, + [SMALL_STATE(7559)] = 184922, + [SMALL_STATE(7560)] = 184958, + [SMALL_STATE(7561)] = 184994, + [SMALL_STATE(7562)] = 185026, + [SMALL_STATE(7563)] = 185062, + [SMALL_STATE(7564)] = 185098, + [SMALL_STATE(7565)] = 185134, + [SMALL_STATE(7566)] = 185170, + [SMALL_STATE(7567)] = 185206, + [SMALL_STATE(7568)] = 185238, + [SMALL_STATE(7569)] = 185274, + [SMALL_STATE(7570)] = 185310, + [SMALL_STATE(7571)] = 185338, + [SMALL_STATE(7572)] = 185374, + [SMALL_STATE(7573)] = 185410, + [SMALL_STATE(7574)] = 185446, + [SMALL_STATE(7575)] = 185482, + [SMALL_STATE(7576)] = 185514, + [SMALL_STATE(7577)] = 185546, + [SMALL_STATE(7578)] = 185582, + [SMALL_STATE(7579)] = 185614, + [SMALL_STATE(7580)] = 185650, + [SMALL_STATE(7581)] = 185686, + [SMALL_STATE(7582)] = 185722, + [SMALL_STATE(7583)] = 185758, + [SMALL_STATE(7584)] = 185794, + [SMALL_STATE(7585)] = 185830, + [SMALL_STATE(7586)] = 185866, + [SMALL_STATE(7587)] = 185898, + [SMALL_STATE(7588)] = 185934, + [SMALL_STATE(7589)] = 185958, + [SMALL_STATE(7590)] = 185994, + [SMALL_STATE(7591)] = 186018, + [SMALL_STATE(7592)] = 186042, + [SMALL_STATE(7593)] = 186066, + [SMALL_STATE(7594)] = 186102, + [SMALL_STATE(7595)] = 186138, + [SMALL_STATE(7596)] = 186176, + [SMALL_STATE(7597)] = 186212, + [SMALL_STATE(7598)] = 186244, + [SMALL_STATE(7599)] = 186276, + [SMALL_STATE(7600)] = 186312, + [SMALL_STATE(7601)] = 186344, + [SMALL_STATE(7602)] = 186376, + [SMALL_STATE(7603)] = 186400, + [SMALL_STATE(7604)] = 186433, + [SMALL_STATE(7605)] = 186468, [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(7607)] = 186536, + [SMALL_STATE(7608)] = 186571, + [SMALL_STATE(7609)] = 186604, + [SMALL_STATE(7610)] = 186639, + [SMALL_STATE(7611)] = 186674, + [SMALL_STATE(7612)] = 186707, + [SMALL_STATE(7613)] = 186742, + [SMALL_STATE(7614)] = 186765, + [SMALL_STATE(7615)] = 186800, + [SMALL_STATE(7616)] = 186835, + [SMALL_STATE(7617)] = 186870, + [SMALL_STATE(7618)] = 186905, + [SMALL_STATE(7619)] = 186940, + [SMALL_STATE(7620)] = 186973, + [SMALL_STATE(7621)] = 187008, + [SMALL_STATE(7622)] = 187043, + [SMALL_STATE(7623)] = 187076, + [SMALL_STATE(7624)] = 187111, + [SMALL_STATE(7625)] = 187146, + [SMALL_STATE(7626)] = 187181, + [SMALL_STATE(7627)] = 187216, + [SMALL_STATE(7628)] = 187249, + [SMALL_STATE(7629)] = 187284, + [SMALL_STATE(7630)] = 187319, + [SMALL_STATE(7631)] = 187354, + [SMALL_STATE(7632)] = 187387, + [SMALL_STATE(7633)] = 187422, + [SMALL_STATE(7634)] = 187457, + [SMALL_STATE(7635)] = 187492, + [SMALL_STATE(7636)] = 187527, + [SMALL_STATE(7637)] = 187562, + [SMALL_STATE(7638)] = 187597, + [SMALL_STATE(7639)] = 187632, + [SMALL_STATE(7640)] = 187667, + [SMALL_STATE(7641)] = 187702, + [SMALL_STATE(7642)] = 187735, + [SMALL_STATE(7643)] = 187770, + [SMALL_STATE(7644)] = 187803, + [SMALL_STATE(7645)] = 187838, + [SMALL_STATE(7646)] = 187873, + [SMALL_STATE(7647)] = 187908, + [SMALL_STATE(7648)] = 187943, + [SMALL_STATE(7649)] = 187978, + [SMALL_STATE(7650)] = 188013, + [SMALL_STATE(7651)] = 188046, + [SMALL_STATE(7652)] = 188079, + [SMALL_STATE(7653)] = 188112, + [SMALL_STATE(7654)] = 188147, + [SMALL_STATE(7655)] = 188180, + [SMALL_STATE(7656)] = 188215, + [SMALL_STATE(7657)] = 188250, + [SMALL_STATE(7658)] = 188285, + [SMALL_STATE(7659)] = 188318, + [SMALL_STATE(7660)] = 188353, + [SMALL_STATE(7661)] = 188386, + [SMALL_STATE(7662)] = 188421, + [SMALL_STATE(7663)] = 188456, + [SMALL_STATE(7664)] = 188491, + [SMALL_STATE(7665)] = 188526, + [SMALL_STATE(7666)] = 188559, + [SMALL_STATE(7667)] = 188594, + [SMALL_STATE(7668)] = 188627, + [SMALL_STATE(7669)] = 188662, + [SMALL_STATE(7670)] = 188697, + [SMALL_STATE(7671)] = 188730, + [SMALL_STATE(7672)] = 188763, + [SMALL_STATE(7673)] = 188796, + [SMALL_STATE(7674)] = 188831, + [SMALL_STATE(7675)] = 188864, + [SMALL_STATE(7676)] = 188887, + [SMALL_STATE(7677)] = 188922, + [SMALL_STATE(7678)] = 188957, + [SMALL_STATE(7679)] = 188990, + [SMALL_STATE(7680)] = 189023, + [SMALL_STATE(7681)] = 189046, + [SMALL_STATE(7682)] = 189079, + [SMALL_STATE(7683)] = 189114, + [SMALL_STATE(7684)] = 189147, + [SMALL_STATE(7685)] = 189182, + [SMALL_STATE(7686)] = 189217, + [SMALL_STATE(7687)] = 189252, + [SMALL_STATE(7688)] = 189285, + [SMALL_STATE(7689)] = 189320, + [SMALL_STATE(7690)] = 189353, + [SMALL_STATE(7691)] = 189388, + [SMALL_STATE(7692)] = 189421, + [SMALL_STATE(7693)] = 189444, + [SMALL_STATE(7694)] = 189467, + [SMALL_STATE(7695)] = 189490, + [SMALL_STATE(7696)] = 189523, + [SMALL_STATE(7697)] = 189556, + [SMALL_STATE(7698)] = 189591, + [SMALL_STATE(7699)] = 189626, + [SMALL_STATE(7700)] = 189661, + [SMALL_STATE(7701)] = 189694, + [SMALL_STATE(7702)] = 189729, + [SMALL_STATE(7703)] = 189764, + [SMALL_STATE(7704)] = 189799, + [SMALL_STATE(7705)] = 189834, + [SMALL_STATE(7706)] = 189867, + [SMALL_STATE(7707)] = 189902, + [SMALL_STATE(7708)] = 189937, + [SMALL_STATE(7709)] = 189972, + [SMALL_STATE(7710)] = 190007, + [SMALL_STATE(7711)] = 190042, + [SMALL_STATE(7712)] = 190075, + [SMALL_STATE(7713)] = 190110, + [SMALL_STATE(7714)] = 190145, + [SMALL_STATE(7715)] = 190180, + [SMALL_STATE(7716)] = 190203, + [SMALL_STATE(7717)] = 190238, + [SMALL_STATE(7718)] = 190261, + [SMALL_STATE(7719)] = 190296, + [SMALL_STATE(7720)] = 190331, + [SMALL_STATE(7721)] = 190366, + [SMALL_STATE(7722)] = 190399, + [SMALL_STATE(7723)] = 190434, + [SMALL_STATE(7724)] = 190467, + [SMALL_STATE(7725)] = 190502, + [SMALL_STATE(7726)] = 190537, + [SMALL_STATE(7727)] = 190570, + [SMALL_STATE(7728)] = 190605, + [SMALL_STATE(7729)] = 190640, + [SMALL_STATE(7730)] = 190673, + [SMALL_STATE(7731)] = 190708, + [SMALL_STATE(7732)] = 190737, + [SMALL_STATE(7733)] = 190772, + [SMALL_STATE(7734)] = 190805, + [SMALL_STATE(7735)] = 190838, + [SMALL_STATE(7736)] = 190871, + [SMALL_STATE(7737)] = 190906, + [SMALL_STATE(7738)] = 190939, + [SMALL_STATE(7739)] = 190972, + [SMALL_STATE(7740)] = 191007, + [SMALL_STATE(7741)] = 191042, + [SMALL_STATE(7742)] = 191077, + [SMALL_STATE(7743)] = 191110, + [SMALL_STATE(7744)] = 191145, + [SMALL_STATE(7745)] = 191180, + [SMALL_STATE(7746)] = 191203, + [SMALL_STATE(7747)] = 191238, + [SMALL_STATE(7748)] = 191271, + [SMALL_STATE(7749)] = 191304, + [SMALL_STATE(7750)] = 191337, + [SMALL_STATE(7751)] = 191372, + [SMALL_STATE(7752)] = 191407, + [SMALL_STATE(7753)] = 191442, + [SMALL_STATE(7754)] = 191477, + [SMALL_STATE(7755)] = 191512, + [SMALL_STATE(7756)] = 191545, + [SMALL_STATE(7757)] = 191568, + [SMALL_STATE(7758)] = 191603, + [SMALL_STATE(7759)] = 191636, + [SMALL_STATE(7760)] = 191671, + [SMALL_STATE(7761)] = 191706, + [SMALL_STATE(7762)] = 191741, + [SMALL_STATE(7763)] = 191774, + [SMALL_STATE(7764)] = 191809, + [SMALL_STATE(7765)] = 191844, + [SMALL_STATE(7766)] = 191879, + [SMALL_STATE(7767)] = 191914, + [SMALL_STATE(7768)] = 191949, + [SMALL_STATE(7769)] = 191982, + [SMALL_STATE(7770)] = 192015, + [SMALL_STATE(7771)] = 192050, + [SMALL_STATE(7772)] = 192083, + [SMALL_STATE(7773)] = 192118, + [SMALL_STATE(7774)] = 192153, + [SMALL_STATE(7775)] = 192186, + [SMALL_STATE(7776)] = 192221, + [SMALL_STATE(7777)] = 192254, + [SMALL_STATE(7778)] = 192289, + [SMALL_STATE(7779)] = 192324, + [SMALL_STATE(7780)] = 192359, + [SMALL_STATE(7781)] = 192394, + [SMALL_STATE(7782)] = 192427, + [SMALL_STATE(7783)] = 192460, + [SMALL_STATE(7784)] = 192495, + [SMALL_STATE(7785)] = 192528, + [SMALL_STATE(7786)] = 192563, + [SMALL_STATE(7787)] = 192598, + [SMALL_STATE(7788)] = 192633, + [SMALL_STATE(7789)] = 192660, + [SMALL_STATE(7790)] = 192693, + [SMALL_STATE(7791)] = 192726, + [SMALL_STATE(7792)] = 192761, + [SMALL_STATE(7793)] = 192794, + [SMALL_STATE(7794)] = 192827, + [SMALL_STATE(7795)] = 192860, + [SMALL_STATE(7796)] = 192893, + [SMALL_STATE(7797)] = 192928, + [SMALL_STATE(7798)] = 192961, + [SMALL_STATE(7799)] = 192996, + [SMALL_STATE(7800)] = 193031, + [SMALL_STATE(7801)] = 193066, + [SMALL_STATE(7802)] = 193099, + [SMALL_STATE(7803)] = 193132, + [SMALL_STATE(7804)] = 193167, + [SMALL_STATE(7805)] = 193202, + [SMALL_STATE(7806)] = 193235, + [SMALL_STATE(7807)] = 193258, + [SMALL_STATE(7808)] = 193291, + [SMALL_STATE(7809)] = 193326, + [SMALL_STATE(7810)] = 193359, + [SMALL_STATE(7811)] = 193392, [SMALL_STATE(7812)] = 193425, [SMALL_STATE(7813)] = 193458, - [SMALL_STATE(7814)] = 193493, - [SMALL_STATE(7815)] = 193528, - [SMALL_STATE(7816)] = 193561, + [SMALL_STATE(7814)] = 193491, + [SMALL_STATE(7815)] = 193526, + [SMALL_STATE(7816)] = 193559, [SMALL_STATE(7817)] = 193594, [SMALL_STATE(7818)] = 193629, - [SMALL_STATE(7819)] = 193662, + [SMALL_STATE(7819)] = 193664, [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(7822)] = 193765, + [SMALL_STATE(7823)] = 193798, + [SMALL_STATE(7824)] = 193831, + [SMALL_STATE(7825)] = 193864, + [SMALL_STATE(7826)] = 193899, + [SMALL_STATE(7827)] = 193932, + [SMALL_STATE(7828)] = 193965, [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)] = 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(7830)] = 194033, + [SMALL_STATE(7831)] = 194066, + [SMALL_STATE(7832)] = 194101, + [SMALL_STATE(7833)] = 194136, + [SMALL_STATE(7834)] = 194171, + [SMALL_STATE(7835)] = 194204, + [SMALL_STATE(7836)] = 194237, + [SMALL_STATE(7837)] = 194270, + [SMALL_STATE(7838)] = 194305, + [SMALL_STATE(7839)] = 194340, + [SMALL_STATE(7840)] = 194375, + [SMALL_STATE(7841)] = 194397, + [SMALL_STATE(7842)] = 194419, + [SMALL_STATE(7843)] = 194441, + [SMALL_STATE(7844)] = 194463, + [SMALL_STATE(7845)] = 194485, + [SMALL_STATE(7846)] = 194511, + [SMALL_STATE(7847)] = 194533, + [SMALL_STATE(7848)] = 194555, + [SMALL_STATE(7849)] = 194577, + [SMALL_STATE(7850)] = 194599, + [SMALL_STATE(7851)] = 194625, + [SMALL_STATE(7852)] = 194647, + [SMALL_STATE(7853)] = 194673, + [SMALL_STATE(7854)] = 194695, + [SMALL_STATE(7855)] = 194717, + [SMALL_STATE(7856)] = 194739, + [SMALL_STATE(7857)] = 194761, + [SMALL_STATE(7858)] = 194783, + [SMALL_STATE(7859)] = 194805, + [SMALL_STATE(7860)] = 194827, + [SMALL_STATE(7861)] = 194849, + [SMALL_STATE(7862)] = 194871, + [SMALL_STATE(7863)] = 194901, + [SMALL_STATE(7864)] = 194923, + [SMALL_STATE(7865)] = 194945, + [SMALL_STATE(7866)] = 194971, + [SMALL_STATE(7867)] = 194993, + [SMALL_STATE(7868)] = 195022, + [SMALL_STATE(7869)] = 195051, + [SMALL_STATE(7870)] = 195076, + [SMALL_STATE(7871)] = 195105, + [SMALL_STATE(7872)] = 195134, + [SMALL_STATE(7873)] = 195163, + [SMALL_STATE(7874)] = 195192, + [SMALL_STATE(7875)] = 195221, + [SMALL_STATE(7876)] = 195250, + [SMALL_STATE(7877)] = 195279, + [SMALL_STATE(7878)] = 195308, + [SMALL_STATE(7879)] = 195337, + [SMALL_STATE(7880)] = 195366, + [SMALL_STATE(7881)] = 195395, + [SMALL_STATE(7882)] = 195424, + [SMALL_STATE(7883)] = 195453, + [SMALL_STATE(7884)] = 195482, + [SMALL_STATE(7885)] = 195507, + [SMALL_STATE(7886)] = 195536, + [SMALL_STATE(7887)] = 195565, + [SMALL_STATE(7888)] = 195590, + [SMALL_STATE(7889)] = 195619, + [SMALL_STATE(7890)] = 195648, + [SMALL_STATE(7891)] = 195673, + [SMALL_STATE(7892)] = 195702, + [SMALL_STATE(7893)] = 195731, + [SMALL_STATE(7894)] = 195760, + [SMALL_STATE(7895)] = 195789, + [SMALL_STATE(7896)] = 195818, + [SMALL_STATE(7897)] = 195847, + [SMALL_STATE(7898)] = 195872, + [SMALL_STATE(7899)] = 195901, + [SMALL_STATE(7900)] = 195926, + [SMALL_STATE(7901)] = 195955, + [SMALL_STATE(7902)] = 195984, + [SMALL_STATE(7903)] = 196013, + [SMALL_STATE(7904)] = 196042, + [SMALL_STATE(7905)] = 196071, + [SMALL_STATE(7906)] = 196100, + [SMALL_STATE(7907)] = 196129, + [SMALL_STATE(7908)] = 196154, + [SMALL_STATE(7909)] = 196183, + [SMALL_STATE(7910)] = 196212, + [SMALL_STATE(7911)] = 196241, + [SMALL_STATE(7912)] = 196264, + [SMALL_STATE(7913)] = 196293, + [SMALL_STATE(7914)] = 196322, + [SMALL_STATE(7915)] = 196351, + [SMALL_STATE(7916)] = 196380, + [SMALL_STATE(7917)] = 196409, + [SMALL_STATE(7918)] = 196438, + [SMALL_STATE(7919)] = 196467, + [SMALL_STATE(7920)] = 196496, + [SMALL_STATE(7921)] = 196525, + [SMALL_STATE(7922)] = 196554, + [SMALL_STATE(7923)] = 196583, + [SMALL_STATE(7924)] = 196620, + [SMALL_STATE(7925)] = 196649, + [SMALL_STATE(7926)] = 196674, + [SMALL_STATE(7927)] = 196703, + [SMALL_STATE(7928)] = 196728, + [SMALL_STATE(7929)] = 196757, + [SMALL_STATE(7930)] = 196786, + [SMALL_STATE(7931)] = 196815, + [SMALL_STATE(7932)] = 196844, + [SMALL_STATE(7933)] = 196873, + [SMALL_STATE(7934)] = 196902, + [SMALL_STATE(7935)] = 196927, + [SMALL_STATE(7936)] = 196956, + [SMALL_STATE(7937)] = 196985, + [SMALL_STATE(7938)] = 197014, + [SMALL_STATE(7939)] = 197043, + [SMALL_STATE(7940)] = 197068, + [SMALL_STATE(7941)] = 197097, + [SMALL_STATE(7942)] = 197122, + [SMALL_STATE(7943)] = 197151, + [SMALL_STATE(7944)] = 197180, + [SMALL_STATE(7945)] = 197209, + [SMALL_STATE(7946)] = 197238, + [SMALL_STATE(7947)] = 197267, + [SMALL_STATE(7948)] = 197292, + [SMALL_STATE(7949)] = 197321, + [SMALL_STATE(7950)] = 197350, + [SMALL_STATE(7951)] = 197379, + [SMALL_STATE(7952)] = 197408, + [SMALL_STATE(7953)] = 197437, + [SMALL_STATE(7954)] = 197466, + [SMALL_STATE(7955)] = 197495, + [SMALL_STATE(7956)] = 197524, + [SMALL_STATE(7957)] = 197553, + [SMALL_STATE(7958)] = 197582, + [SMALL_STATE(7959)] = 197611, + [SMALL_STATE(7960)] = 197640, + [SMALL_STATE(7961)] = 197669, + [SMALL_STATE(7962)] = 197698, + [SMALL_STATE(7963)] = 197727, + [SMALL_STATE(7964)] = 197756, + [SMALL_STATE(7965)] = 197785, + [SMALL_STATE(7966)] = 197814, + [SMALL_STATE(7967)] = 197843, + [SMALL_STATE(7968)] = 197872, + [SMALL_STATE(7969)] = 197897, + [SMALL_STATE(7970)] = 197926, + [SMALL_STATE(7971)] = 197955, + [SMALL_STATE(7972)] = 197978, + [SMALL_STATE(7973)] = 198007, + [SMALL_STATE(7974)] = 198036, + [SMALL_STATE(7975)] = 198065, + [SMALL_STATE(7976)] = 198094, + [SMALL_STATE(7977)] = 198123, + [SMALL_STATE(7978)] = 198152, + [SMALL_STATE(7979)] = 198181, + [SMALL_STATE(7980)] = 198210, + [SMALL_STATE(7981)] = 198233, + [SMALL_STATE(7982)] = 198262, + [SMALL_STATE(7983)] = 198291, + [SMALL_STATE(7984)] = 198320, + [SMALL_STATE(7985)] = 198349, + [SMALL_STATE(7986)] = 198374, + [SMALL_STATE(7987)] = 198403, + [SMALL_STATE(7988)] = 198432, + [SMALL_STATE(7989)] = 198457, + [SMALL_STATE(7990)] = 198486, + [SMALL_STATE(7991)] = 198515, + [SMALL_STATE(7992)] = 198544, + [SMALL_STATE(7993)] = 198573, + [SMALL_STATE(7994)] = 198602, + [SMALL_STATE(7995)] = 198627, + [SMALL_STATE(7996)] = 198656, + [SMALL_STATE(7997)] = 198685, + [SMALL_STATE(7998)] = 198710, + [SMALL_STATE(7999)] = 198739, + [SMALL_STATE(8000)] = 198764, + [SMALL_STATE(8001)] = 198793, + [SMALL_STATE(8002)] = 198822, + [SMALL_STATE(8003)] = 198847, + [SMALL_STATE(8004)] = 198876, + [SMALL_STATE(8005)] = 198901, + [SMALL_STATE(8006)] = 198926, + [SMALL_STATE(8007)] = 198955, + [SMALL_STATE(8008)] = 198978, + [SMALL_STATE(8009)] = 199003, + [SMALL_STATE(8010)] = 199032, + [SMALL_STATE(8011)] = 199061, + [SMALL_STATE(8012)] = 199090, + [SMALL_STATE(8013)] = 199119, + [SMALL_STATE(8014)] = 199148, + [SMALL_STATE(8015)] = 199177, + [SMALL_STATE(8016)] = 199202, + [SMALL_STATE(8017)] = 199231, + [SMALL_STATE(8018)] = 199260, + [SMALL_STATE(8019)] = 199289, + [SMALL_STATE(8020)] = 199318, + [SMALL_STATE(8021)] = 199339, + [SMALL_STATE(8022)] = 199368, + [SMALL_STATE(8023)] = 199397, + [SMALL_STATE(8024)] = 199426, + [SMALL_STATE(8025)] = 199455, + [SMALL_STATE(8026)] = 199484, + [SMALL_STATE(8027)] = 199509, + [SMALL_STATE(8028)] = 199535, + [SMALL_STATE(8029)] = 199561, + [SMALL_STATE(8030)] = 199583, + [SMALL_STATE(8031)] = 199609, + [SMALL_STATE(8032)] = 199635, + [SMALL_STATE(8033)] = 199661, + [SMALL_STATE(8034)] = 199687, + [SMALL_STATE(8035)] = 199713, + [SMALL_STATE(8036)] = 199739, + [SMALL_STATE(8037)] = 199761, + [SMALL_STATE(8038)] = 199787, + [SMALL_STATE(8039)] = 199813, + [SMALL_STATE(8040)] = 199839, + [SMALL_STATE(8041)] = 199865, + [SMALL_STATE(8042)] = 199891, + [SMALL_STATE(8043)] = 199917, + [SMALL_STATE(8044)] = 199943, + [SMALL_STATE(8045)] = 199969, + [SMALL_STATE(8046)] = 199995, + [SMALL_STATE(8047)] = 200021, + [SMALL_STATE(8048)] = 200047, + [SMALL_STATE(8049)] = 200073, + [SMALL_STATE(8050)] = 200099, + [SMALL_STATE(8051)] = 200121, + [SMALL_STATE(8052)] = 200147, + [SMALL_STATE(8053)] = 200173, + [SMALL_STATE(8054)] = 200195, + [SMALL_STATE(8055)] = 200221, + [SMALL_STATE(8056)] = 200247, + [SMALL_STATE(8057)] = 200273, + [SMALL_STATE(8058)] = 200299, + [SMALL_STATE(8059)] = 200325, + [SMALL_STATE(8060)] = 200351, + [SMALL_STATE(8061)] = 200377, + [SMALL_STATE(8062)] = 200403, + [SMALL_STATE(8063)] = 200429, + [SMALL_STATE(8064)] = 200455, + [SMALL_STATE(8065)] = 200481, + [SMALL_STATE(8066)] = 200507, + [SMALL_STATE(8067)] = 200533, + [SMALL_STATE(8068)] = 200559, + [SMALL_STATE(8069)] = 200585, + [SMALL_STATE(8070)] = 200611, + [SMALL_STATE(8071)] = 200637, + [SMALL_STATE(8072)] = 200663, + [SMALL_STATE(8073)] = 200689, + [SMALL_STATE(8074)] = 200715, + [SMALL_STATE(8075)] = 200741, + [SMALL_STATE(8076)] = 200767, + [SMALL_STATE(8077)] = 200793, + [SMALL_STATE(8078)] = 200819, + [SMALL_STATE(8079)] = 200845, + [SMALL_STATE(8080)] = 200871, + [SMALL_STATE(8081)] = 200897, + [SMALL_STATE(8082)] = 200923, + [SMALL_STATE(8083)] = 200949, + [SMALL_STATE(8084)] = 200975, + [SMALL_STATE(8085)] = 201001, + [SMALL_STATE(8086)] = 201027, + [SMALL_STATE(8087)] = 201053, + [SMALL_STATE(8088)] = 201079, + [SMALL_STATE(8089)] = 201105, + [SMALL_STATE(8090)] = 201131, + [SMALL_STATE(8091)] = 201157, + [SMALL_STATE(8092)] = 201183, + [SMALL_STATE(8093)] = 201209, + [SMALL_STATE(8094)] = 201235, + [SMALL_STATE(8095)] = 201261, + [SMALL_STATE(8096)] = 201287, + [SMALL_STATE(8097)] = 201313, + [SMALL_STATE(8098)] = 201339, + [SMALL_STATE(8099)] = 201365, + [SMALL_STATE(8100)] = 201391, + [SMALL_STATE(8101)] = 201417, + [SMALL_STATE(8102)] = 201443, + [SMALL_STATE(8103)] = 201469, + [SMALL_STATE(8104)] = 201495, + [SMALL_STATE(8105)] = 201521, + [SMALL_STATE(8106)] = 201547, + [SMALL_STATE(8107)] = 201573, + [SMALL_STATE(8108)] = 201599, + [SMALL_STATE(8109)] = 201625, + [SMALL_STATE(8110)] = 201651, + [SMALL_STATE(8111)] = 201677, + [SMALL_STATE(8112)] = 201703, + [SMALL_STATE(8113)] = 201729, + [SMALL_STATE(8114)] = 201755, + [SMALL_STATE(8115)] = 201781, + [SMALL_STATE(8116)] = 201807, + [SMALL_STATE(8117)] = 201833, + [SMALL_STATE(8118)] = 201859, + [SMALL_STATE(8119)] = 201885, + [SMALL_STATE(8120)] = 201911, + [SMALL_STATE(8121)] = 201937, + [SMALL_STATE(8122)] = 201963, + [SMALL_STATE(8123)] = 201989, + [SMALL_STATE(8124)] = 202015, + [SMALL_STATE(8125)] = 202041, + [SMALL_STATE(8126)] = 202067, + [SMALL_STATE(8127)] = 202093, + [SMALL_STATE(8128)] = 202119, + [SMALL_STATE(8129)] = 202145, + [SMALL_STATE(8130)] = 202171, + [SMALL_STATE(8131)] = 202197, + [SMALL_STATE(8132)] = 202223, + [SMALL_STATE(8133)] = 202249, + [SMALL_STATE(8134)] = 202275, + [SMALL_STATE(8135)] = 202301, + [SMALL_STATE(8136)] = 202327, + [SMALL_STATE(8137)] = 202353, + [SMALL_STATE(8138)] = 202379, + [SMALL_STATE(8139)] = 202405, + [SMALL_STATE(8140)] = 202431, + [SMALL_STATE(8141)] = 202457, + [SMALL_STATE(8142)] = 202483, + [SMALL_STATE(8143)] = 202509, + [SMALL_STATE(8144)] = 202535, + [SMALL_STATE(8145)] = 202561, + [SMALL_STATE(8146)] = 202587, + [SMALL_STATE(8147)] = 202621, + [SMALL_STATE(8148)] = 202647, + [SMALL_STATE(8149)] = 202673, + [SMALL_STATE(8150)] = 202699, + [SMALL_STATE(8151)] = 202725, + [SMALL_STATE(8152)] = 202751, + [SMALL_STATE(8153)] = 202777, + [SMALL_STATE(8154)] = 202803, + [SMALL_STATE(8155)] = 202829, + [SMALL_STATE(8156)] = 202855, + [SMALL_STATE(8157)] = 202881, + [SMALL_STATE(8158)] = 202907, + [SMALL_STATE(8159)] = 202933, + [SMALL_STATE(8160)] = 202959, + [SMALL_STATE(8161)] = 202985, + [SMALL_STATE(8162)] = 203011, + [SMALL_STATE(8163)] = 203037, + [SMALL_STATE(8164)] = 203063, + [SMALL_STATE(8165)] = 203089, + [SMALL_STATE(8166)] = 203115, + [SMALL_STATE(8167)] = 203141, + [SMALL_STATE(8168)] = 203167, + [SMALL_STATE(8169)] = 203193, + [SMALL_STATE(8170)] = 203219, + [SMALL_STATE(8171)] = 203245, + [SMALL_STATE(8172)] = 203271, + [SMALL_STATE(8173)] = 203297, + [SMALL_STATE(8174)] = 203323, + [SMALL_STATE(8175)] = 203349, + [SMALL_STATE(8176)] = 203375, + [SMALL_STATE(8177)] = 203401, + [SMALL_STATE(8178)] = 203427, + [SMALL_STATE(8179)] = 203453, + [SMALL_STATE(8180)] = 203479, + [SMALL_STATE(8181)] = 203505, + [SMALL_STATE(8182)] = 203531, + [SMALL_STATE(8183)] = 203557, + [SMALL_STATE(8184)] = 203583, + [SMALL_STATE(8185)] = 203609, + [SMALL_STATE(8186)] = 203635, + [SMALL_STATE(8187)] = 203661, + [SMALL_STATE(8188)] = 203687, + [SMALL_STATE(8189)] = 203713, + [SMALL_STATE(8190)] = 203739, + [SMALL_STATE(8191)] = 203765, + [SMALL_STATE(8192)] = 203799, + [SMALL_STATE(8193)] = 203825, + [SMALL_STATE(8194)] = 203851, + [SMALL_STATE(8195)] = 203877, + [SMALL_STATE(8196)] = 203903, + [SMALL_STATE(8197)] = 203929, + [SMALL_STATE(8198)] = 203955, + [SMALL_STATE(8199)] = 203989, + [SMALL_STATE(8200)] = 204015, + [SMALL_STATE(8201)] = 204041, + [SMALL_STATE(8202)] = 204067, + [SMALL_STATE(8203)] = 204093, + [SMALL_STATE(8204)] = 204119, + [SMALL_STATE(8205)] = 204145, + [SMALL_STATE(8206)] = 204171, + [SMALL_STATE(8207)] = 204197, + [SMALL_STATE(8208)] = 204223, + [SMALL_STATE(8209)] = 204249, + [SMALL_STATE(8210)] = 204271, + [SMALL_STATE(8211)] = 204297, + [SMALL_STATE(8212)] = 204323, + [SMALL_STATE(8213)] = 204343, + [SMALL_STATE(8214)] = 204369, + [SMALL_STATE(8215)] = 204395, + [SMALL_STATE(8216)] = 204421, + [SMALL_STATE(8217)] = 204447, + [SMALL_STATE(8218)] = 204473, + [SMALL_STATE(8219)] = 204499, + [SMALL_STATE(8220)] = 204525, + [SMALL_STATE(8221)] = 204551, + [SMALL_STATE(8222)] = 204571, + [SMALL_STATE(8223)] = 204597, + [SMALL_STATE(8224)] = 204623, + [SMALL_STATE(8225)] = 204641, + [SMALL_STATE(8226)] = 204667, + [SMALL_STATE(8227)] = 204693, + [SMALL_STATE(8228)] = 204719, + [SMALL_STATE(8229)] = 204745, + [SMALL_STATE(8230)] = 204767, + [SMALL_STATE(8231)] = 204793, + [SMALL_STATE(8232)] = 204819, + [SMALL_STATE(8233)] = 204853, + [SMALL_STATE(8234)] = 204879, + [SMALL_STATE(8235)] = 204905, + [SMALL_STATE(8236)] = 204931, + [SMALL_STATE(8237)] = 204957, + [SMALL_STATE(8238)] = 204983, + [SMALL_STATE(8239)] = 205009, + [SMALL_STATE(8240)] = 205035, + [SMALL_STATE(8241)] = 205061, + [SMALL_STATE(8242)] = 205087, + [SMALL_STATE(8243)] = 205113, + [SMALL_STATE(8244)] = 205139, + [SMALL_STATE(8245)] = 205165, + [SMALL_STATE(8246)] = 205191, + [SMALL_STATE(8247)] = 205225, + [SMALL_STATE(8248)] = 205251, + [SMALL_STATE(8249)] = 205277, + [SMALL_STATE(8250)] = 205303, + [SMALL_STATE(8251)] = 205329, + [SMALL_STATE(8252)] = 205355, + [SMALL_STATE(8253)] = 205381, + [SMALL_STATE(8254)] = 205407, + [SMALL_STATE(8255)] = 205433, + [SMALL_STATE(8256)] = 205459, + [SMALL_STATE(8257)] = 205485, + [SMALL_STATE(8258)] = 205511, + [SMALL_STATE(8259)] = 205537, + [SMALL_STATE(8260)] = 205563, + [SMALL_STATE(8261)] = 205589, + [SMALL_STATE(8262)] = 205615, + [SMALL_STATE(8263)] = 205641, + [SMALL_STATE(8264)] = 205667, + [SMALL_STATE(8265)] = 205693, + [SMALL_STATE(8266)] = 205719, + [SMALL_STATE(8267)] = 205745, + [SMALL_STATE(8268)] = 205771, + [SMALL_STATE(8269)] = 205797, + [SMALL_STATE(8270)] = 205823, + [SMALL_STATE(8271)] = 205849, + [SMALL_STATE(8272)] = 205875, + [SMALL_STATE(8273)] = 205901, + [SMALL_STATE(8274)] = 205927, + [SMALL_STATE(8275)] = 205953, + [SMALL_STATE(8276)] = 205987, + [SMALL_STATE(8277)] = 206013, + [SMALL_STATE(8278)] = 206039, + [SMALL_STATE(8279)] = 206065, + [SMALL_STATE(8280)] = 206091, + [SMALL_STATE(8281)] = 206117, + [SMALL_STATE(8282)] = 206143, + [SMALL_STATE(8283)] = 206169, + [SMALL_STATE(8284)] = 206195, + [SMALL_STATE(8285)] = 206221, + [SMALL_STATE(8286)] = 206240, + [SMALL_STATE(8287)] = 206271, + [SMALL_STATE(8288)] = 206302, + [SMALL_STATE(8289)] = 206333, + [SMALL_STATE(8290)] = 206364, + [SMALL_STATE(8291)] = 206395, + [SMALL_STATE(8292)] = 206412, + [SMALL_STATE(8293)] = 206429, + [SMALL_STATE(8294)] = 206460, + [SMALL_STATE(8295)] = 206477, + [SMALL_STATE(8296)] = 206494, + [SMALL_STATE(8297)] = 206525, + [SMALL_STATE(8298)] = 206556, + [SMALL_STATE(8299)] = 206587, + [SMALL_STATE(8300)] = 206604, + [SMALL_STATE(8301)] = 206635, + [SMALL_STATE(8302)] = 206666, + [SMALL_STATE(8303)] = 206697, + [SMALL_STATE(8304)] = 206728, + [SMALL_STATE(8305)] = 206759, + [SMALL_STATE(8306)] = 206790, + [SMALL_STATE(8307)] = 206821, + [SMALL_STATE(8308)] = 206852, + [SMALL_STATE(8309)] = 206883, + [SMALL_STATE(8310)] = 206914, + [SMALL_STATE(8311)] = 206931, + [SMALL_STATE(8312)] = 206962, + [SMALL_STATE(8313)] = 206993, + [SMALL_STATE(8314)] = 207024, + [SMALL_STATE(8315)] = 207045, + [SMALL_STATE(8316)] = 207066, + [SMALL_STATE(8317)] = 207097, + [SMALL_STATE(8318)] = 207128, + [SMALL_STATE(8319)] = 207145, + [SMALL_STATE(8320)] = 207176, + [SMALL_STATE(8321)] = 207207, + [SMALL_STATE(8322)] = 207224, + [SMALL_STATE(8323)] = 207255, + [SMALL_STATE(8324)] = 207271, + [SMALL_STATE(8325)] = 207289, + [SMALL_STATE(8326)] = 207319, + [SMALL_STATE(8327)] = 207339, + [SMALL_STATE(8328)] = 207357, + [SMALL_STATE(8329)] = 207375, + [SMALL_STATE(8330)] = 207405, + [SMALL_STATE(8331)] = 207435, + [SMALL_STATE(8332)] = 207465, + [SMALL_STATE(8333)] = 207495, + [SMALL_STATE(8334)] = 207513, [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(8336)] = 207550, + [SMALL_STATE(8337)] = 207577, + [SMALL_STATE(8338)] = 207596, + [SMALL_STATE(8339)] = 207613, + [SMALL_STATE(8340)] = 207640, + [SMALL_STATE(8341)] = 207665, + [SMALL_STATE(8342)] = 207684, + [SMALL_STATE(8343)] = 207705, + [SMALL_STATE(8344)] = 207734, + [SMALL_STATE(8345)] = 207761, + [SMALL_STATE(8346)] = 207790, + [SMALL_STATE(8347)] = 207817, + [SMALL_STATE(8348)] = 207840, + [SMALL_STATE(8349)] = 207857, + [SMALL_STATE(8350)] = 207882, + [SMALL_STATE(8351)] = 207911, + [SMALL_STATE(8352)] = 207940, [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(8354)] = 207996, + [SMALL_STATE(8355)] = 208021, + [SMALL_STATE(8356)] = 208046, + [SMALL_STATE(8357)] = 208071, + [SMALL_STATE(8358)] = 208096, + [SMALL_STATE(8359)] = 208122, + [SMALL_STATE(8360)] = 208148, + [SMALL_STATE(8361)] = 208164, + [SMALL_STATE(8362)] = 208188, + [SMALL_STATE(8363)] = 208204, + [SMALL_STATE(8364)] = 208220, + [SMALL_STATE(8365)] = 208236, + [SMALL_STATE(8366)] = 208252, + [SMALL_STATE(8367)] = 208266, + [SMALL_STATE(8368)] = 208290, + [SMALL_STATE(8369)] = 208314, + [SMALL_STATE(8370)] = 208330, + [SMALL_STATE(8371)] = 208352, + [SMALL_STATE(8372)] = 208368, + [SMALL_STATE(8373)] = 208392, + [SMALL_STATE(8374)] = 208408, + [SMALL_STATE(8375)] = 208424, + [SMALL_STATE(8376)] = 208440, + [SMALL_STATE(8377)] = 208456, + [SMALL_STATE(8378)] = 208472, + [SMALL_STATE(8379)] = 208492, + [SMALL_STATE(8380)] = 208514, + [SMALL_STATE(8381)] = 208530, + [SMALL_STATE(8382)] = 208546, + [SMALL_STATE(8383)] = 208562, + [SMALL_STATE(8384)] = 208588, + [SMALL_STATE(8385)] = 208612, + [SMALL_STATE(8386)] = 208628, + [SMALL_STATE(8387)] = 208642, + [SMALL_STATE(8388)] = 208668, + [SMALL_STATE(8389)] = 208684, + [SMALL_STATE(8390)] = 208700, + [SMALL_STATE(8391)] = 208716, + [SMALL_STATE(8392)] = 208732, + [SMALL_STATE(8393)] = 208758, + [SMALL_STATE(8394)] = 208782, + [SMALL_STATE(8395)] = 208798, + [SMALL_STATE(8396)] = 208822, + [SMALL_STATE(8397)] = 208836, + [SMALL_STATE(8398)] = 208860, + [SMALL_STATE(8399)] = 208876, + [SMALL_STATE(8400)] = 208896, + [SMALL_STATE(8401)] = 208912, + [SMALL_STATE(8402)] = 208926, + [SMALL_STATE(8403)] = 208942, + [SMALL_STATE(8404)] = 208959, + [SMALL_STATE(8405)] = 208980, + [SMALL_STATE(8406)] = 209003, + [SMALL_STATE(8407)] = 209024, + [SMALL_STATE(8408)] = 209037, [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(8411)] = 209092, + [SMALL_STATE(8412)] = 209113, + [SMALL_STATE(8413)] = 209134, + [SMALL_STATE(8414)] = 209147, + [SMALL_STATE(8415)] = 209168, + [SMALL_STATE(8416)] = 209189, + [SMALL_STATE(8417)] = 209210, + [SMALL_STATE(8418)] = 209227, + [SMALL_STATE(8419)] = 209244, + [SMALL_STATE(8420)] = 209265, [SMALL_STATE(8421)] = 209286, - [SMALL_STATE(8422)] = 209307, - [SMALL_STATE(8423)] = 209322, + [SMALL_STATE(8422)] = 209309, + [SMALL_STATE(8423)] = 209330, [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(8426)] = 209385, + [SMALL_STATE(8427)] = 209406, + [SMALL_STATE(8428)] = 209427, + [SMALL_STATE(8429)] = 209448, + [SMALL_STATE(8430)] = 209469, + [SMALL_STATE(8431)] = 209490, + [SMALL_STATE(8432)] = 209511, + [SMALL_STATE(8433)] = 209534, + [SMALL_STATE(8434)] = 209557, + [SMALL_STATE(8435)] = 209578, + [SMALL_STATE(8436)] = 209591, + [SMALL_STATE(8437)] = 209612, + [SMALL_STATE(8438)] = 209633, + [SMALL_STATE(8439)] = 209654, + [SMALL_STATE(8440)] = 209675, + [SMALL_STATE(8441)] = 209698, + [SMALL_STATE(8442)] = 209713, + [SMALL_STATE(8443)] = 209734, + [SMALL_STATE(8444)] = 209755, + [SMALL_STATE(8445)] = 209770, + [SMALL_STATE(8446)] = 209793, + [SMALL_STATE(8447)] = 209814, + [SMALL_STATE(8448)] = 209837, + [SMALL_STATE(8449)] = 209856, + [SMALL_STATE(8450)] = 209877, + [SMALL_STATE(8451)] = 209894, [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(8453)] = 209934, + [SMALL_STATE(8454)] = 209957, + [SMALL_STATE(8455)] = 209978, + [SMALL_STATE(8456)] = 209999, + [SMALL_STATE(8457)] = 210016, + [SMALL_STATE(8458)] = 210037, + [SMALL_STATE(8459)] = 210050, + [SMALL_STATE(8460)] = 210070, + [SMALL_STATE(8461)] = 210090, + [SMALL_STATE(8462)] = 210110, + [SMALL_STATE(8463)] = 210130, + [SMALL_STATE(8464)] = 210152, + [SMALL_STATE(8465)] = 210164, + [SMALL_STATE(8466)] = 210184, + [SMALL_STATE(8467)] = 210204, + [SMALL_STATE(8468)] = 210224, + [SMALL_STATE(8469)] = 210242, + [SMALL_STATE(8470)] = 210262, + [SMALL_STATE(8471)] = 210282, + [SMALL_STATE(8472)] = 210294, + [SMALL_STATE(8473)] = 210314, + [SMALL_STATE(8474)] = 210334, + [SMALL_STATE(8475)] = 210354, + [SMALL_STATE(8476)] = 210370, + [SMALL_STATE(8477)] = 210390, + [SMALL_STATE(8478)] = 210410, + [SMALL_STATE(8479)] = 210430, + [SMALL_STATE(8480)] = 210450, + [SMALL_STATE(8481)] = 210470, + [SMALL_STATE(8482)] = 210490, + [SMALL_STATE(8483)] = 210510, + [SMALL_STATE(8484)] = 210530, + [SMALL_STATE(8485)] = 210550, + [SMALL_STATE(8486)] = 210566, + [SMALL_STATE(8487)] = 210578, + [SMALL_STATE(8488)] = 210598, + [SMALL_STATE(8489)] = 210610, + [SMALL_STATE(8490)] = 210622, + [SMALL_STATE(8491)] = 210634, + [SMALL_STATE(8492)] = 210646, + [SMALL_STATE(8493)] = 210658, + [SMALL_STATE(8494)] = 210678, + [SMALL_STATE(8495)] = 210698, + [SMALL_STATE(8496)] = 210718, + [SMALL_STATE(8497)] = 210738, + [SMALL_STATE(8498)] = 210758, + [SMALL_STATE(8499)] = 210778, + [SMALL_STATE(8500)] = 210798, + [SMALL_STATE(8501)] = 210818, + [SMALL_STATE(8502)] = 210838, + [SMALL_STATE(8503)] = 210858, + [SMALL_STATE(8504)] = 210876, + [SMALL_STATE(8505)] = 210896, + [SMALL_STATE(8506)] = 210916, + [SMALL_STATE(8507)] = 210936, + [SMALL_STATE(8508)] = 210956, + [SMALL_STATE(8509)] = 210978, + [SMALL_STATE(8510)] = 210996, + [SMALL_STATE(8511)] = 211010, + [SMALL_STATE(8512)] = 211026, + [SMALL_STATE(8513)] = 211048, + [SMALL_STATE(8514)] = 211066, + [SMALL_STATE(8515)] = 211086, + [SMALL_STATE(8516)] = 211106, + [SMALL_STATE(8517)] = 211126, + [SMALL_STATE(8518)] = 211146, + [SMALL_STATE(8519)] = 211158, + [SMALL_STATE(8520)] = 211178, + [SMALL_STATE(8521)] = 211194, + [SMALL_STATE(8522)] = 211214, + [SMALL_STATE(8523)] = 211234, + [SMALL_STATE(8524)] = 211254, + [SMALL_STATE(8525)] = 211274, + [SMALL_STATE(8526)] = 211294, + [SMALL_STATE(8527)] = 211314, + [SMALL_STATE(8528)] = 211334, + [SMALL_STATE(8529)] = 211354, + [SMALL_STATE(8530)] = 211374, + [SMALL_STATE(8531)] = 211394, + [SMALL_STATE(8532)] = 211414, + [SMALL_STATE(8533)] = 211434, + [SMALL_STATE(8534)] = 211454, + [SMALL_STATE(8535)] = 211474, + [SMALL_STATE(8536)] = 211486, + [SMALL_STATE(8537)] = 211506, + [SMALL_STATE(8538)] = 211518, + [SMALL_STATE(8539)] = 211538, + [SMALL_STATE(8540)] = 211556, + [SMALL_STATE(8541)] = 211578, + [SMALL_STATE(8542)] = 211598, + [SMALL_STATE(8543)] = 211618, + [SMALL_STATE(8544)] = 211638, + [SMALL_STATE(8545)] = 211650, + [SMALL_STATE(8546)] = 211670, + [SMALL_STATE(8547)] = 211690, + [SMALL_STATE(8548)] = 211710, + [SMALL_STATE(8549)] = 211730, + [SMALL_STATE(8550)] = 211750, + [SMALL_STATE(8551)] = 211770, + [SMALL_STATE(8552)] = 211790, + [SMALL_STATE(8553)] = 211810, + [SMALL_STATE(8554)] = 211830, + [SMALL_STATE(8555)] = 211850, + [SMALL_STATE(8556)] = 211870, + [SMALL_STATE(8557)] = 211886, + [SMALL_STATE(8558)] = 211906, + [SMALL_STATE(8559)] = 211918, + [SMALL_STATE(8560)] = 211936, + [SMALL_STATE(8561)] = 211956, + [SMALL_STATE(8562)] = 211976, + [SMALL_STATE(8563)] = 211996, + [SMALL_STATE(8564)] = 212014, + [SMALL_STATE(8565)] = 212034, + [SMALL_STATE(8566)] = 212054, + [SMALL_STATE(8567)] = 212074, + [SMALL_STATE(8568)] = 212094, + [SMALL_STATE(8569)] = 212114, + [SMALL_STATE(8570)] = 212126, + [SMALL_STATE(8571)] = 212146, + [SMALL_STATE(8572)] = 212166, + [SMALL_STATE(8573)] = 212186, + [SMALL_STATE(8574)] = 212206, + [SMALL_STATE(8575)] = 212218, + [SMALL_STATE(8576)] = 212238, + [SMALL_STATE(8577)] = 212258, + [SMALL_STATE(8578)] = 212278, + [SMALL_STATE(8579)] = 212298, + [SMALL_STATE(8580)] = 212318, + [SMALL_STATE(8581)] = 212338, + [SMALL_STATE(8582)] = 212358, + [SMALL_STATE(8583)] = 212378, + [SMALL_STATE(8584)] = 212398, + [SMALL_STATE(8585)] = 212410, + [SMALL_STATE(8586)] = 212430, + [SMALL_STATE(8587)] = 212450, + [SMALL_STATE(8588)] = 212462, + [SMALL_STATE(8589)] = 212482, + [SMALL_STATE(8590)] = 212502, + [SMALL_STATE(8591)] = 212524, + [SMALL_STATE(8592)] = 212544, + [SMALL_STATE(8593)] = 212564, + [SMALL_STATE(8594)] = 212584, + [SMALL_STATE(8595)] = 212604, + [SMALL_STATE(8596)] = 212624, + [SMALL_STATE(8597)] = 212644, + [SMALL_STATE(8598)] = 212664, + [SMALL_STATE(8599)] = 212684, + [SMALL_STATE(8600)] = 212698, + [SMALL_STATE(8601)] = 212718, + [SMALL_STATE(8602)] = 212738, + [SMALL_STATE(8603)] = 212758, + [SMALL_STATE(8604)] = 212778, + [SMALL_STATE(8605)] = 212798, + [SMALL_STATE(8606)] = 212816, + [SMALL_STATE(8607)] = 212836, + [SMALL_STATE(8608)] = 212856, + [SMALL_STATE(8609)] = 212872, + [SMALL_STATE(8610)] = 212892, + [SMALL_STATE(8611)] = 212912, + [SMALL_STATE(8612)] = 212932, + [SMALL_STATE(8613)] = 212952, + [SMALL_STATE(8614)] = 212968, + [SMALL_STATE(8615)] = 212980, + [SMALL_STATE(8616)] = 213000, + [SMALL_STATE(8617)] = 213020, + [SMALL_STATE(8618)] = 213040, + [SMALL_STATE(8619)] = 213062, + [SMALL_STATE(8620)] = 213082, + [SMALL_STATE(8621)] = 213102, + [SMALL_STATE(8622)] = 213122, + [SMALL_STATE(8623)] = 213138, + [SMALL_STATE(8624)] = 213158, + [SMALL_STATE(8625)] = 213178, + [SMALL_STATE(8626)] = 213198, + [SMALL_STATE(8627)] = 213218, + [SMALL_STATE(8628)] = 213230, + [SMALL_STATE(8629)] = 213246, + [SMALL_STATE(8630)] = 213266, + [SMALL_STATE(8631)] = 213286, + [SMALL_STATE(8632)] = 213303, + [SMALL_STATE(8633)] = 213320, + [SMALL_STATE(8634)] = 213337, + [SMALL_STATE(8635)] = 213354, + [SMALL_STATE(8636)] = 213371, + [SMALL_STATE(8637)] = 213386, + [SMALL_STATE(8638)] = 213403, + [SMALL_STATE(8639)] = 213420, + [SMALL_STATE(8640)] = 213433, + [SMALL_STATE(8641)] = 213444, + [SMALL_STATE(8642)] = 213457, + [SMALL_STATE(8643)] = 213474, + [SMALL_STATE(8644)] = 213491, + [SMALL_STATE(8645)] = 213508, + [SMALL_STATE(8646)] = 213519, + [SMALL_STATE(8647)] = 213536, + [SMALL_STATE(8648)] = 213553, + [SMALL_STATE(8649)] = 213570, + [SMALL_STATE(8650)] = 213587, + [SMALL_STATE(8651)] = 213604, + [SMALL_STATE(8652)] = 213621, + [SMALL_STATE(8653)] = 213638, + [SMALL_STATE(8654)] = 213655, + [SMALL_STATE(8655)] = 213670, + [SMALL_STATE(8656)] = 213685, + [SMALL_STATE(8657)] = 213700, + [SMALL_STATE(8658)] = 213715, + [SMALL_STATE(8659)] = 213732, + [SMALL_STATE(8660)] = 213743, + [SMALL_STATE(8661)] = 213760, + [SMALL_STATE(8662)] = 213777, + [SMALL_STATE(8663)] = 213794, + [SMALL_STATE(8664)] = 213811, + [SMALL_STATE(8665)] = 213828, + [SMALL_STATE(8666)] = 213845, + [SMALL_STATE(8667)] = 213862, + [SMALL_STATE(8668)] = 213879, + [SMALL_STATE(8669)] = 213894, + [SMALL_STATE(8670)] = 213911, + [SMALL_STATE(8671)] = 213928, + [SMALL_STATE(8672)] = 213939, + [SMALL_STATE(8673)] = 213956, + [SMALL_STATE(8674)] = 213973, + [SMALL_STATE(8675)] = 213990, + [SMALL_STATE(8676)] = 214007, + [SMALL_STATE(8677)] = 214024, + [SMALL_STATE(8678)] = 214041, + [SMALL_STATE(8679)] = 214058, + [SMALL_STATE(8680)] = 214075, + [SMALL_STATE(8681)] = 214092, + [SMALL_STATE(8682)] = 214109, + [SMALL_STATE(8683)] = 214126, + [SMALL_STATE(8684)] = 214143, + [SMALL_STATE(8685)] = 214160, + [SMALL_STATE(8686)] = 214171, + [SMALL_STATE(8687)] = 214188, + [SMALL_STATE(8688)] = 214203, + [SMALL_STATE(8689)] = 214214, + [SMALL_STATE(8690)] = 214231, + [SMALL_STATE(8691)] = 214248, + [SMALL_STATE(8692)] = 214265, + [SMALL_STATE(8693)] = 214282, + [SMALL_STATE(8694)] = 214297, + [SMALL_STATE(8695)] = 214314, + [SMALL_STATE(8696)] = 214331, + [SMALL_STATE(8697)] = 214348, + [SMALL_STATE(8698)] = 214365, + [SMALL_STATE(8699)] = 214380, + [SMALL_STATE(8700)] = 214397, + [SMALL_STATE(8701)] = 214414, + [SMALL_STATE(8702)] = 214429, + [SMALL_STATE(8703)] = 214446, + [SMALL_STATE(8704)] = 214463, + [SMALL_STATE(8705)] = 214480, + [SMALL_STATE(8706)] = 214495, + [SMALL_STATE(8707)] = 214508, + [SMALL_STATE(8708)] = 214523, + [SMALL_STATE(8709)] = 214538, + [SMALL_STATE(8710)] = 214553, + [SMALL_STATE(8711)] = 214568, + [SMALL_STATE(8712)] = 214585, + [SMALL_STATE(8713)] = 214602, + [SMALL_STATE(8714)] = 214619, + [SMALL_STATE(8715)] = 214634, + [SMALL_STATE(8716)] = 214651, + [SMALL_STATE(8717)] = 214668, + [SMALL_STATE(8718)] = 214685, + [SMALL_STATE(8719)] = 214702, + [SMALL_STATE(8720)] = 214719, + [SMALL_STATE(8721)] = 214736, + [SMALL_STATE(8722)] = 214753, + [SMALL_STATE(8723)] = 214770, + [SMALL_STATE(8724)] = 214787, + [SMALL_STATE(8725)] = 214804, + [SMALL_STATE(8726)] = 214821, + [SMALL_STATE(8727)] = 214832, + [SMALL_STATE(8728)] = 214849, + [SMALL_STATE(8729)] = 214866, + [SMALL_STATE(8730)] = 214881, + [SMALL_STATE(8731)] = 214898, + [SMALL_STATE(8732)] = 214915, + [SMALL_STATE(8733)] = 214930, + [SMALL_STATE(8734)] = 214945, + [SMALL_STATE(8735)] = 214962, + [SMALL_STATE(8736)] = 214979, + [SMALL_STATE(8737)] = 214996, + [SMALL_STATE(8738)] = 215013, + [SMALL_STATE(8739)] = 215030, + [SMALL_STATE(8740)] = 215047, + [SMALL_STATE(8741)] = 215064, + [SMALL_STATE(8742)] = 215081, + [SMALL_STATE(8743)] = 215096, + [SMALL_STATE(8744)] = 215113, + [SMALL_STATE(8745)] = 215130, + [SMALL_STATE(8746)] = 215145, + [SMALL_STATE(8747)] = 215162, + [SMALL_STATE(8748)] = 215175, + [SMALL_STATE(8749)] = 215192, + [SMALL_STATE(8750)] = 215205, + [SMALL_STATE(8751)] = 215220, + [SMALL_STATE(8752)] = 215235, + [SMALL_STATE(8753)] = 215250, + [SMALL_STATE(8754)] = 215267, + [SMALL_STATE(8755)] = 215284, + [SMALL_STATE(8756)] = 215301, + [SMALL_STATE(8757)] = 215318, + [SMALL_STATE(8758)] = 215335, + [SMALL_STATE(8759)] = 215352, + [SMALL_STATE(8760)] = 215369, + [SMALL_STATE(8761)] = 215386, + [SMALL_STATE(8762)] = 215397, + [SMALL_STATE(8763)] = 215414, + [SMALL_STATE(8764)] = 215431, + [SMALL_STATE(8765)] = 215442, + [SMALL_STATE(8766)] = 215459, + [SMALL_STATE(8767)] = 215476, + [SMALL_STATE(8768)] = 215487, + [SMALL_STATE(8769)] = 215504, + [SMALL_STATE(8770)] = 215521, + [SMALL_STATE(8771)] = 215538, + [SMALL_STATE(8772)] = 215555, + [SMALL_STATE(8773)] = 215572, + [SMALL_STATE(8774)] = 215589, + [SMALL_STATE(8775)] = 215606, + [SMALL_STATE(8776)] = 215623, + [SMALL_STATE(8777)] = 215640, + [SMALL_STATE(8778)] = 215657, + [SMALL_STATE(8779)] = 215674, + [SMALL_STATE(8780)] = 215691, + [SMALL_STATE(8781)] = 215706, + [SMALL_STATE(8782)] = 215723, + [SMALL_STATE(8783)] = 215740, + [SMALL_STATE(8784)] = 215757, + [SMALL_STATE(8785)] = 215772, + [SMALL_STATE(8786)] = 215789, + [SMALL_STATE(8787)] = 215804, + [SMALL_STATE(8788)] = 215815, + [SMALL_STATE(8789)] = 215832, + [SMALL_STATE(8790)] = 215847, + [SMALL_STATE(8791)] = 215864, + [SMALL_STATE(8792)] = 215881, + [SMALL_STATE(8793)] = 215895, + [SMALL_STATE(8794)] = 215909, + [SMALL_STATE(8795)] = 215923, + [SMALL_STATE(8796)] = 215937, + [SMALL_STATE(8797)] = 215947, + [SMALL_STATE(8798)] = 215961, + [SMALL_STATE(8799)] = 215975, + [SMALL_STATE(8800)] = 215989, + [SMALL_STATE(8801)] = 216003, + [SMALL_STATE(8802)] = 216017, + [SMALL_STATE(8803)] = 216031, + [SMALL_STATE(8804)] = 216043, + [SMALL_STATE(8805)] = 216057, + [SMALL_STATE(8806)] = 216071, + [SMALL_STATE(8807)] = 216083, + [SMALL_STATE(8808)] = 216093, + [SMALL_STATE(8809)] = 216107, + [SMALL_STATE(8810)] = 216121, + [SMALL_STATE(8811)] = 216135, + [SMALL_STATE(8812)] = 216149, + [SMALL_STATE(8813)] = 216163, + [SMALL_STATE(8814)] = 216177, + [SMALL_STATE(8815)] = 216191, + [SMALL_STATE(8816)] = 216205, + [SMALL_STATE(8817)] = 216219, + [SMALL_STATE(8818)] = 216231, + [SMALL_STATE(8819)] = 216245, + [SMALL_STATE(8820)] = 216257, + [SMALL_STATE(8821)] = 216269, + [SMALL_STATE(8822)] = 216283, + [SMALL_STATE(8823)] = 216297, + [SMALL_STATE(8824)] = 216311, + [SMALL_STATE(8825)] = 216325, + [SMALL_STATE(8826)] = 216339, + [SMALL_STATE(8827)] = 216353, + [SMALL_STATE(8828)] = 216367, + [SMALL_STATE(8829)] = 216379, + [SMALL_STATE(8830)] = 216393, + [SMALL_STATE(8831)] = 216407, + [SMALL_STATE(8832)] = 216421, + [SMALL_STATE(8833)] = 216435, + [SMALL_STATE(8834)] = 216449, + [SMALL_STATE(8835)] = 216463, + [SMALL_STATE(8836)] = 216477, + [SMALL_STATE(8837)] = 216491, + [SMALL_STATE(8838)] = 216505, + [SMALL_STATE(8839)] = 216519, + [SMALL_STATE(8840)] = 216533, + [SMALL_STATE(8841)] = 216547, + [SMALL_STATE(8842)] = 216561, + [SMALL_STATE(8843)] = 216575, + [SMALL_STATE(8844)] = 216589, + [SMALL_STATE(8845)] = 216603, + [SMALL_STATE(8846)] = 216617, + [SMALL_STATE(8847)] = 216631, + [SMALL_STATE(8848)] = 216645, + [SMALL_STATE(8849)] = 216659, + [SMALL_STATE(8850)] = 216673, + [SMALL_STATE(8851)] = 216687, + [SMALL_STATE(8852)] = 216701, + [SMALL_STATE(8853)] = 216715, + [SMALL_STATE(8854)] = 216729, + [SMALL_STATE(8855)] = 216743, + [SMALL_STATE(8856)] = 216757, + [SMALL_STATE(8857)] = 216771, + [SMALL_STATE(8858)] = 216785, + [SMALL_STATE(8859)] = 216799, + [SMALL_STATE(8860)] = 216813, + [SMALL_STATE(8861)] = 216827, + [SMALL_STATE(8862)] = 216841, + [SMALL_STATE(8863)] = 216855, + [SMALL_STATE(8864)] = 216869, + [SMALL_STATE(8865)] = 216883, + [SMALL_STATE(8866)] = 216897, + [SMALL_STATE(8867)] = 216911, + [SMALL_STATE(8868)] = 216925, + [SMALL_STATE(8869)] = 216939, + [SMALL_STATE(8870)] = 216953, + [SMALL_STATE(8871)] = 216965, + [SMALL_STATE(8872)] = 216979, + [SMALL_STATE(8873)] = 216993, + [SMALL_STATE(8874)] = 217007, + [SMALL_STATE(8875)] = 217021, + [SMALL_STATE(8876)] = 217035, + [SMALL_STATE(8877)] = 217045, + [SMALL_STATE(8878)] = 217059, + [SMALL_STATE(8879)] = 217073, + [SMALL_STATE(8880)] = 217087, + [SMALL_STATE(8881)] = 217097, + [SMALL_STATE(8882)] = 217111, + [SMALL_STATE(8883)] = 217123, + [SMALL_STATE(8884)] = 217137, + [SMALL_STATE(8885)] = 217149, + [SMALL_STATE(8886)] = 217163, + [SMALL_STATE(8887)] = 217175, + [SMALL_STATE(8888)] = 217189, + [SMALL_STATE(8889)] = 217203, + [SMALL_STATE(8890)] = 217217, + [SMALL_STATE(8891)] = 217231, + [SMALL_STATE(8892)] = 217245, + [SMALL_STATE(8893)] = 217259, + [SMALL_STATE(8894)] = 217273, + [SMALL_STATE(8895)] = 217287, + [SMALL_STATE(8896)] = 217299, + [SMALL_STATE(8897)] = 217313, + [SMALL_STATE(8898)] = 217327, + [SMALL_STATE(8899)] = 217339, + [SMALL_STATE(8900)] = 217353, + [SMALL_STATE(8901)] = 217367, + [SMALL_STATE(8902)] = 217381, + [SMALL_STATE(8903)] = 217395, + [SMALL_STATE(8904)] = 217409, + [SMALL_STATE(8905)] = 217423, + [SMALL_STATE(8906)] = 217437, + [SMALL_STATE(8907)] = 217451, + [SMALL_STATE(8908)] = 217465, + [SMALL_STATE(8909)] = 217479, + [SMALL_STATE(8910)] = 217493, + [SMALL_STATE(8911)] = 217507, + [SMALL_STATE(8912)] = 217521, + [SMALL_STATE(8913)] = 217535, + [SMALL_STATE(8914)] = 217549, + [SMALL_STATE(8915)] = 217563, + [SMALL_STATE(8916)] = 217577, + [SMALL_STATE(8917)] = 217591, + [SMALL_STATE(8918)] = 217605, + [SMALL_STATE(8919)] = 217619, + [SMALL_STATE(8920)] = 217633, + [SMALL_STATE(8921)] = 217647, + [SMALL_STATE(8922)] = 217661, + [SMALL_STATE(8923)] = 217675, + [SMALL_STATE(8924)] = 217689, + [SMALL_STATE(8925)] = 217703, + [SMALL_STATE(8926)] = 217717, + [SMALL_STATE(8927)] = 217731, + [SMALL_STATE(8928)] = 217745, + [SMALL_STATE(8929)] = 217759, + [SMALL_STATE(8930)] = 217769, + [SMALL_STATE(8931)] = 217783, + [SMALL_STATE(8932)] = 217795, + [SMALL_STATE(8933)] = 217805, + [SMALL_STATE(8934)] = 217817, + [SMALL_STATE(8935)] = 217831, + [SMALL_STATE(8936)] = 217845, + [SMALL_STATE(8937)] = 217855, + [SMALL_STATE(8938)] = 217869, + [SMALL_STATE(8939)] = 217883, + [SMALL_STATE(8940)] = 217897, + [SMALL_STATE(8941)] = 217909, + [SMALL_STATE(8942)] = 217923, + [SMALL_STATE(8943)] = 217935, + [SMALL_STATE(8944)] = 217949, + [SMALL_STATE(8945)] = 217963, + [SMALL_STATE(8946)] = 217975, + [SMALL_STATE(8947)] = 217987, + [SMALL_STATE(8948)] = 218001, + [SMALL_STATE(8949)] = 218013, + [SMALL_STATE(8950)] = 218025, + [SMALL_STATE(8951)] = 218039, + [SMALL_STATE(8952)] = 218051, + [SMALL_STATE(8953)] = 218065, + [SMALL_STATE(8954)] = 218079, + [SMALL_STATE(8955)] = 218093, + [SMALL_STATE(8956)] = 218107, + [SMALL_STATE(8957)] = 218119, + [SMALL_STATE(8958)] = 218133, + [SMALL_STATE(8959)] = 218145, + [SMALL_STATE(8960)] = 218155, + [SMALL_STATE(8961)] = 218169, + [SMALL_STATE(8962)] = 218183, + [SMALL_STATE(8963)] = 218197, + [SMALL_STATE(8964)] = 218211, + [SMALL_STATE(8965)] = 218225, + [SMALL_STATE(8966)] = 218239, + [SMALL_STATE(8967)] = 218253, + [SMALL_STATE(8968)] = 218267, + [SMALL_STATE(8969)] = 218281, + [SMALL_STATE(8970)] = 218295, + [SMALL_STATE(8971)] = 218309, + [SMALL_STATE(8972)] = 218323, + [SMALL_STATE(8973)] = 218337, + [SMALL_STATE(8974)] = 218351, + [SMALL_STATE(8975)] = 218365, + [SMALL_STATE(8976)] = 218379, + [SMALL_STATE(8977)] = 218393, + [SMALL_STATE(8978)] = 218407, + [SMALL_STATE(8979)] = 218419, + [SMALL_STATE(8980)] = 218431, + [SMALL_STATE(8981)] = 218443, + [SMALL_STATE(8982)] = 218457, + [SMALL_STATE(8983)] = 218471, + [SMALL_STATE(8984)] = 218485, + [SMALL_STATE(8985)] = 218497, + [SMALL_STATE(8986)] = 218511, + [SMALL_STATE(8987)] = 218523, + [SMALL_STATE(8988)] = 218535, + [SMALL_STATE(8989)] = 218549, + [SMALL_STATE(8990)] = 218559, + [SMALL_STATE(8991)] = 218573, + [SMALL_STATE(8992)] = 218587, + [SMALL_STATE(8993)] = 218601, + [SMALL_STATE(8994)] = 218613, + [SMALL_STATE(8995)] = 218627, + [SMALL_STATE(8996)] = 218641, + [SMALL_STATE(8997)] = 218655, + [SMALL_STATE(8998)] = 218669, + [SMALL_STATE(8999)] = 218683, + [SMALL_STATE(9000)] = 218697, + [SMALL_STATE(9001)] = 218711, + [SMALL_STATE(9002)] = 218725, + [SMALL_STATE(9003)] = 218739, + [SMALL_STATE(9004)] = 218753, + [SMALL_STATE(9005)] = 218765, + [SMALL_STATE(9006)] = 218779, + [SMALL_STATE(9007)] = 218793, + [SMALL_STATE(9008)] = 218807, + [SMALL_STATE(9009)] = 218821, + [SMALL_STATE(9010)] = 218835, + [SMALL_STATE(9011)] = 218849, + [SMALL_STATE(9012)] = 218861, + [SMALL_STATE(9013)] = 218875, + [SMALL_STATE(9014)] = 218889, + [SMALL_STATE(9015)] = 218903, + [SMALL_STATE(9016)] = 218917, + [SMALL_STATE(9017)] = 218931, + [SMALL_STATE(9018)] = 218945, + [SMALL_STATE(9019)] = 218959, + [SMALL_STATE(9020)] = 218971, + [SMALL_STATE(9021)] = 218985, + [SMALL_STATE(9022)] = 218999, + [SMALL_STATE(9023)] = 219013, + [SMALL_STATE(9024)] = 219025, + [SMALL_STATE(9025)] = 219039, + [SMALL_STATE(9026)] = 219049, + [SMALL_STATE(9027)] = 219063, + [SMALL_STATE(9028)] = 219077, + [SMALL_STATE(9029)] = 219087, + [SMALL_STATE(9030)] = 219099, + [SMALL_STATE(9031)] = 219113, + [SMALL_STATE(9032)] = 219127, + [SMALL_STATE(9033)] = 219141, + [SMALL_STATE(9034)] = 219155, + [SMALL_STATE(9035)] = 219169, + [SMALL_STATE(9036)] = 219181, + [SMALL_STATE(9037)] = 219195, + [SMALL_STATE(9038)] = 219209, + [SMALL_STATE(9039)] = 219223, + [SMALL_STATE(9040)] = 219237, + [SMALL_STATE(9041)] = 219249, + [SMALL_STATE(9042)] = 219263, + [SMALL_STATE(9043)] = 219277, + [SMALL_STATE(9044)] = 219289, + [SMALL_STATE(9045)] = 219303, + [SMALL_STATE(9046)] = 219315, + [SMALL_STATE(9047)] = 219327, + [SMALL_STATE(9048)] = 219339, + [SMALL_STATE(9049)] = 219353, + [SMALL_STATE(9050)] = 219365, + [SMALL_STATE(9051)] = 219379, + [SMALL_STATE(9052)] = 219391, + [SMALL_STATE(9053)] = 219403, + [SMALL_STATE(9054)] = 219417, + [SMALL_STATE(9055)] = 219431, + [SMALL_STATE(9056)] = 219445, + [SMALL_STATE(9057)] = 219459, + [SMALL_STATE(9058)] = 219473, + [SMALL_STATE(9059)] = 219487, + [SMALL_STATE(9060)] = 219499, + [SMALL_STATE(9061)] = 219513, + [SMALL_STATE(9062)] = 219527, + [SMALL_STATE(9063)] = 219541, [SMALL_STATE(9064)] = 219553, [SMALL_STATE(9065)] = 219567, [SMALL_STATE(9066)] = 219581, @@ -674342,7272 +671027,7281 @@ static const uint32_t ts_small_parse_table_map[] = { [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(9078)] = 219747, + [SMALL_STATE(9079)] = 219759, + [SMALL_STATE(9080)] = 219773, + [SMALL_STATE(9081)] = 219787, + [SMALL_STATE(9082)] = 219801, + [SMALL_STATE(9083)] = 219815, + [SMALL_STATE(9084)] = 219829, + [SMALL_STATE(9085)] = 219843, + [SMALL_STATE(9086)] = 219857, + [SMALL_STATE(9087)] = 219871, + [SMALL_STATE(9088)] = 219883, + [SMALL_STATE(9089)] = 219897, + [SMALL_STATE(9090)] = 219911, + [SMALL_STATE(9091)] = 219925, + [SMALL_STATE(9092)] = 219939, + [SMALL_STATE(9093)] = 219953, [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(9098)] = 220023, + [SMALL_STATE(9099)] = 220037, + [SMALL_STATE(9100)] = 220048, + [SMALL_STATE(9101)] = 220059, + [SMALL_STATE(9102)] = 220070, + [SMALL_STATE(9103)] = 220081, + [SMALL_STATE(9104)] = 220092, + [SMALL_STATE(9105)] = 220103, + [SMALL_STATE(9106)] = 220114, + [SMALL_STATE(9107)] = 220125, + [SMALL_STATE(9108)] = 220136, + [SMALL_STATE(9109)] = 220147, + [SMALL_STATE(9110)] = 220156, + [SMALL_STATE(9111)] = 220167, + [SMALL_STATE(9112)] = 220178, + [SMALL_STATE(9113)] = 220189, + [SMALL_STATE(9114)] = 220200, + [SMALL_STATE(9115)] = 220211, + [SMALL_STATE(9116)] = 220222, + [SMALL_STATE(9117)] = 220233, + [SMALL_STATE(9118)] = 220244, + [SMALL_STATE(9119)] = 220255, + [SMALL_STATE(9120)] = 220266, + [SMALL_STATE(9121)] = 220277, + [SMALL_STATE(9122)] = 220288, + [SMALL_STATE(9123)] = 220299, + [SMALL_STATE(9124)] = 220310, + [SMALL_STATE(9125)] = 220321, + [SMALL_STATE(9126)] = 220330, + [SMALL_STATE(9127)] = 220341, + [SMALL_STATE(9128)] = 220352, + [SMALL_STATE(9129)] = 220363, + [SMALL_STATE(9130)] = 220374, + [SMALL_STATE(9131)] = 220385, + [SMALL_STATE(9132)] = 220396, + [SMALL_STATE(9133)] = 220407, + [SMALL_STATE(9134)] = 220418, + [SMALL_STATE(9135)] = 220429, + [SMALL_STATE(9136)] = 220440, + [SMALL_STATE(9137)] = 220451, + [SMALL_STATE(9138)] = 220462, + [SMALL_STATE(9139)] = 220473, + [SMALL_STATE(9140)] = 220484, + [SMALL_STATE(9141)] = 220495, + [SMALL_STATE(9142)] = 220506, + [SMALL_STATE(9143)] = 220517, + [SMALL_STATE(9144)] = 220528, + [SMALL_STATE(9145)] = 220539, + [SMALL_STATE(9146)] = 220550, + [SMALL_STATE(9147)] = 220561, + [SMALL_STATE(9148)] = 220572, + [SMALL_STATE(9149)] = 220583, + [SMALL_STATE(9150)] = 220594, + [SMALL_STATE(9151)] = 220605, + [SMALL_STATE(9152)] = 220616, + [SMALL_STATE(9153)] = 220627, + [SMALL_STATE(9154)] = 220638, + [SMALL_STATE(9155)] = 220649, + [SMALL_STATE(9156)] = 220660, + [SMALL_STATE(9157)] = 220671, + [SMALL_STATE(9158)] = 220682, + [SMALL_STATE(9159)] = 220693, + [SMALL_STATE(9160)] = 220704, + [SMALL_STATE(9161)] = 220715, + [SMALL_STATE(9162)] = 220726, + [SMALL_STATE(9163)] = 220735, + [SMALL_STATE(9164)] = 220746, + [SMALL_STATE(9165)] = 220757, + [SMALL_STATE(9166)] = 220768, + [SMALL_STATE(9167)] = 220779, + [SMALL_STATE(9168)] = 220788, + [SMALL_STATE(9169)] = 220799, + [SMALL_STATE(9170)] = 220810, + [SMALL_STATE(9171)] = 220821, + [SMALL_STATE(9172)] = 220832, + [SMALL_STATE(9173)] = 220843, + [SMALL_STATE(9174)] = 220854, + [SMALL_STATE(9175)] = 220863, + [SMALL_STATE(9176)] = 220872, + [SMALL_STATE(9177)] = 220883, + [SMALL_STATE(9178)] = 220894, + [SMALL_STATE(9179)] = 220905, + [SMALL_STATE(9180)] = 220916, + [SMALL_STATE(9181)] = 220927, + [SMALL_STATE(9182)] = 220938, + [SMALL_STATE(9183)] = 220949, + [SMALL_STATE(9184)] = 220958, + [SMALL_STATE(9185)] = 220969, + [SMALL_STATE(9186)] = 220980, + [SMALL_STATE(9187)] = 220989, + [SMALL_STATE(9188)] = 221000, + [SMALL_STATE(9189)] = 221009, + [SMALL_STATE(9190)] = 221018, + [SMALL_STATE(9191)] = 221029, + [SMALL_STATE(9192)] = 221040, + [SMALL_STATE(9193)] = 221051, + [SMALL_STATE(9194)] = 221062, + [SMALL_STATE(9195)] = 221073, + [SMALL_STATE(9196)] = 221082, + [SMALL_STATE(9197)] = 221093, + [SMALL_STATE(9198)] = 221104, + [SMALL_STATE(9199)] = 221113, + [SMALL_STATE(9200)] = 221124, + [SMALL_STATE(9201)] = 221135, + [SMALL_STATE(9202)] = 221146, + [SMALL_STATE(9203)] = 221157, + [SMALL_STATE(9204)] = 221168, + [SMALL_STATE(9205)] = 221179, + [SMALL_STATE(9206)] = 221190, + [SMALL_STATE(9207)] = 221199, + [SMALL_STATE(9208)] = 221210, + [SMALL_STATE(9209)] = 221221, + [SMALL_STATE(9210)] = 221230, + [SMALL_STATE(9211)] = 221239, + [SMALL_STATE(9212)] = 221248, + [SMALL_STATE(9213)] = 221259, + [SMALL_STATE(9214)] = 221270, + [SMALL_STATE(9215)] = 221281, + [SMALL_STATE(9216)] = 221290, + [SMALL_STATE(9217)] = 221301, + [SMALL_STATE(9218)] = 221312, + [SMALL_STATE(9219)] = 221323, + [SMALL_STATE(9220)] = 221334, + [SMALL_STATE(9221)] = 221345, + [SMALL_STATE(9222)] = 221356, + [SMALL_STATE(9223)] = 221367, + [SMALL_STATE(9224)] = 221378, + [SMALL_STATE(9225)] = 221387, + [SMALL_STATE(9226)] = 221398, + [SMALL_STATE(9227)] = 221409, + [SMALL_STATE(9228)] = 221420, + [SMALL_STATE(9229)] = 221431, + [SMALL_STATE(9230)] = 221442, + [SMALL_STATE(9231)] = 221453, + [SMALL_STATE(9232)] = 221464, + [SMALL_STATE(9233)] = 221475, + [SMALL_STATE(9234)] = 221486, + [SMALL_STATE(9235)] = 221497, + [SMALL_STATE(9236)] = 221508, + [SMALL_STATE(9237)] = 221519, + [SMALL_STATE(9238)] = 221530, + [SMALL_STATE(9239)] = 221541, + [SMALL_STATE(9240)] = 221552, + [SMALL_STATE(9241)] = 221561, + [SMALL_STATE(9242)] = 221572, + [SMALL_STATE(9243)] = 221583, + [SMALL_STATE(9244)] = 221594, + [SMALL_STATE(9245)] = 221603, + [SMALL_STATE(9246)] = 221614, + [SMALL_STATE(9247)] = 221625, + [SMALL_STATE(9248)] = 221636, + [SMALL_STATE(9249)] = 221645, + [SMALL_STATE(9250)] = 221654, + [SMALL_STATE(9251)] = 221665, + [SMALL_STATE(9252)] = 221674, + [SMALL_STATE(9253)] = 221685, + [SMALL_STATE(9254)] = 221694, + [SMALL_STATE(9255)] = 221703, + [SMALL_STATE(9256)] = 221714, + [SMALL_STATE(9257)] = 221723, + [SMALL_STATE(9258)] = 221734, + [SMALL_STATE(9259)] = 221745, + [SMALL_STATE(9260)] = 221754, + [SMALL_STATE(9261)] = 221763, + [SMALL_STATE(9262)] = 221774, + [SMALL_STATE(9263)] = 221785, + [SMALL_STATE(9264)] = 221794, + [SMALL_STATE(9265)] = 221805, + [SMALL_STATE(9266)] = 221814, + [SMALL_STATE(9267)] = 221825, + [SMALL_STATE(9268)] = 221836, + [SMALL_STATE(9269)] = 221845, + [SMALL_STATE(9270)] = 221854, + [SMALL_STATE(9271)] = 221863, + [SMALL_STATE(9272)] = 221874, + [SMALL_STATE(9273)] = 221883, + [SMALL_STATE(9274)] = 221894, + [SMALL_STATE(9275)] = 221905, + [SMALL_STATE(9276)] = 221916, + [SMALL_STATE(9277)] = 221925, + [SMALL_STATE(9278)] = 221936, + [SMALL_STATE(9279)] = 221947, + [SMALL_STATE(9280)] = 221958, + [SMALL_STATE(9281)] = 221969, + [SMALL_STATE(9282)] = 221980, + [SMALL_STATE(9283)] = 221991, + [SMALL_STATE(9284)] = 222002, + [SMALL_STATE(9285)] = 222011, + [SMALL_STATE(9286)] = 222020, + [SMALL_STATE(9287)] = 222029, + [SMALL_STATE(9288)] = 222038, + [SMALL_STATE(9289)] = 222049, + [SMALL_STATE(9290)] = 222058, + [SMALL_STATE(9291)] = 222069, + [SMALL_STATE(9292)] = 222080, + [SMALL_STATE(9293)] = 222091, + [SMALL_STATE(9294)] = 222102, + [SMALL_STATE(9295)] = 222111, + [SMALL_STATE(9296)] = 222120, + [SMALL_STATE(9297)] = 222131, + [SMALL_STATE(9298)] = 222142, + [SMALL_STATE(9299)] = 222153, + [SMALL_STATE(9300)] = 222164, + [SMALL_STATE(9301)] = 222175, + [SMALL_STATE(9302)] = 222184, + [SMALL_STATE(9303)] = 222193, + [SMALL_STATE(9304)] = 222204, + [SMALL_STATE(9305)] = 222213, + [SMALL_STATE(9306)] = 222224, + [SMALL_STATE(9307)] = 222235, + [SMALL_STATE(9308)] = 222246, + [SMALL_STATE(9309)] = 222255, + [SMALL_STATE(9310)] = 222264, + [SMALL_STATE(9311)] = 222273, + [SMALL_STATE(9312)] = 222284, + [SMALL_STATE(9313)] = 222293, + [SMALL_STATE(9314)] = 222304, + [SMALL_STATE(9315)] = 222313, + [SMALL_STATE(9316)] = 222324, + [SMALL_STATE(9317)] = 222335, + [SMALL_STATE(9318)] = 222346, + [SMALL_STATE(9319)] = 222355, + [SMALL_STATE(9320)] = 222364, + [SMALL_STATE(9321)] = 222375, + [SMALL_STATE(9322)] = 222384, + [SMALL_STATE(9323)] = 222393, + [SMALL_STATE(9324)] = 222404, + [SMALL_STATE(9325)] = 222415, + [SMALL_STATE(9326)] = 222426, + [SMALL_STATE(9327)] = 222437, + [SMALL_STATE(9328)] = 222446, + [SMALL_STATE(9329)] = 222457, + [SMALL_STATE(9330)] = 222468, + [SMALL_STATE(9331)] = 222477, + [SMALL_STATE(9332)] = 222488, + [SMALL_STATE(9333)] = 222499, + [SMALL_STATE(9334)] = 222508, + [SMALL_STATE(9335)] = 222519, + [SMALL_STATE(9336)] = 222528, + [SMALL_STATE(9337)] = 222537, + [SMALL_STATE(9338)] = 222548, + [SMALL_STATE(9339)] = 222559, + [SMALL_STATE(9340)] = 222568, + [SMALL_STATE(9341)] = 222579, + [SMALL_STATE(9342)] = 222588, + [SMALL_STATE(9343)] = 222599, + [SMALL_STATE(9344)] = 222608, + [SMALL_STATE(9345)] = 222619, + [SMALL_STATE(9346)] = 222630, + [SMALL_STATE(9347)] = 222641, + [SMALL_STATE(9348)] = 222650, + [SMALL_STATE(9349)] = 222661, + [SMALL_STATE(9350)] = 222670, + [SMALL_STATE(9351)] = 222681, + [SMALL_STATE(9352)] = 222692, + [SMALL_STATE(9353)] = 222701, [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(9355)] = 222721, + [SMALL_STATE(9356)] = 222732, + [SMALL_STATE(9357)] = 222743, + [SMALL_STATE(9358)] = 222754, + [SMALL_STATE(9359)] = 222763, + [SMALL_STATE(9360)] = 222772, + [SMALL_STATE(9361)] = 222783, + [SMALL_STATE(9362)] = 222794, + [SMALL_STATE(9363)] = 222805, + [SMALL_STATE(9364)] = 222816, + [SMALL_STATE(9365)] = 222827, + [SMALL_STATE(9366)] = 222836, + [SMALL_STATE(9367)] = 222847, + [SMALL_STATE(9368)] = 222858, + [SMALL_STATE(9369)] = 222869, + [SMALL_STATE(9370)] = 222880, + [SMALL_STATE(9371)] = 222889, + [SMALL_STATE(9372)] = 222900, + [SMALL_STATE(9373)] = 222911, + [SMALL_STATE(9374)] = 222920, + [SMALL_STATE(9375)] = 222931, [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(9378)] = 222960, + [SMALL_STATE(9379)] = 222971, + [SMALL_STATE(9380)] = 222982, + [SMALL_STATE(9381)] = 222991, + [SMALL_STATE(9382)] = 223000, + [SMALL_STATE(9383)] = 223009, + [SMALL_STATE(9384)] = 223018, + [SMALL_STATE(9385)] = 223027, + [SMALL_STATE(9386)] = 223036, + [SMALL_STATE(9387)] = 223045, + [SMALL_STATE(9388)] = 223056, + [SMALL_STATE(9389)] = 223067, + [SMALL_STATE(9390)] = 223078, + [SMALL_STATE(9391)] = 223089, + [SMALL_STATE(9392)] = 223100, + [SMALL_STATE(9393)] = 223111, + [SMALL_STATE(9394)] = 223122, + [SMALL_STATE(9395)] = 223133, + [SMALL_STATE(9396)] = 223142, + [SMALL_STATE(9397)] = 223151, + [SMALL_STATE(9398)] = 223162, + [SMALL_STATE(9399)] = 223173, + [SMALL_STATE(9400)] = 223184, + [SMALL_STATE(9401)] = 223195, + [SMALL_STATE(9402)] = 223204, + [SMALL_STATE(9403)] = 223215, + [SMALL_STATE(9404)] = 223224, + [SMALL_STATE(9405)] = 223235, + [SMALL_STATE(9406)] = 223244, + [SMALL_STATE(9407)] = 223255, + [SMALL_STATE(9408)] = 223266, + [SMALL_STATE(9409)] = 223277, + [SMALL_STATE(9410)] = 223288, + [SMALL_STATE(9411)] = 223299, + [SMALL_STATE(9412)] = 223310, + [SMALL_STATE(9413)] = 223321, + [SMALL_STATE(9414)] = 223332, + [SMALL_STATE(9415)] = 223343, + [SMALL_STATE(9416)] = 223354, + [SMALL_STATE(9417)] = 223365, + [SMALL_STATE(9418)] = 223376, + [SMALL_STATE(9419)] = 223385, + [SMALL_STATE(9420)] = 223396, + [SMALL_STATE(9421)] = 223407, + [SMALL_STATE(9422)] = 223418, + [SMALL_STATE(9423)] = 223429, + [SMALL_STATE(9424)] = 223440, + [SMALL_STATE(9425)] = 223451, + [SMALL_STATE(9426)] = 223462, + [SMALL_STATE(9427)] = 223473, + [SMALL_STATE(9428)] = 223482, + [SMALL_STATE(9429)] = 223493, + [SMALL_STATE(9430)] = 223504, + [SMALL_STATE(9431)] = 223515, + [SMALL_STATE(9432)] = 223524, + [SMALL_STATE(9433)] = 223535, + [SMALL_STATE(9434)] = 223546, + [SMALL_STATE(9435)] = 223555, + [SMALL_STATE(9436)] = 223566, + [SMALL_STATE(9437)] = 223577, + [SMALL_STATE(9438)] = 223586, + [SMALL_STATE(9439)] = 223597, + [SMALL_STATE(9440)] = 223606, + [SMALL_STATE(9441)] = 223617, + [SMALL_STATE(9442)] = 223628, + [SMALL_STATE(9443)] = 223639, + [SMALL_STATE(9444)] = 223650, + [SMALL_STATE(9445)] = 223661, [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, + [SMALL_STATE(9452)] = 223738, + [SMALL_STATE(9453)] = 223749, + [SMALL_STATE(9454)] = 223760, + [SMALL_STATE(9455)] = 223771, + [SMALL_STATE(9456)] = 223780, + [SMALL_STATE(9457)] = 223791, + [SMALL_STATE(9458)] = 223802, + [SMALL_STATE(9459)] = 223813, + [SMALL_STATE(9460)] = 223824, + [SMALL_STATE(9461)] = 223833, + [SMALL_STATE(9462)] = 223842, + [SMALL_STATE(9463)] = 223851, + [SMALL_STATE(9464)] = 223860, + [SMALL_STATE(9465)] = 223869, + [SMALL_STATE(9466)] = 223880, + [SMALL_STATE(9467)] = 223891, + [SMALL_STATE(9468)] = 223899, + [SMALL_STATE(9469)] = 223907, + [SMALL_STATE(9470)] = 223915, + [SMALL_STATE(9471)] = 223923, + [SMALL_STATE(9472)] = 223931, + [SMALL_STATE(9473)] = 223939, + [SMALL_STATE(9474)] = 223947, + [SMALL_STATE(9475)] = 223955, + [SMALL_STATE(9476)] = 223963, + [SMALL_STATE(9477)] = 223971, + [SMALL_STATE(9478)] = 223979, + [SMALL_STATE(9479)] = 223987, + [SMALL_STATE(9480)] = 223995, + [SMALL_STATE(9481)] = 224003, + [SMALL_STATE(9482)] = 224011, + [SMALL_STATE(9483)] = 224019, + [SMALL_STATE(9484)] = 224027, + [SMALL_STATE(9485)] = 224035, + [SMALL_STATE(9486)] = 224043, + [SMALL_STATE(9487)] = 224051, + [SMALL_STATE(9488)] = 224059, + [SMALL_STATE(9489)] = 224067, + [SMALL_STATE(9490)] = 224075, + [SMALL_STATE(9491)] = 224083, + [SMALL_STATE(9492)] = 224091, + [SMALL_STATE(9493)] = 224099, + [SMALL_STATE(9494)] = 224107, + [SMALL_STATE(9495)] = 224115, + [SMALL_STATE(9496)] = 224123, + [SMALL_STATE(9497)] = 224131, + [SMALL_STATE(9498)] = 224139, + [SMALL_STATE(9499)] = 224147, + [SMALL_STATE(9500)] = 224155, + [SMALL_STATE(9501)] = 224163, + [SMALL_STATE(9502)] = 224171, + [SMALL_STATE(9503)] = 224179, + [SMALL_STATE(9504)] = 224187, + [SMALL_STATE(9505)] = 224195, + [SMALL_STATE(9506)] = 224203, + [SMALL_STATE(9507)] = 224211, + [SMALL_STATE(9508)] = 224219, + [SMALL_STATE(9509)] = 224227, + [SMALL_STATE(9510)] = 224235, + [SMALL_STATE(9511)] = 224243, + [SMALL_STATE(9512)] = 224251, + [SMALL_STATE(9513)] = 224259, + [SMALL_STATE(9514)] = 224267, + [SMALL_STATE(9515)] = 224275, + [SMALL_STATE(9516)] = 224283, + [SMALL_STATE(9517)] = 224291, + [SMALL_STATE(9518)] = 224299, + [SMALL_STATE(9519)] = 224307, + [SMALL_STATE(9520)] = 224315, + [SMALL_STATE(9521)] = 224323, + [SMALL_STATE(9522)] = 224331, + [SMALL_STATE(9523)] = 224339, + [SMALL_STATE(9524)] = 224347, + [SMALL_STATE(9525)] = 224355, + [SMALL_STATE(9526)] = 224363, + [SMALL_STATE(9527)] = 224371, + [SMALL_STATE(9528)] = 224379, + [SMALL_STATE(9529)] = 224387, + [SMALL_STATE(9530)] = 224395, + [SMALL_STATE(9531)] = 224403, + [SMALL_STATE(9532)] = 224411, + [SMALL_STATE(9533)] = 224419, + [SMALL_STATE(9534)] = 224427, + [SMALL_STATE(9535)] = 224435, + [SMALL_STATE(9536)] = 224443, + [SMALL_STATE(9537)] = 224451, + [SMALL_STATE(9538)] = 224459, + [SMALL_STATE(9539)] = 224467, + [SMALL_STATE(9540)] = 224475, + [SMALL_STATE(9541)] = 224483, + [SMALL_STATE(9542)] = 224491, + [SMALL_STATE(9543)] = 224499, + [SMALL_STATE(9544)] = 224507, + [SMALL_STATE(9545)] = 224515, + [SMALL_STATE(9546)] = 224523, + [SMALL_STATE(9547)] = 224531, + [SMALL_STATE(9548)] = 224539, + [SMALL_STATE(9549)] = 224547, + [SMALL_STATE(9550)] = 224555, + [SMALL_STATE(9551)] = 224563, + [SMALL_STATE(9552)] = 224571, + [SMALL_STATE(9553)] = 224579, + [SMALL_STATE(9554)] = 224587, + [SMALL_STATE(9555)] = 224595, + [SMALL_STATE(9556)] = 224603, + [SMALL_STATE(9557)] = 224611, + [SMALL_STATE(9558)] = 224619, + [SMALL_STATE(9559)] = 224627, + [SMALL_STATE(9560)] = 224635, + [SMALL_STATE(9561)] = 224643, + [SMALL_STATE(9562)] = 224651, + [SMALL_STATE(9563)] = 224659, + [SMALL_STATE(9564)] = 224667, + [SMALL_STATE(9565)] = 224675, + [SMALL_STATE(9566)] = 224683, + [SMALL_STATE(9567)] = 224691, + [SMALL_STATE(9568)] = 224699, + [SMALL_STATE(9569)] = 224707, + [SMALL_STATE(9570)] = 224715, + [SMALL_STATE(9571)] = 224723, + [SMALL_STATE(9572)] = 224731, + [SMALL_STATE(9573)] = 224739, + [SMALL_STATE(9574)] = 224747, + [SMALL_STATE(9575)] = 224755, + [SMALL_STATE(9576)] = 224763, + [SMALL_STATE(9577)] = 224771, + [SMALL_STATE(9578)] = 224779, + [SMALL_STATE(9579)] = 224787, + [SMALL_STATE(9580)] = 224795, + [SMALL_STATE(9581)] = 224803, + [SMALL_STATE(9582)] = 224811, + [SMALL_STATE(9583)] = 224819, + [SMALL_STATE(9584)] = 224827, + [SMALL_STATE(9585)] = 224835, + [SMALL_STATE(9586)] = 224843, + [SMALL_STATE(9587)] = 224851, + [SMALL_STATE(9588)] = 224859, + [SMALL_STATE(9589)] = 224867, + [SMALL_STATE(9590)] = 224875, + [SMALL_STATE(9591)] = 224883, + [SMALL_STATE(9592)] = 224891, + [SMALL_STATE(9593)] = 224899, + [SMALL_STATE(9594)] = 224907, + [SMALL_STATE(9595)] = 224915, + [SMALL_STATE(9596)] = 224923, + [SMALL_STATE(9597)] = 224931, + [SMALL_STATE(9598)] = 224939, + [SMALL_STATE(9599)] = 224947, + [SMALL_STATE(9600)] = 224955, + [SMALL_STATE(9601)] = 224963, + [SMALL_STATE(9602)] = 224971, + [SMALL_STATE(9603)] = 224979, + [SMALL_STATE(9604)] = 224987, + [SMALL_STATE(9605)] = 224995, + [SMALL_STATE(9606)] = 225003, + [SMALL_STATE(9607)] = 225011, + [SMALL_STATE(9608)] = 225019, + [SMALL_STATE(9609)] = 225027, + [SMALL_STATE(9610)] = 225035, + [SMALL_STATE(9611)] = 225043, + [SMALL_STATE(9612)] = 225051, + [SMALL_STATE(9613)] = 225059, + [SMALL_STATE(9614)] = 225067, + [SMALL_STATE(9615)] = 225075, + [SMALL_STATE(9616)] = 225083, + [SMALL_STATE(9617)] = 225091, + [SMALL_STATE(9618)] = 225099, + [SMALL_STATE(9619)] = 225107, + [SMALL_STATE(9620)] = 225115, + [SMALL_STATE(9621)] = 225123, + [SMALL_STATE(9622)] = 225131, + [SMALL_STATE(9623)] = 225139, + [SMALL_STATE(9624)] = 225147, + [SMALL_STATE(9625)] = 225155, + [SMALL_STATE(9626)] = 225163, + [SMALL_STATE(9627)] = 225171, + [SMALL_STATE(9628)] = 225179, + [SMALL_STATE(9629)] = 225187, + [SMALL_STATE(9630)] = 225195, + [SMALL_STATE(9631)] = 225203, + [SMALL_STATE(9632)] = 225211, + [SMALL_STATE(9633)] = 225219, + [SMALL_STATE(9634)] = 225227, + [SMALL_STATE(9635)] = 225235, + [SMALL_STATE(9636)] = 225243, + [SMALL_STATE(9637)] = 225251, + [SMALL_STATE(9638)] = 225259, + [SMALL_STATE(9639)] = 225267, + [SMALL_STATE(9640)] = 225275, + [SMALL_STATE(9641)] = 225283, + [SMALL_STATE(9642)] = 225291, + [SMALL_STATE(9643)] = 225299, + [SMALL_STATE(9644)] = 225307, + [SMALL_STATE(9645)] = 225315, + [SMALL_STATE(9646)] = 225323, + [SMALL_STATE(9647)] = 225331, + [SMALL_STATE(9648)] = 225339, + [SMALL_STATE(9649)] = 225347, + [SMALL_STATE(9650)] = 225355, + [SMALL_STATE(9651)] = 225363, + [SMALL_STATE(9652)] = 225371, + [SMALL_STATE(9653)] = 225379, + [SMALL_STATE(9654)] = 225387, + [SMALL_STATE(9655)] = 225395, + [SMALL_STATE(9656)] = 225403, + [SMALL_STATE(9657)] = 225411, + [SMALL_STATE(9658)] = 225419, + [SMALL_STATE(9659)] = 225427, + [SMALL_STATE(9660)] = 225435, + [SMALL_STATE(9661)] = 225443, + [SMALL_STATE(9662)] = 225451, + [SMALL_STATE(9663)] = 225459, + [SMALL_STATE(9664)] = 225467, + [SMALL_STATE(9665)] = 225475, + [SMALL_STATE(9666)] = 225483, + [SMALL_STATE(9667)] = 225491, + [SMALL_STATE(9668)] = 225499, + [SMALL_STATE(9669)] = 225507, + [SMALL_STATE(9670)] = 225515, + [SMALL_STATE(9671)] = 225523, + [SMALL_STATE(9672)] = 225531, + [SMALL_STATE(9673)] = 225539, + [SMALL_STATE(9674)] = 225547, + [SMALL_STATE(9675)] = 225555, + [SMALL_STATE(9676)] = 225563, + [SMALL_STATE(9677)] = 225571, + [SMALL_STATE(9678)] = 225579, + [SMALL_STATE(9679)] = 225587, + [SMALL_STATE(9680)] = 225595, + [SMALL_STATE(9681)] = 225603, + [SMALL_STATE(9682)] = 225611, + [SMALL_STATE(9683)] = 225619, + [SMALL_STATE(9684)] = 225627, + [SMALL_STATE(9685)] = 225635, + [SMALL_STATE(9686)] = 225643, + [SMALL_STATE(9687)] = 225651, + [SMALL_STATE(9688)] = 225659, + [SMALL_STATE(9689)] = 225667, + [SMALL_STATE(9690)] = 225675, + [SMALL_STATE(9691)] = 225683, + [SMALL_STATE(9692)] = 225691, + [SMALL_STATE(9693)] = 225699, + [SMALL_STATE(9694)] = 225707, + [SMALL_STATE(9695)] = 225715, + [SMALL_STATE(9696)] = 225723, + [SMALL_STATE(9697)] = 225731, + [SMALL_STATE(9698)] = 225739, + [SMALL_STATE(9699)] = 225747, + [SMALL_STATE(9700)] = 225755, + [SMALL_STATE(9701)] = 225763, + [SMALL_STATE(9702)] = 225771, + [SMALL_STATE(9703)] = 225779, + [SMALL_STATE(9704)] = 225787, + [SMALL_STATE(9705)] = 225795, + [SMALL_STATE(9706)] = 225803, + [SMALL_STATE(9707)] = 225811, + [SMALL_STATE(9708)] = 225819, + [SMALL_STATE(9709)] = 225827, + [SMALL_STATE(9710)] = 225835, + [SMALL_STATE(9711)] = 225843, + [SMALL_STATE(9712)] = 225851, + [SMALL_STATE(9713)] = 225859, + [SMALL_STATE(9714)] = 225867, + [SMALL_STATE(9715)] = 225875, + [SMALL_STATE(9716)] = 225883, + [SMALL_STATE(9717)] = 225891, + [SMALL_STATE(9718)] = 225899, + [SMALL_STATE(9719)] = 225907, + [SMALL_STATE(9720)] = 225915, + [SMALL_STATE(9721)] = 225923, + [SMALL_STATE(9722)] = 225931, + [SMALL_STATE(9723)] = 225939, + [SMALL_STATE(9724)] = 225947, + [SMALL_STATE(9725)] = 225955, + [SMALL_STATE(9726)] = 225963, + [SMALL_STATE(9727)] = 225971, + [SMALL_STATE(9728)] = 225979, + [SMALL_STATE(9729)] = 225987, + [SMALL_STATE(9730)] = 225995, + [SMALL_STATE(9731)] = 226003, + [SMALL_STATE(9732)] = 226011, + [SMALL_STATE(9733)] = 226019, + [SMALL_STATE(9734)] = 226027, + [SMALL_STATE(9735)] = 226035, + [SMALL_STATE(9736)] = 226043, + [SMALL_STATE(9737)] = 226051, + [SMALL_STATE(9738)] = 226059, + [SMALL_STATE(9739)] = 226067, + [SMALL_STATE(9740)] = 226075, + [SMALL_STATE(9741)] = 226083, + [SMALL_STATE(9742)] = 226091, + [SMALL_STATE(9743)] = 226099, + [SMALL_STATE(9744)] = 226107, + [SMALL_STATE(9745)] = 226115, + [SMALL_STATE(9746)] = 226123, + [SMALL_STATE(9747)] = 226131, + [SMALL_STATE(9748)] = 226139, + [SMALL_STATE(9749)] = 226147, + [SMALL_STATE(9750)] = 226155, + [SMALL_STATE(9751)] = 226163, + [SMALL_STATE(9752)] = 226171, + [SMALL_STATE(9753)] = 226179, + [SMALL_STATE(9754)] = 226187, + [SMALL_STATE(9755)] = 226195, + [SMALL_STATE(9756)] = 226203, + [SMALL_STATE(9757)] = 226211, + [SMALL_STATE(9758)] = 226219, + [SMALL_STATE(9759)] = 226227, + [SMALL_STATE(9760)] = 226235, + [SMALL_STATE(9761)] = 226243, + [SMALL_STATE(9762)] = 226251, + [SMALL_STATE(9763)] = 226259, + [SMALL_STATE(9764)] = 226267, + [SMALL_STATE(9765)] = 226275, + [SMALL_STATE(9766)] = 226283, + [SMALL_STATE(9767)] = 226291, + [SMALL_STATE(9768)] = 226299, + [SMALL_STATE(9769)] = 226307, + [SMALL_STATE(9770)] = 226315, + [SMALL_STATE(9771)] = 226323, + [SMALL_STATE(9772)] = 226331, + [SMALL_STATE(9773)] = 226339, + [SMALL_STATE(9774)] = 226347, + [SMALL_STATE(9775)] = 226355, + [SMALL_STATE(9776)] = 226363, + [SMALL_STATE(9777)] = 226371, + [SMALL_STATE(9778)] = 226379, + [SMALL_STATE(9779)] = 226387, + [SMALL_STATE(9780)] = 226395, + [SMALL_STATE(9781)] = 226403, + [SMALL_STATE(9782)] = 226411, + [SMALL_STATE(9783)] = 226419, + [SMALL_STATE(9784)] = 226427, + [SMALL_STATE(9785)] = 226435, + [SMALL_STATE(9786)] = 226443, + [SMALL_STATE(9787)] = 226451, + [SMALL_STATE(9788)] = 226459, + [SMALL_STATE(9789)] = 226467, + [SMALL_STATE(9790)] = 226475, + [SMALL_STATE(9791)] = 226483, + [SMALL_STATE(9792)] = 226491, + [SMALL_STATE(9793)] = 226499, + [SMALL_STATE(9794)] = 226507, + [SMALL_STATE(9795)] = 226515, + [SMALL_STATE(9796)] = 226523, + [SMALL_STATE(9797)] = 226531, + [SMALL_STATE(9798)] = 226539, + [SMALL_STATE(9799)] = 226547, + [SMALL_STATE(9800)] = 226555, + [SMALL_STATE(9801)] = 226563, + [SMALL_STATE(9802)] = 226571, + [SMALL_STATE(9803)] = 226579, + [SMALL_STATE(9804)] = 226587, + [SMALL_STATE(9805)] = 226595, + [SMALL_STATE(9806)] = 226603, + [SMALL_STATE(9807)] = 226611, + [SMALL_STATE(9808)] = 226619, + [SMALL_STATE(9809)] = 226627, + [SMALL_STATE(9810)] = 226635, + [SMALL_STATE(9811)] = 226643, + [SMALL_STATE(9812)] = 226651, + [SMALL_STATE(9813)] = 226659, + [SMALL_STATE(9814)] = 226667, + [SMALL_STATE(9815)] = 226675, + [SMALL_STATE(9816)] = 226683, + [SMALL_STATE(9817)] = 226691, + [SMALL_STATE(9818)] = 226699, + [SMALL_STATE(9819)] = 226707, + [SMALL_STATE(9820)] = 226715, + [SMALL_STATE(9821)] = 226723, + [SMALL_STATE(9822)] = 226731, + [SMALL_STATE(9823)] = 226739, + [SMALL_STATE(9824)] = 226747, + [SMALL_STATE(9825)] = 226755, + [SMALL_STATE(9826)] = 226763, + [SMALL_STATE(9827)] = 226771, + [SMALL_STATE(9828)] = 226779, + [SMALL_STATE(9829)] = 226787, + [SMALL_STATE(9830)] = 226795, + [SMALL_STATE(9831)] = 226803, + [SMALL_STATE(9832)] = 226811, + [SMALL_STATE(9833)] = 226819, + [SMALL_STATE(9834)] = 226827, + [SMALL_STATE(9835)] = 226835, + [SMALL_STATE(9836)] = 226843, + [SMALL_STATE(9837)] = 226851, + [SMALL_STATE(9838)] = 226859, + [SMALL_STATE(9839)] = 226867, + [SMALL_STATE(9840)] = 226875, + [SMALL_STATE(9841)] = 226883, + [SMALL_STATE(9842)] = 226891, + [SMALL_STATE(9843)] = 226899, + [SMALL_STATE(9844)] = 226907, + [SMALL_STATE(9845)] = 226915, + [SMALL_STATE(9846)] = 226923, + [SMALL_STATE(9847)] = 226931, + [SMALL_STATE(9848)] = 226939, + [SMALL_STATE(9849)] = 226947, + [SMALL_STATE(9850)] = 226955, + [SMALL_STATE(9851)] = 226963, + [SMALL_STATE(9852)] = 226971, + [SMALL_STATE(9853)] = 226979, + [SMALL_STATE(9854)] = 226987, + [SMALL_STATE(9855)] = 226995, + [SMALL_STATE(9856)] = 227003, + [SMALL_STATE(9857)] = 227011, + [SMALL_STATE(9858)] = 227019, + [SMALL_STATE(9859)] = 227027, + [SMALL_STATE(9860)] = 227035, + [SMALL_STATE(9861)] = 227043, + [SMALL_STATE(9862)] = 227051, + [SMALL_STATE(9863)] = 227059, + [SMALL_STATE(9864)] = 227067, + [SMALL_STATE(9865)] = 227075, + [SMALL_STATE(9866)] = 227083, + [SMALL_STATE(9867)] = 227091, + [SMALL_STATE(9868)] = 227099, + [SMALL_STATE(9869)] = 227107, + [SMALL_STATE(9870)] = 227115, + [SMALL_STATE(9871)] = 227123, + [SMALL_STATE(9872)] = 227131, + [SMALL_STATE(9873)] = 227139, + [SMALL_STATE(9874)] = 227147, + [SMALL_STATE(9875)] = 227155, + [SMALL_STATE(9876)] = 227163, + [SMALL_STATE(9877)] = 227171, + [SMALL_STATE(9878)] = 227179, + [SMALL_STATE(9879)] = 227187, + [SMALL_STATE(9880)] = 227195, + [SMALL_STATE(9881)] = 227203, + [SMALL_STATE(9882)] = 227211, + [SMALL_STATE(9883)] = 227219, + [SMALL_STATE(9884)] = 227227, + [SMALL_STATE(9885)] = 227235, + [SMALL_STATE(9886)] = 227243, + [SMALL_STATE(9887)] = 227251, + [SMALL_STATE(9888)] = 227259, + [SMALL_STATE(9889)] = 227267, + [SMALL_STATE(9890)] = 227275, + [SMALL_STATE(9891)] = 227283, + [SMALL_STATE(9892)] = 227291, + [SMALL_STATE(9893)] = 227299, + [SMALL_STATE(9894)] = 227307, + [SMALL_STATE(9895)] = 227315, + [SMALL_STATE(9896)] = 227323, + [SMALL_STATE(9897)] = 227331, + [SMALL_STATE(9898)] = 227339, + [SMALL_STATE(9899)] = 227347, + [SMALL_STATE(9900)] = 227355, + [SMALL_STATE(9901)] = 227363, + [SMALL_STATE(9902)] = 227371, + [SMALL_STATE(9903)] = 227379, + [SMALL_STATE(9904)] = 227387, + [SMALL_STATE(9905)] = 227395, + [SMALL_STATE(9906)] = 227403, + [SMALL_STATE(9907)] = 227411, + [SMALL_STATE(9908)] = 227419, + [SMALL_STATE(9909)] = 227427, + [SMALL_STATE(9910)] = 227435, + [SMALL_STATE(9911)] = 227443, + [SMALL_STATE(9912)] = 227451, + [SMALL_STATE(9913)] = 227459, + [SMALL_STATE(9914)] = 227467, + [SMALL_STATE(9915)] = 227475, + [SMALL_STATE(9916)] = 227483, + [SMALL_STATE(9917)] = 227491, + [SMALL_STATE(9918)] = 227499, + [SMALL_STATE(9919)] = 227507, + [SMALL_STATE(9920)] = 227515, + [SMALL_STATE(9921)] = 227523, + [SMALL_STATE(9922)] = 227531, + [SMALL_STATE(9923)] = 227539, + [SMALL_STATE(9924)] = 227547, + [SMALL_STATE(9925)] = 227555, + [SMALL_STATE(9926)] = 227563, + [SMALL_STATE(9927)] = 227571, + [SMALL_STATE(9928)] = 227579, + [SMALL_STATE(9929)] = 227587, + [SMALL_STATE(9930)] = 227595, + [SMALL_STATE(9931)] = 227603, + [SMALL_STATE(9932)] = 227611, + [SMALL_STATE(9933)] = 227619, + [SMALL_STATE(9934)] = 227627, + [SMALL_STATE(9935)] = 227635, + [SMALL_STATE(9936)] = 227643, + [SMALL_STATE(9937)] = 227651, + [SMALL_STATE(9938)] = 227659, + [SMALL_STATE(9939)] = 227667, + [SMALL_STATE(9940)] = 227675, + [SMALL_STATE(9941)] = 227683, + [SMALL_STATE(9942)] = 227691, + [SMALL_STATE(9943)] = 227699, + [SMALL_STATE(9944)] = 227707, + [SMALL_STATE(9945)] = 227715, + [SMALL_STATE(9946)] = 227723, + [SMALL_STATE(9947)] = 227731, + [SMALL_STATE(9948)] = 227739, + [SMALL_STATE(9949)] = 227747, + [SMALL_STATE(9950)] = 227755, + [SMALL_STATE(9951)] = 227763, + [SMALL_STATE(9952)] = 227771, + [SMALL_STATE(9953)] = 227779, + [SMALL_STATE(9954)] = 227787, + [SMALL_STATE(9955)] = 227795, + [SMALL_STATE(9956)] = 227803, + [SMALL_STATE(9957)] = 227811, + [SMALL_STATE(9958)] = 227819, + [SMALL_STATE(9959)] = 227827, + [SMALL_STATE(9960)] = 227835, + [SMALL_STATE(9961)] = 227843, + [SMALL_STATE(9962)] = 227851, + [SMALL_STATE(9963)] = 227859, + [SMALL_STATE(9964)] = 227867, + [SMALL_STATE(9965)] = 227875, + [SMALL_STATE(9966)] = 227883, + [SMALL_STATE(9967)] = 227891, + [SMALL_STATE(9968)] = 227899, + [SMALL_STATE(9969)] = 227907, + [SMALL_STATE(9970)] = 227915, + [SMALL_STATE(9971)] = 227923, + [SMALL_STATE(9972)] = 227931, + [SMALL_STATE(9973)] = 227939, + [SMALL_STATE(9974)] = 227947, + [SMALL_STATE(9975)] = 227955, + [SMALL_STATE(9976)] = 227963, + [SMALL_STATE(9977)] = 227971, + [SMALL_STATE(9978)] = 227979, + [SMALL_STATE(9979)] = 227987, + [SMALL_STATE(9980)] = 227995, + [SMALL_STATE(9981)] = 228003, + [SMALL_STATE(9982)] = 228011, + [SMALL_STATE(9983)] = 228019, + [SMALL_STATE(9984)] = 228027, + [SMALL_STATE(9985)] = 228035, + [SMALL_STATE(9986)] = 228043, + [SMALL_STATE(9987)] = 228051, + [SMALL_STATE(9988)] = 228059, + [SMALL_STATE(9989)] = 228067, + [SMALL_STATE(9990)] = 228075, + [SMALL_STATE(9991)] = 228083, + [SMALL_STATE(9992)] = 228091, + [SMALL_STATE(9993)] = 228099, + [SMALL_STATE(9994)] = 228107, + [SMALL_STATE(9995)] = 228115, + [SMALL_STATE(9996)] = 228123, + [SMALL_STATE(9997)] = 228131, + [SMALL_STATE(9998)] = 228139, + [SMALL_STATE(9999)] = 228147, + [SMALL_STATE(10000)] = 228155, + [SMALL_STATE(10001)] = 228163, + [SMALL_STATE(10002)] = 228171, + [SMALL_STATE(10003)] = 228179, + [SMALL_STATE(10004)] = 228187, + [SMALL_STATE(10005)] = 228195, + [SMALL_STATE(10006)] = 228203, + [SMALL_STATE(10007)] = 228211, + [SMALL_STATE(10008)] = 228219, + [SMALL_STATE(10009)] = 228227, + [SMALL_STATE(10010)] = 228235, + [SMALL_STATE(10011)] = 228243, + [SMALL_STATE(10012)] = 228251, + [SMALL_STATE(10013)] = 228259, + [SMALL_STATE(10014)] = 228267, + [SMALL_STATE(10015)] = 228275, + [SMALL_STATE(10016)] = 228283, + [SMALL_STATE(10017)] = 228291, + [SMALL_STATE(10018)] = 228299, + [SMALL_STATE(10019)] = 228307, + [SMALL_STATE(10020)] = 228315, + [SMALL_STATE(10021)] = 228323, + [SMALL_STATE(10022)] = 228331, + [SMALL_STATE(10023)] = 228339, + [SMALL_STATE(10024)] = 228347, + [SMALL_STATE(10025)] = 228355, + [SMALL_STATE(10026)] = 228363, + [SMALL_STATE(10027)] = 228371, + [SMALL_STATE(10028)] = 228379, + [SMALL_STATE(10029)] = 228387, + [SMALL_STATE(10030)] = 228395, + [SMALL_STATE(10031)] = 228403, + [SMALL_STATE(10032)] = 228411, + [SMALL_STATE(10033)] = 228419, + [SMALL_STATE(10034)] = 228427, + [SMALL_STATE(10035)] = 228435, + [SMALL_STATE(10036)] = 228443, + [SMALL_STATE(10037)] = 228451, + [SMALL_STATE(10038)] = 228459, + [SMALL_STATE(10039)] = 228467, + [SMALL_STATE(10040)] = 228475, + [SMALL_STATE(10041)] = 228483, + [SMALL_STATE(10042)] = 228491, + [SMALL_STATE(10043)] = 228499, + [SMALL_STATE(10044)] = 228507, + [SMALL_STATE(10045)] = 228515, + [SMALL_STATE(10046)] = 228523, + [SMALL_STATE(10047)] = 228531, + [SMALL_STATE(10048)] = 228539, + [SMALL_STATE(10049)] = 228547, + [SMALL_STATE(10050)] = 228555, + [SMALL_STATE(10051)] = 228563, + [SMALL_STATE(10052)] = 228571, + [SMALL_STATE(10053)] = 228579, + [SMALL_STATE(10054)] = 228587, + [SMALL_STATE(10055)] = 228595, + [SMALL_STATE(10056)] = 228603, + [SMALL_STATE(10057)] = 228611, + [SMALL_STATE(10058)] = 228619, + [SMALL_STATE(10059)] = 228627, + [SMALL_STATE(10060)] = 228635, + [SMALL_STATE(10061)] = 228643, + [SMALL_STATE(10062)] = 228651, + [SMALL_STATE(10063)] = 228659, + [SMALL_STATE(10064)] = 228667, + [SMALL_STATE(10065)] = 228675, + [SMALL_STATE(10066)] = 228683, + [SMALL_STATE(10067)] = 228691, + [SMALL_STATE(10068)] = 228699, + [SMALL_STATE(10069)] = 228707, + [SMALL_STATE(10070)] = 228715, + [SMALL_STATE(10071)] = 228723, + [SMALL_STATE(10072)] = 228731, + [SMALL_STATE(10073)] = 228739, + [SMALL_STATE(10074)] = 228747, + [SMALL_STATE(10075)] = 228755, + [SMALL_STATE(10076)] = 228763, + [SMALL_STATE(10077)] = 228771, + [SMALL_STATE(10078)] = 228779, + [SMALL_STATE(10079)] = 228787, + [SMALL_STATE(10080)] = 228795, + [SMALL_STATE(10081)] = 228803, + [SMALL_STATE(10082)] = 228811, + [SMALL_STATE(10083)] = 228819, + [SMALL_STATE(10084)] = 228827, + [SMALL_STATE(10085)] = 228835, + [SMALL_STATE(10086)] = 228843, + [SMALL_STATE(10087)] = 228851, + [SMALL_STATE(10088)] = 228859, + [SMALL_STATE(10089)] = 228867, + [SMALL_STATE(10090)] = 228875, + [SMALL_STATE(10091)] = 228883, + [SMALL_STATE(10092)] = 228891, + [SMALL_STATE(10093)] = 228899, + [SMALL_STATE(10094)] = 228907, + [SMALL_STATE(10095)] = 228915, + [SMALL_STATE(10096)] = 228923, + [SMALL_STATE(10097)] = 228931, + [SMALL_STATE(10098)] = 228939, + [SMALL_STATE(10099)] = 228947, + [SMALL_STATE(10100)] = 228955, + [SMALL_STATE(10101)] = 228963, + [SMALL_STATE(10102)] = 228971, + [SMALL_STATE(10103)] = 228979, + [SMALL_STATE(10104)] = 228987, + [SMALL_STATE(10105)] = 228995, + [SMALL_STATE(10106)] = 229003, + [SMALL_STATE(10107)] = 229011, + [SMALL_STATE(10108)] = 229019, + [SMALL_STATE(10109)] = 229027, + [SMALL_STATE(10110)] = 229035, + [SMALL_STATE(10111)] = 229043, + [SMALL_STATE(10112)] = 229051, + [SMALL_STATE(10113)] = 229059, + [SMALL_STATE(10114)] = 229067, + [SMALL_STATE(10115)] = 229075, + [SMALL_STATE(10116)] = 229083, + [SMALL_STATE(10117)] = 229091, + [SMALL_STATE(10118)] = 229099, + [SMALL_STATE(10119)] = 229107, + [SMALL_STATE(10120)] = 229115, + [SMALL_STATE(10121)] = 229123, + [SMALL_STATE(10122)] = 229131, + [SMALL_STATE(10123)] = 229139, + [SMALL_STATE(10124)] = 229147, + [SMALL_STATE(10125)] = 229155, + [SMALL_STATE(10126)] = 229163, + [SMALL_STATE(10127)] = 229171, + [SMALL_STATE(10128)] = 229179, + [SMALL_STATE(10129)] = 229187, + [SMALL_STATE(10130)] = 229195, + [SMALL_STATE(10131)] = 229203, + [SMALL_STATE(10132)] = 229211, + [SMALL_STATE(10133)] = 229219, + [SMALL_STATE(10134)] = 229227, + [SMALL_STATE(10135)] = 229235, + [SMALL_STATE(10136)] = 229243, + [SMALL_STATE(10137)] = 229251, + [SMALL_STATE(10138)] = 229259, + [SMALL_STATE(10139)] = 229267, + [SMALL_STATE(10140)] = 229275, + [SMALL_STATE(10141)] = 229283, + [SMALL_STATE(10142)] = 229291, + [SMALL_STATE(10143)] = 229299, + [SMALL_STATE(10144)] = 229307, + [SMALL_STATE(10145)] = 229315, + [SMALL_STATE(10146)] = 229323, + [SMALL_STATE(10147)] = 229331, + [SMALL_STATE(10148)] = 229339, + [SMALL_STATE(10149)] = 229347, + [SMALL_STATE(10150)] = 229355, + [SMALL_STATE(10151)] = 229363, + [SMALL_STATE(10152)] = 229371, + [SMALL_STATE(10153)] = 229379, + [SMALL_STATE(10154)] = 229387, + [SMALL_STATE(10155)] = 229395, + [SMALL_STATE(10156)] = 229403, + [SMALL_STATE(10157)] = 229411, + [SMALL_STATE(10158)] = 229419, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [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), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10158), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10095), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), [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), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10087), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10085), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), [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), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9615), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), [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), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9618), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9910), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), [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), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), [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), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), [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(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), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9542), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9700), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [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), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9891), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9539), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9611), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10046), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10000), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9606), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9957), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10061), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), [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(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 = 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), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10079), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9822), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9905), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10135), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9918), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10139), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10092), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10133), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9930), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9898), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9812), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9799), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9968), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9888), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10042), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10019), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10074), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9784), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9917), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9754), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9985), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9863), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9798), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9924), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9862), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10065), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9770), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9468), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9713), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9744), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9701), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4618), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6644), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1431), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8042), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8043), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10095), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(81), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1435), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5894), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7706), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6419), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5279), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5288), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5257), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5256), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1442), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1245), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10087), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10086), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(238), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4552), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10085), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9055), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9115), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1472), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(299), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5254), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7960), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1503), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1503), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5781), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5789), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2763), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5791), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5792), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5620), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5794), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5797), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2757), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9052), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9049), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9047), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9045), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9043), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4552), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4924), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4924), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5236), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8508), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4618), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8452), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9911), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10021), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10093), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9771), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10016), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [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), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8905), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9480), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [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 = 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(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(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), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2902), + [2075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(6636), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2027), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(61), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2028), + [2090] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8928), + [2094] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7607), + [2098] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2892), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3557), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3560), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1710), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1727), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3580), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9937), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8873), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9303), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1717), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(248), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3562), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7906), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1727), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8958), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8951), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8949), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8948), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8946), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3580), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3185), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3185), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3576), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8618), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2902), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8430), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4542), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1813), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(65), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1815), + [2191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9036), + [2195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7736), + [2199] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4543), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4867), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4870), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1576), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1510), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4884), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9480), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8856), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9171), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1572), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(313), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4871), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7881), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1510), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9078), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9077), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9063), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9059), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9051), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4884), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4588), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4588), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4881), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8512), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4542), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8425), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3330), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1965), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(62), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1966), + [2290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9001), + [2294] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7653), + [2298] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(3321), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3885), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3883), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1663), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1673), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4010), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10011), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8843), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9453), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1667), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(260), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3862), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7950), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1673), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9040), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8870), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8886), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8933), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8940), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4010), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3668), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3668), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3996), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8463), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3330), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8427), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4618), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1431), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(81), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1435), + [2389] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8905), + [2393] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7626), + [2397] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4619), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5257), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5256), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1924), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1938), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5234), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9539), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9055), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9115), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1642), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(296), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5254), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7960), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1938), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9052), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9049), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9047), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9045), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9043), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5234), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4924), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4924), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5236), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8508), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4618), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8452), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(823), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2112), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(72), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2114), + [2488] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8968), + [2492] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7663), + [2496] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(825), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1090), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1089), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1873), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1881), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1083), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9931), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9090), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9119), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1877), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(264), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1087), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7940), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1881), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8984), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8980), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8979), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8978), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1083), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(921), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(921), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1085), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8590), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(823), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8436), + [2572] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7625), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1999), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1993), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9700), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1995), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(298), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1993), + [2594] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7614), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1784), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1798), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9771), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1786), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(268), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1798), + [2616] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7765), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1600), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1563), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9727), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1599), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(270), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1563), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2769), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2084), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(80), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2085), + [2650] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8966), + [2654] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7620), + [2658] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2803), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3246), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3245), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1967), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1994), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3238), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10000), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9064), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9152), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1992), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(297), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3244), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8010), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1994), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9023), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9019), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8828), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9011), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3238), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2954), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2954), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3221), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8540), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2769), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8411), + [2734] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7791), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1651), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1620), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10085), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1472), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(299), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1620), + [2756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7612), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1456), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1536), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9816), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1455), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(283), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1536), + [2778] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7800), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1526), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1519), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9898), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1525), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(263), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1519), + [2800] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7676), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1732), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1724), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10021), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1728), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(266), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1724), + [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7775), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1754), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1726), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9906), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1752), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(269), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1726), + [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7820), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1776), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1783), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9801), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2160), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(307), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1783), + [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7816), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1577), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1612), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9911), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1597), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(265), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1612), + [2888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7724), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2021), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1633), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9897), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2008), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(357), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1633), + [2910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7656), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1878), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1869), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9918), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1874), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(262), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1869), + [2932] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7741), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1442), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1503), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10082), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1625), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(366), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1503), + [2954] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7648), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1950), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1941), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9970), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1943), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(267), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1941), + [2976] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7828), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2091), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2093), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10025), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(261), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2093), + [2998] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7664), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2159), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2171), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9869), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1778), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(376), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2171), + [3020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7787), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1567), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1565), + [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9683), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1566), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(358), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1565), + [3042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7702), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1775), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1769), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9926), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1773), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(356), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1769), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9926), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [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(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), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), SHIFT(4190), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, 0, 0), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), SHIFT(4190), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, 0, 0), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), SHIFT(4190), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), SHIFT(4190), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9869), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), SHIFT(4190), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), SHIFT(4190), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4542), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6636), + [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9036), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7736), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), + [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4867), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4870), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4884), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9480), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9739), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9171), + [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7881), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6007), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6007), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9078), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9077), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9063), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9059), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9051), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4884), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4588), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4881), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8512), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4542), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8425), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), [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), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), [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(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(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), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(1823), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7619), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7619), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7175), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, 0, 0), + [4024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10155), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), + [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7876), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7605), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10155), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7876), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, 0, 3), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, 0, 3), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, 0, 0), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), + [4285] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6716), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), + [4299] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9782), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3, 0, 0), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2, 0, 0), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2, 0, 0), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3, 0, 0), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3, 0, 0), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7261), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7876), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7138), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4, 0, 0), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, 0, 3), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, 0, 3), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3, 0, 0), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2, 0, 0), + [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4, 0, 0), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4, 0, 0), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, 0, 0), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 3, 0, 0), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 3, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, 0, 9), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, 0, 9), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, 0, 2), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, 0, 2), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, 0, 2), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, 0, 2), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, 0, 3), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, 0, 3), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7915), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1, 0, 0), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 8), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 8), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1, 0, 0), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8, 0, 0), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [5059] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6715), + [5063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9678), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2, 0, 0), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2, 0, 0), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1, 0, 0), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1, 0, 0), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 2), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 2), + [5093] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6720), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 2), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 2), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4, 0, 0), + [5113] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9827), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 2), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 2), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7, 0, 0), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7, 0, 0), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7, 0, 0), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 2), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 2), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 6), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 6), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3, 0, 0), + [5189] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9901), + [5193] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6702), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 6), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 6), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5265] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6706), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [5271] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9828), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(6636), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8928), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7607), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2892), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9001), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7765), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3321), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [5312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8968), + [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7676), + [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(825), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7775), + [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8905), + [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7741), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4619), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7724), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8966), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7620), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2803), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7653), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9036), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7787), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4543), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7791), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7736), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7820), + [5376] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9519), + [5380] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6741), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7663), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7800), + [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7828), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7612), + [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7656), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [5403] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9596), + [5407] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6727), + [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7614), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7816), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7626), + [5440] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9574), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5448] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6733), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7664), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7648), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7702), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7625), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [5616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9567), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [5630] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6714), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), SHIFT(6636), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [5770] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9765), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [5790] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6717), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9298), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [5936] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6697), + [5940] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9715), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [6010] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6722), + [6014] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9490), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9680), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10154), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7893), + [6429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7761), + [6432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7893), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [6437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10154), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [6470] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9860), + [6474] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6687), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [6490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7893), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7754), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [6527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7870), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7910), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7910), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10151), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7155), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(8018), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3047), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [6619] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6708), + [6623] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9747), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [6631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(8025), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3081), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6643] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6736), + [6647] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9724), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(9631), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [6674] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9876), + [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7910), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [6691] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6704), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7229), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [6704] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9686), + [6708] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6719), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [6782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7919), + [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7919), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [6796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7814), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), + [6814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [6825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7929), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [6844] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9471), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [6850] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6694), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [6856] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6695), + [6860] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9826), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [6866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7238), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [6879] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6739), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [6887] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9488), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [6901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9782), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [6954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7919), + [6957] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6735), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7257), + [6976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9871), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), + [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2, 0, 0), + [6992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2, 0, 0), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), + [6996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3, 0, 0), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [7014] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9623), + [7018] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6721), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [7026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7879), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [7097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [7101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7209), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1337), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), + [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), + [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), + [7178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7949), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [7213] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6693), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [7273] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9993), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9876), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9828), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7176), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [7354] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6728), + [7358] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9655), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [7382] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6700), + [7386] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9706), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6390), + [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6629), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(5884), + [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6386), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(9322), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6390), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [7502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7187), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9715), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, 0, 0), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, 0, 0), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [7693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), REDUCE(sym_value_argument, 2, 0, 0), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, 0, 0), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2, 0, 0), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, 0, 0), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6643), + [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8042), + [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8043), + [7721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(10095), + [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9219), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [7729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5894), + [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9220), + [7735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9783), + [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8210), + [7741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6530), + [7744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8819), + [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8817), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5749), + [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5743), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5720), + [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5738), + [7762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5520), + [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5737), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5734), + [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5760), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5, 0, 0), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6, 0, 0), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7, 0, 0), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 0), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1, 0, 0), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9969), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), + [8100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7661), + [8103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7931), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [8118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9969), + [8121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7931), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [8144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7874), + [8147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4572), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [8172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7931), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [8191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7778), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9729), + [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [8220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8024), + [8223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8024), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4661), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [8270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7952), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [8322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8024), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7180), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7191), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7272), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7250), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7878), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3, 0, 0), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3, 0, 0), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [8456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10008), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4, 0, 0), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4, 0, 0), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [8467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6723), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9788), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), + [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6636), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), + [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7146), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [8591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5, 0, 0), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5, 0, 0), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [8633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8006), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [8694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), + [8704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), + [8707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5720), + [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5738), + [8713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5494), + [8716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), + [8719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5734), + [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5760), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1318), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6698), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9532), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9960), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [8910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7208), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3, 0, 0), + [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6679), + [8940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), + [8943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [8946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [8952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5612), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5794), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2, 0, 0), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8014), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9655), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [9011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6668), + [9014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5875), + [9017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), + [9020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5851), + [9023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5877), + [9026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5674), + [9029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5872), + [9032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), + [9035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5882), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7956), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), + [9110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5732), + [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [9156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8021), + [9159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), + [9162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7246), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [9171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7965), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8022), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10049), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6729), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [9509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6653), + [9520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7853), + [9523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2, 0, 0), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [9537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7619), + [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7203), + [9545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [9555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7592), + [9569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [9579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(6629), + [9586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(7219), + [9589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6635), + [9594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7866), + [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [9607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6390), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), + [9612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), + [9615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6390), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1339), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [9663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7883), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 0), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [9821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6652), + [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [9916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [9922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2, 0, 0), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6653), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1347), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [9954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(8022), + [9963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [9969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(8022), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7637), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7616), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [10002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7610), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7632), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7642), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7783), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7624), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [10085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7630), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7623), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [10101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7673), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7646), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [10113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7634), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [10124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7743), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7655), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8012), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7746), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [10202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7808), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [10213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7798), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [10220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7796), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [10225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7759), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7772), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7770), + [10240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7764), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1308), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7763), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [10259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7786), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [10278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8019), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [10305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9695), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10134), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10136), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, 0, 0), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [10784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6658), + [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1, 0, 0), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), + [10831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7168), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [10854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [10857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8151), + [10860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [10862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8428), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [10887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6674), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [10896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9983), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9981), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [10943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7262), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10154), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9984), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10155), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 0), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [11086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7152), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9235), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9969), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9859), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 8), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2, 0, 0), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), + [11245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [11248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, 0, 7), + [11250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, 0, 7), + [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), + [11254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3, 0, 0), + [11261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8018), + [11264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, 0, 4), + [11270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, 0, 4), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1, 0, 0), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [11282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 6), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [11318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1, 0, 0), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [11330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8017), + [11333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [11361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 1), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [11375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6632), + [11378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2, 0, 0), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, 0, 0), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [11456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 8), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [11490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6661), + [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), + [11495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 0), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [11565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [11568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [11578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 0), + [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5, 0, 0), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 6), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5745), + [11596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [11620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8251), + [11630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), + [11632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 3, 0, 0), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4, 0, 0), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5611), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [11667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3, 0, 0), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 0), + [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4, 0, 0), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9002), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [11758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [11764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5887), + [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [11785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [11815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2, 0, 0), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7449), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), + [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3, 0, 5), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [11954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 2), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [11968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1, 0, 0), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [11986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2, 0, 0), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [11992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1, 0, 0), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [12010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4, 0, 5), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [12018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 1), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [12024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2, 0, 0), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [12050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2, 0, 0), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [12060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2, 0, 0), + [12062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 5, 0, 5), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [12134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3, 0, 0), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [12192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2, 0, 0), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [12256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2, 0, 0), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9760), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [12318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, 0, 2), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10049), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [12350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, 0, 8), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [12384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7, 0, 0), + [12386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 0), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [12390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6, 0, 0), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [12400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 6), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [12418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3, 0, 0), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [12424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6, 0, 0), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [12450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 8), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [12502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2, 0, 0), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [12640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4, 0, 0), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), + [12654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 6), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4, 0, 0), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [12956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1, 0, 0), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [13094] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), }; enum ts_external_scanner_symbol_identifiers { @@ -681696,13 +678390,15 @@ bool tree_sitter_kotlin_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_kotlin_external_scanner_serialize(void *, char *); void tree_sitter_kotlin_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_kotlin() { +TS_PUBLIC const TSLanguage *tree_sitter_kotlin(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 186ba67..15a3b23 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -66,9 +66,12 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - (_array__grow((Array *)(self), count, array_elem_size(self)), \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ - (self)->size += (count)) + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) /// Append all elements from one array to the end of another. #define array_push_all(self, other) \ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..17f0e94 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/test/corpus/source-files.txt b/test/corpus/source-files.txt index 6c702c8..b4eb2a0 100644 --- a/test/corpus/source-files.txt +++ b/test/corpus/source-files.txt @@ -55,6 +55,7 @@ Multiple file annotations Imports ================================================================================ +import java.util.* import java.util.Scanner import java.util.StringBuilder @@ -67,6 +68,11 @@ fun main() { (source_file (import_list + (import_header + (identifier + (simple_identifier) + (simple_identifier)) + (wildcard_import)) (import_header (identifier (simple_identifier)